From eab153ee3f236c14e93c87db71f034f38c636fb5 Mon Sep 17 00:00:00 2001 From: MatthewBishop <55411296+MatthewBishop@users.noreply.github.com> Date: Sun, 5 Feb 2023 17:30:29 -0500 Subject: [PATCH] Def cleanup (#585) * Object definition cleanup * Update ShopAssistant.java * stackables * notables * unused files * more junk * almost done * working * moving old methods to deprecated * update * fixed pickpocket typos * Update Pickpocket.java * Remove redundant method. Fix stall stealing * Documentation for deprecated methods * WIP commit partial removal. Has test and dump classes * Final cleanup * Move definitions from data folder to cfg * Temporarily moving definition loaders to GameEngine This is until loading can be done asynchronously. * Correct indentation. --- .../data/cfg/ItemDefinitions.json | 21025 ++ 2006Scape Server/data/cfg/items.json | 263398 --------------- 2006Scape Server/data/data/itemdef.json | 20694 -- 2006Scape Server/data/data/notes.dat | Bin 12001 -> 0 bytes 2006Scape Server/data/data/stackable.dat | Bin 12001 -> 0 bytes .../src/main/java/com/rs2/GameEngine.java | 18 +- .../src/main/java/com/rs2/game/bots/Bot.java | 4 +- .../game/content/combat/CombatAssistant.java | 6 +- .../combat/magic/MagicRequirements.java | 4 +- .../game/content/combat/melee/MeleeData.java | 14 +- .../rs2/game/content/consumables/Potions.java | 13 +- .../rs2/game/content/minigames/Dueling.java | 35 +- .../minigames/castlewars/CastleWars.java | 4 +- .../magetrainingarena/Enchanting.java | 4 +- .../magetrainingarena/MageTrainingArena.java | 4 +- .../content/music/sound/CombatSounds.java | 10 +- .../rs2/game/content/random/PartyRoom.java | 10 +- .../rs2/game/content/skills/SkillHandler.java | 4 +- .../game/content/skills/cooking/Cooking.java | 12 +- .../skills/cooking/CookingTutorialIsland.java | 4 +- .../content/skills/cooking/DairyChurn.java | 4 +- .../rs2/game/content/skills/core/Fishing.java | 16 +- .../rs2/game/content/skills/core/Mining.java | 6 +- .../content/skills/crafting/GemCutting.java | 4 +- .../content/skills/crafting/GlassBlowing.java | 4 +- .../skills/crafting/JewelryMaking.java | 12 +- .../skills/crafting/LeatherMaking.java | 12 +- .../content/skills/crafting/OrbCharging.java | 6 +- .../game/content/skills/crafting/Pottery.java | 16 +- .../content/skills/crafting/Spinning.java | 4 +- .../game/content/skills/farming/Farmers.java | 12 +- .../game/content/skills/farming/Seedling.java | 8 +- .../skills/farming/SpecialPlantOne.java | 4 +- .../skills/farming/ToolLeprechaun.java | 4 +- .../content/skills/farming/WoodTrees.java | 4 +- .../content/skills/firemaking/Firemaking.java | 4 +- .../content/skills/fletching/ArrowMaking.java | 10 +- .../content/skills/fletching/LogCutting.java | 18 +- .../skills/fletching/LogCuttingInterface.java | 28 +- .../content/skills/fletching/Stringing.java | 4 +- .../content/skills/fletching/TipMaking.java | 10 +- .../skills/herblore/GrindingAction.java | 4 +- .../content/skills/herblore/Herblore.java | 6 +- .../content/skills/prayer/Ectofuntus.java | 4 +- .../game/content/skills/prayer/Prayer.java | 4 +- .../skills/smithing/SilverCrafting.java | 4 +- .../content/skills/smithing/Smelting.java | 14 +- .../content/skills/smithing/Smithing.java | 6 +- .../content/skills/smithing/Superheat.java | 4 +- .../content/skills/thieving/Pickpocket.java | 101 +- .../game/content/skills/thieving/Stalls.java | 61 +- .../content/skills/woodcutting/BirdNest.java | 8 +- .../skills/woodcutting/Woodcutting.java | 4 +- .../game/globalworldobjects/ClimbOther.java | 5 +- .../game/globalworldobjects/GateHandler.java | 5 +- .../com/rs2/game/items/DeprecatedItems.java | 46 + .../java/com/rs2/game/items/GameItem.java | 4 +- .../java/com/rs2/game/items/Inventory.java | 16 +- .../main/java/com/rs2/game/items/Item.java | 6 - .../com/rs2/game/items/ItemAssistant.java | 124 +- .../java/com/rs2/game/items/ItemData.java | 52 +- .../com/rs2/game/items/ItemDefinition.java | 351 - .../com/rs2/game/items/ItemDefinitions.java | 112 + .../java/com/rs2/game/items/ItemList.java | 16 - .../main/java/com/rs2/game/items/UseItem.java | 4 +- .../main/java/com/rs2/game/items/Weight.java | 15 +- .../java/com/rs2/game/items/impl/Dye.java | 13 +- .../com/rs2/game/items/impl/HandleEmpty.java | 6 +- .../com/rs2/game/items/impl/PotionMixing.java | 12 +- .../com/rs2/game/items/impl/WeaponPoison.java | 5 +- .../src/main/java/com/rs2/game/npcs/Npc.java | 6 +- .../rs2/game/npcs/drops/NPCDropsHandler.java | 33 +- .../com/rs2/game/objects/ObjectDefaults.java | 5 +- .../java/com/rs2/game/objects/Objects.java | 12 +- .../com/rs2/game/objects/ObjectsActions.java | 4 +- .../com/rs2/game/objects/impl/Levers.java | 5 +- .../rs2/game/objects/impl/OtherObjects.java | 5 +- .../java/com/rs2/game/players/Player.java | 3 +- .../com/rs2/game/players/PlayerAssistant.java | 10 +- .../java/com/rs2/game/players/Trading.java | 21 +- .../com/rs2/game/shops/ShopAssistant.java | 47 +- .../main/java/com/rs2/gui/PanelSettings.java | 3 +- .../main/java/com/rs2/net/PacketSender.java | 4 +- .../rs2/net/packets/impl/AttackPlayer.java | 4 +- .../com/rs2/net/packets/impl/BankAll.java | 12 +- .../com/rs2/net/packets/impl/ClickItem.java | 4 +- .../com/rs2/net/packets/impl/ClickNPC.java | 6 +- .../com/rs2/net/packets/impl/ClickTab.java | 4 +- .../rs2/net/packets/impl/ClickingButtons.java | 4 +- .../com/rs2/net/packets/impl/PickupItem.java | 4 +- .../src/main/java/com/rs2/util/ItemData.java | 137 - .../com/rs2/world/GlobalDropsHandler.java | 4 +- .../main/java/com/rs2/world/ItemHandler.java | 204 +- .../com/rs2/world/clip/ObjectDefinition.java | 226 - .../main/java/com/rs2/world/clip/Region.java | 34 +- .../com/rs2/world/clip/RegionFactory.java | 98 +- .../decoder/ObjectDefinitionDecoder.java | 55 +- .../apollo/cache/def/ObjectDefinition.java | 24 + 98 files changed, 21771 insertions(+), 285672 deletions(-) create mode 100644 2006Scape Server/data/cfg/ItemDefinitions.json delete mode 100644 2006Scape Server/data/cfg/items.json delete mode 100644 2006Scape Server/data/data/itemdef.json delete mode 100644 2006Scape Server/data/data/notes.dat delete mode 100644 2006Scape Server/data/data/stackable.dat create mode 100644 2006Scape Server/src/main/java/com/rs2/game/items/DeprecatedItems.java delete mode 100644 2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinition.java create mode 100644 2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinitions.java delete mode 100644 2006Scape Server/src/main/java/com/rs2/game/items/ItemList.java delete mode 100644 2006Scape Server/src/main/java/com/rs2/util/ItemData.java delete mode 100644 2006Scape Server/src/main/java/com/rs2/world/clip/ObjectDefinition.java diff --git a/2006Scape Server/data/cfg/ItemDefinitions.json b/2006Scape Server/data/cfg/ItemDefinitions.json new file mode 100644 index 00000000..85ca242f --- /dev/null +++ b/2006Scape Server/data/cfg/ItemDefinitions.json @@ -0,0 +1,21025 @@ +[ + { + "id":4, + "weight":4.0 + }, + { + "id":6, + "weight":10.0 + }, + { + "id":7, + "weight":10.0 + }, + { + "id":8, + "weight":9.0 + }, + { + "id":9, + "weight":9.0 + }, + { + "id":10, + "weight":15.0 + }, + { + "id":11, + "weight":15.0 + }, + { + "id":12, + "weight":5.0 + }, + { + "id":13, + "weight":5.0 + }, + { + "id":16, + "weight":2.0 + }, + { + "id":24, + "weight":1.0 + }, + { + "id":29, + "weight":5.0 + }, + { + "id":30, + "weight":25.0 + }, + { + "id":31, + "weight":5.0 + }, + { + "id":35, + "weight":22.0, + "bonuses":{ + "attackStab":20, + "attackSlash":29, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "defenceMagic":1, + "strengthBonus":25 + } + }, + { + "id":50, + "weight":1.0 + }, + { + "id":51, + "weight":1.0 + }, + { + "id":54, + "weight":1.0 + }, + { + "id":55, + "weight":1.0 + }, + { + "id":56, + "weight":1.0 + }, + { + "id":57, + "weight":1.0 + }, + { + "id":62, + "weight":12.0 + }, + { + "id":63, + "weight":12.0 + }, + { + "id":64, + "weight":9.0 + }, + { + "id":65, + "weight":9.0 + }, + { + "id":66, + "weight":132.0 + }, + { + "id":67, + "weight":132.0 + }, + { + "id":68, + "weight":132.0 + }, + { + "id":69, + "weight":132.0 + }, + { + "id":70, + "weight":1.0 + }, + { + "id":71, + "weight":1.0 + }, + { + "id":74, + "weight":2.0 + }, + { + "id":75, + "bonuses":{ + "defenceStab":4, + "defenceSlash":5, + "defenceCrush":3, + "strengthBonus":3 + } + }, + { + "id":76, + "bonuses":{ + "defenceStab":11, + "defenceSlash":10, + "defenceRange":5 + } + }, + { + "id":84, + "weight":5.0 + }, + { + "id":88, + "bonuses":{ + "defenceStab":1, + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":90, + "weight":9.0 + }, + { + "id":99, + "weight":1.0 + }, + { + "id":100, + "weight":1.0 + }, + { + "id":127, + "weight":30.0 + }, + { + "id":128, + "weight":30.0 + }, + { + "id":129, + "weight":30.0 + }, + { + "id":130, + "weight":30.0 + }, + { + "id":131, + "weight":30.0 + }, + { + "id":132, + "weight":30.0 + }, + { + "id":151, + "weight":3.0 + }, + { + "id":152, + "weight":3.0 + }, + { + "id":153, + "weight":3.0 + }, + { + "id":154, + "weight":3.0 + }, + { + "id":155, + "weight":3.0 + }, + { + "id":156, + "weight":3.0 + }, + { + "id":189, + "weight":5.0 + }, + { + "id":190, + "weight":5.0 + }, + { + "id":191, + "weight":5.0 + }, + { + "id":192, + "weight":5.0 + }, + { + "id":193, + "weight":5.0 + }, + { + "id":194, + "weight":5.0 + }, + { + "id":227, + "weight":2.0 + }, + { + "id":228, + "weight":2.0 + }, + { + "id":233, + "weight":5.0 + }, + { + "id":234, + "weight":5.0 + }, + { + "id":237, + "weight":1.0 + }, + { + "id":238, + "weight":1.0 + }, + { + "id":243, + "weight":1.0 + }, + { + "id":244, + "weight":1.0 + }, + { + "id":245, + "weight":1.0 + }, + { + "id":246, + "weight":1.0 + }, + { + "id":278, + "weight":4.0 + }, + { + "id":279, + "weight":22.0 + }, + { + "id":284, + "weight":22.0 + }, + { + "id":285, + "weight":22.0 + }, + { + "id":286, + "weight":3.0 + }, + { + "id":287, + "weight":3.0 + }, + { + "id":288, + "weight":36.0 + }, + { + "id":289, + "weight":36.0 + }, + { + "id":290, + "weight":1.0 + }, + { + "id":301, + "weight":2.0 + }, + { + "id":302, + "weight":2.0 + }, + { + "id":303, + "weight":45.0 + }, + { + "id":304, + "weight":45.0 + }, + { + "id":305, + "weight":81.0 + }, + { + "id":306, + "weight":81.0 + }, + { + "id":307, + "weight":13.0 + }, + { + "id":308, + "weight":13.0 + }, + { + "id":309, + "weight":13.0 + }, + { + "id":310, + "weight":13.0 + }, + { + "id":311, + "weight":13.0 + }, + { + "id":312, + "weight":13.0 + }, + { + "id":315, + "weight":5.0 + }, + { + "id":316, + "weight":5.0 + }, + { + "id":317, + "weight":5.0 + }, + { + "id":318, + "weight":5.0 + }, + { + "id":319, + "weight":1.0 + }, + { + "id":320, + "weight":1.0 + }, + { + "id":321, + "weight":1.0 + }, + { + "id":322, + "weight":1.0 + }, + { + "id":325, + "weight":12.0 + }, + { + "id":326, + "weight":12.0 + }, + { + "id":327, + "weight":12.0 + }, + { + "id":328, + "weight":12.0 + }, + { + "id":329, + "weight":5.0 + }, + { + "id":330, + "weight":5.0 + }, + { + "id":331, + "weight":5.0 + }, + { + "id":332, + "weight":5.0 + }, + { + "id":333, + "weight":4.0 + }, + { + "id":334, + "weight":4.0 + }, + { + "id":335, + "weight":4.0 + }, + { + "id":336, + "weight":4.0 + }, + { + "id":339, + "weight":33.0 + }, + { + "id":340, + "weight":33.0 + }, + { + "id":341, + "weight":4.0 + }, + { + "id":342, + "weight":4.0 + }, + { + "id":345, + "weight":5.0 + }, + { + "id":346, + "weight":5.0 + }, + { + "id":347, + "weight":5.0 + }, + { + "id":348, + "weight":5.0 + }, + { + "id":349, + "weight":5.0 + }, + { + "id":350, + "weight":5.0 + }, + { + "id":351, + "weight":5.0 + }, + { + "id":352, + "weight":5.0 + }, + { + "id":353, + "weight":3.0 + }, + { + "id":354, + "weight":3.0 + }, + { + "id":355, + "weight":3.0 + }, + { + "id":356, + "weight":3.0 + }, + { + "id":359, + "weight":379.0 + }, + { + "id":360, + "weight":379.0 + }, + { + "id":361, + "weight":4.0 + }, + { + "id":362, + "weight":4.0 + }, + { + "id":365, + "weight":3.0 + }, + { + "id":366, + "weight":3.0 + }, + { + "id":371, + "weight":5.0 + }, + { + "id":372, + "weight":5.0 + }, + { + "id":373, + "weight":5.0 + }, + { + "id":374, + "weight":5.0 + }, + { + "id":377, + "weight":4.0 + }, + { + "id":378, + "weight":4.0 + }, + { + "id":379, + "weight":3.0 + }, + { + "id":380, + "weight":3.0 + }, + { + "id":383, + "weight":7.0 + }, + { + "id":384, + "weight":7.0 + }, + { + "id":385, + "weight":6.0 + }, + { + "id":386, + "weight":6.0 + }, + { + "id":389, + "weight":4.0 + }, + { + "id":390, + "weight":4.0 + }, + { + "id":391, + "weight":4.0 + }, + { + "id":392, + "weight":4.0 + }, + { + "id":395, + "weight":4.0 + }, + { + "id":396, + "weight":4.0 + }, + { + "id":397, + "weight":35.0 + }, + { + "id":398, + "weight":35.0 + }, + { + "id":401, + "weight":2.0 + }, + { + "id":402, + "weight":2.0 + }, + { + "id":403, + "weight":2.0 + }, + { + "id":404, + "weight":2.0 + }, + { + "id":405, + "weight":5.0 + }, + { + "id":406, + "weight":5.0 + }, + { + "id":409, + "weight":8.0 + }, + { + "id":410, + "weight":8.0 + }, + { + "id":422, + "weight":1.0 + }, + { + "id":426, + "weight":18.0, + "bonuses":{ + "prayerBonus":3 + } + }, + { + "id":427, + "weight":18.0 + }, + { + "id":428, + "weight":18.0, + "bonuses":{ + "prayerBonus":3 + } + }, + { + "id":429, + "weight":18.0 + }, + { + "id":430, + "weight":1.0 + }, + { + "id":433, + "weight":1.0 + }, + { + "id":434, + "weight":1.0 + }, + { + "id":435, + "weight":1.0 + }, + { + "id":436, + "weight":20.0 + }, + { + "id":437, + "weight":20.0 + }, + { + "id":438, + "weight":225.0 + }, + { + "id":439, + "weight":225.0 + }, + { + "id":440, + "weight":225.0 + }, + { + "id":441, + "weight":225.0 + }, + { + "id":442, + "weight":2.0 + }, + { + "id":443, + "weight":2.0 + }, + { + "id":444, + "weight":22.0 + }, + { + "id":445, + "weight":22.0 + }, + { + "id":447, + "weight":175.0 + }, + { + "id":448, + "weight":175.0 + }, + { + "id":449, + "weight":27.0 + }, + { + "id":450, + "weight":27.0 + }, + { + "id":451, + "weight":225.0 + }, + { + "id":452, + "weight":225.0 + }, + { + "id":453, + "weight":225.0 + }, + { + "id":454, + "weight":225.0 + }, + { + "id":464, + "weight":1.0 + }, + { + "id":465, + "weight":1.0 + }, + { + "id":468, + "weight":2.0 + }, + { + "id":469, + "weight":2.0 + }, + { + "id":470, + "weight":2.0 + }, + { + "id":471, + "weight":2.0 + }, + { + "id":472, + "weight":2.0 + }, + { + "id":473, + "weight":2.0 + }, + { + "id":474, + "weight":2.0 + }, + { + "id":475, + "weight":2.0 + }, + { + "id":476, + "weight":2.0 + }, + { + "id":477, + "weight":2.0 + }, + { + "id":478, + "weight":2.0 + }, + { + "id":479, + "weight":2.0 + }, + { + "id":494, + "weight":25.0 + }, + { + "id":495, + "weight":25.0 + }, + { + "id":496, + "weight":25.0 + }, + { + "id":497, + "weight":25.0 + }, + { + "id":498, + "weight":25.0 + }, + { + "id":499, + "weight":25.0 + }, + { + "id":500, + "weight":25.0 + }, + { + "id":501, + "weight":25.0 + }, + { + "id":502, + "weight":25.0 + }, + { + "id":503, + "weight":25.0 + }, + { + "id":504, + "weight":25.0 + }, + { + "id":505, + "weight":25.0 + }, + { + "id":506, + "weight":25.0 + }, + { + "id":507, + "weight":25.0 + }, + { + "id":525, + "weight":1.0 + }, + { + "id":526, + "weight":5.0 + }, + { + "id":527, + "weight":5.0 + }, + { + "id":528, + "weight":2.0 + }, + { + "id":529, + "weight":2.0 + }, + { + "id":530, + "weight":3.0 + }, + { + "id":531, + "weight":3.0 + }, + { + "id":532, + "weight":8.0 + }, + { + "id":533, + "weight":8.0 + }, + { + "id":534, + "weight":7.0 + }, + { + "id":535, + "weight":7.0 + }, + { + "id":536, + "weight":15.0 + }, + { + "id":537, + "weight":15.0 + }, + { + "id":538, + "bonuses":{ + "prayerBonus":4 + } + }, + { + "id":540, + "bonuses":{ + "prayerBonus":4 + } + }, + { + "id":542, + "bonuses":{ + "prayerBonus":5 + } + }, + { + "id":544, + "bonuses":{ + "prayerBonus":6 + } + }, + { + "id":546, + "weight":2.0, + "bonuses":{ + "prayerBonus":5 + } + }, + { + "id":547, + "weight":4.0 + }, + { + "id":548, + "weight":2.0, + "bonuses":{ + "prayerBonus":4 + } + }, + { + "id":549, + "weight":4.0 + }, + { + "id":550, + "weight":5.0 + }, + { + "id":551, + "weight":5.0 + }, + { + "id":567, + "weight":1.0 + }, + { + "id":568, + "weight":1.0 + }, + { + "id":569, + "weight":4.0 + }, + { + "id":570, + "weight":4.0 + }, + { + "id":571, + "weight":4.0 + }, + { + "id":572, + "weight":4.0 + }, + { + "id":573, + "weight":4.0 + }, + { + "id":574, + "weight":4.0 + }, + { + "id":575, + "weight":4.0 + }, + { + "id":576, + "weight":4.0 + }, + { + "id":577, + "weight":1.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":578, + "weight":1.0 + }, + { + "id":579, + "bonuses":{ + "attackMagic":2, + "defenceMagic":2 + } + }, + { + "id":581, + "weight":1.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":582, + "weight":1.0 + }, + { + "id":583, + "weight":1.0 + }, + { + "id":584, + "weight":1.0 + }, + { + "id":585, + "weight":1.0 + }, + { + "id":586, + "weight":1.0 + }, + { + "id":589, + "bonuses":{ + "defenceStab":13, + "defenceSlash":13, + "defenceCrush":13 + } + }, + { + "id":590, + "weight":5.0 + }, + { + "id":591, + "weight":5.0 + }, + { + "id":592, + "weight":56.0 + }, + { + "id":593, + "weight":56.0 + }, + { + "id":594, + "weight":5.0 + }, + { + "id":596, + "weight":5.0 + }, + { + "id":597, + "weight":5.0 + }, + { + "id":599, + "weight":4.0 + }, + { + "id":610, + "weight":1.0 + }, + { + "id":611, + "weight":9.0 + }, + { + "id":612, + "weight":9.0 + }, + { + "id":613, + "weight":9.0 + }, + { + "id":614, + "weight":9.0 + }, + { + "id":615, + "weight":9.0 + }, + { + "id":622, + "weight":5.0 + }, + { + "id":626, + "weight":3.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":627, + "weight":3.0 + }, + { + "id":628, + "weight":3.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":629, + "weight":3.0 + }, + { + "id":630, + "weight":1.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":631, + "weight":1.0 + }, + { + "id":632, + "weight":3.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":633, + "weight":3.0 + }, + { + "id":634, + "weight":3.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":635, + "weight":3.0 + }, + { + "id":636, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":637, + "weight":1.0 + }, + { + "id":638, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":639, + "weight":1.0 + }, + { + "id":640, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":641, + "weight":1.0 + }, + { + "id":642, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":643, + "weight":1.0 + }, + { + "id":644, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":645, + "weight":1.0 + }, + { + "id":646, + "weight":9.0 + }, + { + "id":647, + "weight":9.0 + }, + { + "id":648, + "weight":9.0 + }, + { + "id":649, + "weight":9.0 + }, + { + "id":650, + "weight":9.0 + }, + { + "id":651, + "weight":9.0 + }, + { + "id":652, + "weight":9.0 + }, + { + "id":653, + "weight":9.0 + }, + { + "id":654, + "weight":9.0 + }, + { + "id":655, + "weight":9.0 + }, + { + "id":656, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":657, + "weight":4.0 + }, + { + "id":658, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":659, + "weight":4.0 + }, + { + "id":660, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":661, + "weight":4.0 + }, + { + "id":662, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":663, + "weight":4.0 + }, + { + "id":664, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":665, + "weight":4.0 + }, + { + "id":666, + "weight":13.0 + }, + { + "id":667, + "weight":1.0, + "bonuses":{ + "attackStab":9, + "attackSlash":14, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":10 + } + }, + { + "id":668, + "weight":22.0 + }, + { + "id":674, + "weight":1.0 + }, + { + "id":681, + "weight":2.0 + }, + { + "id":682, + "weight":1.0 + }, + { + "id":684, + "weight":1.0 + }, + { + "id":686, + "weight":2.0 + }, + { + "id":689, + "weight":18.0 + }, + { + "id":690, + "weight":4.0 + }, + { + "id":697, + "weight":775.0 + }, + { + "id":698, + "weight":8.0 + }, + { + "id":703, + "weight":1.0 + }, + { + "id":707, + "weight":2.0 + }, + { + "id":711, + "weight":5.0 + }, + { + "id":712, + "weight":1.0 + }, + { + "id":713, + "weight":4.0 + }, + { + "id":722, + "weight":8.0 + }, + { + "id":723, + "weight":1.0 + }, + { + "id":724, + "weight":1.0 + }, + { + "id":725, + "weight":1.0 + }, + { + "id":726, + "weight":1.0 + }, + { + "id":727, + "weight":12.0 + }, + { + "id":728, + "weight":12.0 + }, + { + "id":730, + "weight":5.0 + }, + { + "id":734, + "weight":5.0 + }, + { + "id":740, + "weight":4.0 + }, + { + "id":746, + "bonuses":{ + "attackStab":5, + "attackSlash":3, + "attackCrush":-4, + "attackMagic":1 + } + }, + { + "id":747, + "bonuses":{ + "attackStab":5, + "attackSlash":3, + "attackCrush":-4, + "attackMagic":1 + } + }, + { + "id":749, + "weight":3.0 + }, + { + "id":751, + "weight":5.0 + }, + { + "id":752, + "weight":5.0 + }, + { + "id":762, + "weight":4.0 + }, + { + "id":763, + "weight":27.0 + }, + { + "id":764, + "weight":4.0 + }, + { + "id":765, + "weight":27.0 + }, + { + "id":766, + "weight":4.0 + }, + { + "id":767, + "weight":3.0, + "bonuses":{ + "attackRange":6 + } + }, + { + "id":768, + "weight":3.0 + }, + { + "id":770, + "weight":4.0 + }, + { + "id":771, + "weight":2.0 + }, + { + "id":772, + "weight":18.0, + "bonuses":{ + "attackStab":-1, + "attackSlash":-1, + "attackCrush":10, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10 + } + }, + { + "id":775, + "weight":2.0, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "defenceStab":8, + "defenceSlash":9, + "strengthBonus":2 + } + }, + { + "id":776, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "defenceStab":8, + "defenceSlash":9, + "strengthBonus":2 + } + }, + { + "id":777, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "defenceStab":8, + "defenceSlash":9, + "strengthBonus":2 + } + }, + { + "id":778, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "defenceStab":8, + "defenceSlash":9, + "strengthBonus":2 + } + }, + { + "id":793, + "weight":3.0 + }, + { + "id":795, + "weight":1.0 + }, + { + "id":800, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":801, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":802, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":803, + "bonuses":{ + "attackRange":12 + } + }, + { + "id":804, + "bonuses":{ + "attackRange":17 + } + }, + { + "id":805, + "bonuses":{ + "attackRange":26 + } + }, + { + "id":806, + "bonuses":{ + "attackRange":3 + } + }, + { + "id":807, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":808, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":809, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":810, + "bonuses":{ + "attackRange":11 + } + }, + { + "id":811, + "bonuses":{ + "attackRange":15 + } + }, + { + "id":812, + "bonuses":{ + "attackRange":3 + } + }, + { + "id":813, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":814, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":815, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":816, + "bonuses":{ + "attackRange":15 + } + }, + { + "id":817, + "bonuses":{ + "attackRange":18 + } + }, + { + "id":818, + "bonuses":{ + "attackRange":7 + } + }, + { + "id":825, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":826, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":827, + "bonuses":{ + "attackRange":12 + } + }, + { + "id":828, + "bonuses":{ + "attackRange":17 + } + }, + { + "id":829, + "bonuses":{ + "attackRange":24 + } + }, + { + "id":830, + "bonuses":{ + "attackRange":38 + } + }, + { + "id":831, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":832, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":833, + "bonuses":{ + "attackRange":12 + } + }, + { + "id":834, + "bonuses":{ + "attackRange":17 + } + }, + { + "id":835, + "bonuses":{ + "attackRange":24 + } + }, + { + "id":836, + "bonuses":{ + "attackRange":38 + } + }, + { + "id":837, + "weight":8.0, + "bonuses":{ + "attackRange":6 + } + }, + { + "id":838, + "weight":8.0 + }, + { + "id":839, + "weight":18.0, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":840, + "weight":18.0 + }, + { + "id":841, + "weight":133.0, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":842, + "weight":133.0 + }, + { + "id":843, + "weight":18.0, + "bonuses":{ + "attackRange":14 + } + }, + { + "id":844, + "weight":18.0 + }, + { + "id":845, + "weight":2.0, + "bonuses":{ + "attackRange":14 + } + }, + { + "id":846, + "weight":2.0 + }, + { + "id":847, + "weight":15.0, + "bonuses":{ + "attackRange":20 + } + }, + { + "id":848, + "weight":15.0 + }, + { + "id":849, + "weight":1.0, + "bonuses":{ + "attackRange":20 + } + }, + { + "id":850, + "weight":1.0 + }, + { + "id":851, + "weight":18.0, + "bonuses":{ + "attackRange":29 + } + }, + { + "id":852, + "weight":18.0 + }, + { + "id":853, + "weight":1.0, + "bonuses":{ + "attackRange":29 + } + }, + { + "id":854, + "weight":1.0 + }, + { + "id":855, + "weight":18.0, + "bonuses":{ + "attackRange":47 + } + }, + { + "id":856, + "weight":18.0, + "bonuses":{ + "attackRange":47 + } + }, + { + "id":857, + "weight":1.0, + "bonuses":{ + "attackRange":47 + } + }, + { + "id":858, + "weight":1.0 + }, + { + "id":859, + "weight":18.0, + "bonuses":{ + "attackRange":69 + } + }, + { + "id":860, + "weight":18.0 + }, + { + "id":861, + "weight":13.0, + "bonuses":{ + "attackRange":69 + } + }, + { + "id":862, + "weight":13.0 + }, + { + "id":863, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":864, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":865, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":866, + "bonuses":{ + "attackRange":11 + } + }, + { + "id":867, + "bonuses":{ + "attackRange":15 + } + }, + { + "id":868, + "bonuses":{ + "attackRange":25 + } + }, + { + "id":869, + "bonuses":{ + "attackRange":10 + } + }, + { + "id":870, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":871, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":872, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":873, + "bonuses":{ + "attackRange":11 + } + }, + { + "id":874, + "bonuses":{ + "attackRange":15 + } + }, + { + "id":875, + "bonuses":{ + "attackRange":25 + } + }, + { + "id":882, + "bonuses":{ + "attackRange":7 + } + }, + { + "id":883, + "bonuses":{ + "attackMagic":7 + } + }, + { + "id":884, + "bonuses":{ + "attackRange":10 + } + }, + { + "id":885, + "bonuses":{ + "attackRange":10 + } + }, + { + "id":886, + "bonuses":{ + "attackRange":16 + } + }, + { + "id":887, + "bonuses":{ + "attackRange":16 + } + }, + { + "id":888, + "bonuses":{ + "attackRange":22 + } + }, + { + "id":889, + "bonuses":{ + "attackRange":22 + } + }, + { + "id":890, + "bonuses":{ + "attackRange":31 + } + }, + { + "id":891, + "bonuses":{ + "attackMagic":31 + } + }, + { + "id":892, + "bonuses":{ + "attackRange":49 + } + }, + { + "id":893, + "bonuses":{ + "attackRange":49 + } + }, + { + "id":946, + "weight":4.0 + }, + { + "id":947, + "weight":4.0 + }, + { + "id":948, + "weight":3.0 + }, + { + "id":949, + "weight":3.0 + }, + { + "id":950, + "weight":1.0 + }, + { + "id":951, + "weight":1.0 + }, + { + "id":952, + "weight":18.0 + }, + { + "id":953, + "weight":18.0 + }, + { + "id":954, + "weight":13.0 + }, + { + "id":955, + "weight":13.0 + }, + { + "id":957, + "weight":5.0 + }, + { + "id":958, + "weight":3.0 + }, + { + "id":959, + "weight":3.0 + }, + { + "id":960, + "weight":8.0 + }, + { + "id":961, + "weight":8.0 + }, + { + "id":966, + "weight":6.0 + }, + { + "id":967, + "weight":5.0 + }, + { + "id":969, + "weight":5.0 + }, + { + "id":975, + "weight":13.0, + "bonuses":{ + "attackSlash":6, + "attackCrush":-2, + "strengthBonus":5 + } + }, + { + "id":976, + "weight":13.0 + }, + { + "id":981, + "weight":2.0 + }, + { + "id":982, + "weight":2.0 + }, + { + "id":1005, + "weight":45.0 + }, + { + "id":1006, + "weight":45.0 + }, + { + "id":1007, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1008, + "weight":4.0 + }, + { + "id":1011, + "weight":9.0 + }, + { + "id":1012, + "weight":9.0 + }, + { + "id":1013, + "weight":9.0 + }, + { + "id":1014, + "weight":9.0 + }, + { + "id":1015, + "weight":9.0 + }, + { + "id":1016, + "weight":9.0 + }, + { + "id":1017, + "bonuses":{ + "attackMagic":2, + "defenceMagic":2 + } + }, + { + "id":1019, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1020, + "weight":4.0 + }, + { + "id":1021, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1022, + "weight":4.0 + }, + { + "id":1023, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1024, + "weight":4.0 + }, + { + "id":1027, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1028, + "weight":4.0 + }, + { + "id":1029, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1030, + "weight":4.0 + }, + { + "id":1031, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":1 + } + }, + { + "id":1032, + "weight":4.0 + }, + { + "id":1033, + "bonuses":{ + "attackMagic":2, + "defenceCrush":3 + } + }, + { + "id":1035, + "bonuses":{ + "attackMagic":2, + "defenceCrush":3 + } + }, + { + "id":1037, + "weight":2.0 + }, + { + "id":1050, + "weight":1.0 + }, + { + "id":1051, + "weight":1.0 + }, + { + "id":1052, + "weight":18.0, + "bonuses":{ + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "defenceMagic":7, + "defenceRange":7 + } + }, + { + "id":1053, + "weight":34.0 + }, + { + "id":1054, + "weight":34.0 + }, + { + "id":1055, + "weight":34.0 + }, + { + "id":1056, + "weight":34.0 + }, + { + "id":1057, + "weight":34.0 + }, + { + "id":1058, + "weight":34.0 + }, + { + "id":1059, + "weight":2.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":1060, + "weight":2.0 + }, + { + "id":1061, + "weight":3.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":1062, + "weight":3.0 + }, + { + "id":1063, + "weight":2.0, + "bonuses":{ + "attackRange":4, + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":1 + } + }, + { + "id":1064, + "weight":2.0 + }, + { + "id":1065, + "weight":2.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":8, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":4, + "defenceMagic":2 + } + }, + { + "id":1066, + "weight":2.0 + }, + { + "id":1067, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":11, + "defenceSlash":10, + "defenceCrush":10, + "defenceMagic":-4, + "defenceRange":10 + } + }, + { + "id":1068, + "weight":9.0 + }, + { + "id":1069, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":17, + "defenceSlash":16, + "defenceCrush":15, + "defenceMagic":-4, + "defenceRange":16 + } + }, + { + "id":1070, + "weight":9.0 + }, + { + "id":1071, + "weight":77.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":24, + "defenceSlash":22, + "defenceCrush":20, + "defenceMagic":-4, + "defenceRange":22 + } + }, + { + "id":1072, + "weight":77.0 + }, + { + "id":1073, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":1074, + "weight":10.0 + }, + { + "id":1075, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":8, + "defenceSlash":7, + "defenceCrush":6, + "defenceMagic":-4, + "defenceRange":7 + } + }, + { + "id":1076, + "weight":9.0 + }, + { + "id":1077, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20 + } + }, + { + "id":1078, + "weight":9.0 + }, + { + "id":1079, + "weight":90.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":1080, + "weight":90.0 + }, + { + "id":1081, + "weight":81.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":11, + "defenceSlash":10, + "defenceCrush":10, + "defenceMagic":-4, + "defenceRange":10 + } + }, + { + "id":1082, + "weight":81.0 + }, + { + "id":1083, + "weight":8.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":17, + "defenceSlash":16, + "defenceCrush":15, + "defenceMagic":-4, + "defenceRange":16 + } + }, + { + "id":1084, + "weight":8.0 + }, + { + "id":1085, + "weight":72.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":24, + "defenceSlash":22, + "defenceCrush":20, + "defenceMagic":-4, + "defenceRange":22 + } + }, + { + "id":1086, + "weight":72.0 + }, + { + "id":1087, + "weight":8.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":8, + "defenceSlash":7, + "defenceCrush":6, + "defenceMagic":-4, + "defenceRange":7 + } + }, + { + "id":1088, + "weight":8.0 + }, + { + "id":1089, + "weight":8.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20 + } + }, + { + "id":1090, + "weight":8.0 + }, + { + "id":1091, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":1092, + "weight":9.0 + }, + { + "id":1093, + "weight":8.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":1094, + "weight":8.0 + }, + { + "id":1095, + "weight":3.0, + "bonuses":{ + "attackRange":4, + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":1 + } + }, + { + "id":1096, + "weight":3.0 + }, + { + "id":1097, + "weight":45.0, + "bonuses":{ + "attackMagic":-5, + "attackRange":6, + "defenceStab":15, + "defenceSlash":14, + "defenceCrush":17, + "defenceMagic":6, + "defenceRange":16 + } + }, + { + "id":1098, + "weight":45.0 + }, + { + "id":1099, + "weight":54.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":11, + "defenceStab":25, + "defenceSlash":19, + "defenceCrush":27, + "defenceMagic":14, + "defenceRange":25 + } + }, + { + "id":1100, + "weight":54.0 + }, + { + "id":1101, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":10, + "defenceSlash":15, + "defenceCrush":19, + "defenceMagic":-3, + "defenceRange":12 + } + }, + { + "id":1102, + "weight":68.0 + }, + { + "id":1103, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":7, + "defenceSlash":11, + "defenceCrush":13, + "defenceMagic":-9, + "defenceRange":9 + } + }, + { + "id":1104, + "weight":6.0 + }, + { + "id":1105, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":17, + "defenceSlash":25, + "defenceCrush":30, + "defenceMagic":-3, + "defenceRange":12 + } + }, + { + "id":1106, + "weight":6.0 + }, + { + "id":1107, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":22, + "defenceSlash":32, + "defenceCrush":39, + "defenceMagic":-3, + "defenceRange":24 + } + }, + { + "id":1108, + "weight":6.0 + }, + { + "id":1109, + "weight":58.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":25, + "defenceSlash":35, + "defenceCrush":42, + "defenceMagic":-3, + "defenceRange":19 + } + }, + { + "id":1110, + "weight":58.0 + }, + { + "id":1111, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":36, + "defenceSlash":50, + "defenceCrush":61, + "defenceMagic":-3, + "defenceRange":38 + } + }, + { + "id":1112, + "weight":6.0 + }, + { + "id":1113, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":63, + "defenceSlash":72, + "defenceCrush":78, + "defenceMagic":-3, + "defenceRange":65 + } + }, + { + "id":1114, + "weight":68.0 + }, + { + "id":1115, + "weight":995.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":12, + "defenceMagic":-6, + "defenceRange":20 + } + }, + { + "id":1116, + "weight":995.0 + }, + { + "id":1117, + "weight":95.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":15, + "defenceSlash":14, + "defenceCrush":9, + "defenceMagic":-6, + "defenceRange":14 + } + }, + { + "id":1118, + "weight":95.0 + }, + { + "id":1119, + "weight":99.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":32, + "defenceSlash":31, + "defenceCrush":24, + "defenceMagic":-6, + "defenceRange":31 + } + }, + { + "id":1120, + "weight":99.0 + }, + { + "id":1121, + "weight":86.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":46, + "defenceSlash":44, + "defenceCrush":38, + "defenceMagic":-6, + "defenceRange":44 + } + }, + { + "id":1122, + "weight":86.0 + }, + { + "id":1123, + "weight":11.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":65, + "defenceSlash":63, + "defenceCrush":55, + "defenceMagic":-6, + "defenceRange":63 + } + }, + { + "id":1124, + "weight":11.0 + }, + { + "id":1125, + "weight":99.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":41, + "defenceSlash":40, + "defenceCrush":30, + "defenceMagic":-6, + "defenceRange":40 + } + }, + { + "id":1126, + "weight":99.0 + }, + { + "id":1127, + "weight":99.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":1128, + "weight":99.0 + }, + { + "id":1129, + "weight":27.0, + "bonuses":{ + "attackMagic":-2, + "attackRange":2, + "defenceStab":8, + "defenceSlash":9, + "defenceCrush":10, + "defenceMagic":4, + "defenceRange":9 + } + }, + { + "id":1130, + "weight":27.0 + }, + { + "id":1131, + "weight":36.0, + "bonuses":{ + "attackMagic":-4, + "attackRange":8, + "defenceStab":12, + "defenceSlash":15, + "defenceCrush":18, + "defenceMagic":6, + "defenceRange":15 + } + }, + { + "id":1132, + "weight":36.0 + }, + { + "id":1133, + "weight":5.0, + "bonuses":{ + "attackMagic":-4, + "attackRange":8, + "defenceStab":18, + "defenceSlash":25, + "defenceCrush":22, + "defenceMagic":8, + "defenceRange":25 + } + }, + { + "id":1134, + "weight":5.0 + }, + { + "id":1135, + "weight":68.0, + "bonuses":{ + "attackMagic":-18, + "attackRange":15, + "defenceStab":40, + "defenceSlash":32, + "defenceCrush":45, + "defenceMagic":20, + "defenceRange":40 + } + }, + { + "id":1136, + "weight":68.0 + }, + { + "id":1137, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-3, + "defenceStab":4, + "defenceSlash":5, + "defenceCrush":3, + "defenceMagic":-1, + "defenceRange":4 + } + }, + { + "id":1138, + "weight":18.0 + }, + { + "id":1139, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":3, + "defenceSlash":4, + "defenceCrush":2, + "defenceMagic":-1, + "defenceRange":3 + } + }, + { + "id":1140, + "weight":18.0 + }, + { + "id":1141, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":7, + "defenceSlash":8, + "defenceCrush":6, + "defenceMagic":-1, + "defenceRange":7 + } + }, + { + "id":1142, + "weight":18.0 + }, + { + "id":1143, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":9, + "defenceSlash":10, + "defenceCrush":8, + "defenceMagic":-1, + "defenceRange":9 + } + }, + { + "id":1144, + "weight":13.0 + }, + { + "id":1145, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":14, + "defenceSlash":15, + "defenceCrush":13, + "defenceMagic":-1, + "defenceRange":14 + } + }, + { + "id":1146, + "weight":18.0 + }, + { + "id":1147, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":22, + "defenceSlash":23, + "defenceCrush":21, + "defenceMagic":-1, + "defenceRange":22 + } + }, + { + "id":1148, + "weight":18.0 + }, + { + "id":1149, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":33, + "defenceSlash":35, + "defenceCrush":32, + "defenceMagic":-1, + "defenceRange":38 + } + }, + { + "id":1150, + "weight":13.0 + }, + { + "id":1151, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":9, + "defenceSlash":10, + "defenceCrush":8, + "defenceMagic":-1, + "defenceRange":9 + } + }, + { + "id":1152, + "weight":18.0 + }, + { + "id":1153, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":6, + "defenceSlash":7, + "defenceCrush":5, + "defenceMagic":-1, + "defenceRange":6 + } + }, + { + "id":1154, + "weight":27.0 + }, + { + "id":1155, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":4, + "defenceSlash":5, + "defenceCrush":3, + "defenceMagic":-1, + "defenceRange":4 + } + }, + { + "id":1156, + "weight":27.0 + }, + { + "id":1157, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":9, + "defenceSlash":10, + "defenceCrush":7, + "defenceMagic":-1, + "defenceRange":9 + } + }, + { + "id":1158, + "weight":27.0 + }, + { + "id":1159, + "weight":22.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":13, + "defenceSlash":14, + "defenceCrush":11, + "defenceMagic":-1, + "defenceRange":13 + } + }, + { + "id":1160, + "weight":22.0 + }, + { + "id":1161, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":19, + "defenceSlash":21, + "defenceCrush":16, + "defenceMagic":-1, + "defenceRange":19 + } + }, + { + "id":1162, + "weight":27.0 + }, + { + "id":1163, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":1164, + "weight":27.0 + }, + { + "id":1165, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":12, + "defenceSlash":13, + "defenceCrush":10, + "defenceMagic":-1, + "defenceRange":12 + } + }, + { + "id":1166, + "weight":27.0 + }, + { + "id":1167, + "weight":9.0, + "bonuses":{ + "attackRange":1, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":4, + "defenceMagic":2, + "defenceRange":3 + } + }, + { + "id":1168, + "weight":9.0 + }, + { + "id":1169, + "weight":9.0, + "bonuses":{ + "attackMagic":-1, + "attackRange":2, + "defenceStab":4, + "defenceSlash":6, + "defenceCrush":8, + "defenceMagic":4, + "defenceRange":4 + } + }, + { + "id":1170, + "weight":9.0 + }, + { + "id":1171, + "weight":2.0, + "bonuses":{ + "defenceStab":4, + "defenceSlash":5, + "defenceCrush":3, + "defenceMagic":1, + "defenceRange":4 + } + }, + { + "id":1172, + "weight":2.0 + }, + { + "id":1173, + "weight":3.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":5, + "defenceSlash":6, + "defenceCrush":4, + "defenceRange":5 + } + }, + { + "id":1174, + "weight":3.0 + }, + { + "id":1175, + "weight":36.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":8, + "defenceSlash":9, + "defenceCrush":7, + "defenceRange":8 + } + }, + { + "id":1176, + "weight":36.0 + }, + { + "id":1177, + "weight":3.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":12, + "defenceSlash":13, + "defenceCrush":11, + "defenceRange":12 + } + }, + { + "id":1178, + "weight":3.0 + }, + { + "id":1179, + "weight":4.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":15, + "defenceSlash":16, + "defenceCrush":14, + "defenceRange":15 + } + }, + { + "id":1180, + "weight":4.0 + }, + { + "id":1181, + "weight":3.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":15, + "defenceRange":17 + } + }, + { + "id":1182, + "weight":3.0 + }, + { + "id":1183, + "weight":4.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":24, + "defenceSlash":26, + "defenceCrush":22, + "defenceRange":24 + } + }, + { + "id":1184, + "weight":4.0 + }, + { + "id":1185, + "weight":364.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":38, + "defenceSlash":40, + "defenceCrush":36, + "defenceRange":38 + } + }, + { + "id":1186, + "weight":364.0 + }, + { + "id":1187, + "weight":3.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":50, + "defenceSlash":52, + "defenceCrush":48, + "defenceRange":50 + } + }, + { + "id":1188, + "weight":3.0 + }, + { + "id":1189, + "weight":54.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":5, + "defenceSlash":7, + "defenceCrush":6, + "defenceMagic":-1, + "defenceRange":6 + } + }, + { + "id":1190, + "weight":54.0 + }, + { + "id":1191, + "weight":6.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":8, + "defenceSlash":10, + "defenceCrush":9, + "defenceMagic":-1, + "defenceRange":9 + } + }, + { + "id":1192, + "weight":6.0 + }, + { + "id":1193, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":13, + "defenceSlash":15, + "defenceCrush":14, + "defenceMagic":-1, + "defenceRange":14 + } + }, + { + "id":1194, + "weight":5.0 + }, + { + "id":1195, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":1196, + "weight":5.0 + }, + { + "id":1197, + "weight":45.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":18, + "defenceSlash":22, + "defenceCrush":20, + "defenceMagic":-1, + "defenceRange":20 + } + }, + { + "id":1198, + "weight":45.0 + }, + { + "id":1199, + "weight":58.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":27, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":1200, + "weight":58.0 + }, + { + "id":1201, + "weight":54.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":1202, + "weight":54.0 + }, + { + "id":1203, + "weight":4.0, + "bonuses":{ + "attackStab":5, + "attackSlash":3, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":4 + } + }, + { + "id":1204, + "weight":4.0 + }, + { + "id":1205, + "weight":4.0, + "bonuses":{ + "attackStab":4, + "attackSlash":2, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":3 + } + }, + { + "id":1206, + "weight":4.0 + }, + { + "id":1207, + "weight":4.0, + "bonuses":{ + "attackStab":8, + "attackSlash":4, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":7 + } + }, + { + "id":1208, + "weight":4.0 + }, + { + "id":1209, + "weight":3.0, + "bonuses":{ + "attackStab":11, + "attackSlash":5, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":10 + } + }, + { + "id":1210, + "weight":3.0 + }, + { + "id":1211, + "weight":4.0, + "bonuses":{ + "attackStab":15, + "attackSlash":8, + "attackCrush":-4, + "defenceMagic":1, + "strengthBonus":14 + } + }, + { + "id":1212, + "weight":4.0 + }, + { + "id":1213, + "weight":4.0, + "bonuses":{ + "attackStab":25, + "attackSlash":12, + "attackCrush":-4, + "defenceMagic":1, + "strengthBonus":24 + } + }, + { + "id":1214, + "weight":4.0 + }, + { + "id":1215, + "weight":4.0, + "bonuses":{ + "attackStab":40, + "attackSlash":25, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":40 + } + }, + { + "id":1216, + "weight":4.0 + }, + { + "id":1217, + "weight":4.0, + "bonuses":{ + "attackStab":10, + "attackSlash":5, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":7 + } + }, + { + "id":1218, + "weight":4.0 + }, + { + "id":1219, + "weight":4.0, + "bonuses":{ + "attackStab":5, + "attackSlash":3, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":4 + } + }, + { + "id":1220, + "weight":4.0 + }, + { + "id":1221, + "weight":4.0, + "bonuses":{ + "attackStab":4, + "attackSlash":2, + "attackCrush":-4, + "defenceMagic":1, + "strengthBonus":3 + } + }, + { + "id":1222, + "weight":4.0 + }, + { + "id":1223, + "weight":4.0, + "bonuses":{ + "attackStab":8, + "attackSlash":4, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":7 + } + }, + { + "id":1224, + "weight":4.0 + }, + { + "id":1225, + "weight":3.0, + "bonuses":{ + "attackStab":11, + "attackSlash":5, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":10 + } + }, + { + "id":1226, + "weight":3.0 + }, + { + "id":1227, + "weight":4.0, + "bonuses":{ + "attackStab":15, + "attackSlash":8, + "attackCrush":-4, + "defenceMagic":1, + "strengthBonus":14 + } + }, + { + "id":1228, + "weight":4.0 + }, + { + "id":1229, + "weight":4.0, + "bonuses":{ + "attackStab":25, + "attackSlash":12, + "attackCrush":-4, + "defenceMagic":1, + "strengthBonus":24 + } + }, + { + "id":1230, + "weight":4.0 + }, + { + "id":1231, + "weight":4.0, + "bonuses":{ + "attackStab":40, + "attackSlash":25, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":40 + } + }, + { + "id":1232, + "weight":4.0 + }, + { + "id":1233, + "weight":4.0, + "bonuses":{ + "attackStab":10, + "attackSlash":5, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":7 + } + }, + { + "id":1234, + "weight":4.0 + }, + { + "id":1237, + "weight":22.0, + "bonuses":{ + "attackStab":5, + "attackSlash":5, + "attackCrush":5, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":7 + } + }, + { + "id":1238, + "weight":22.0 + }, + { + "id":1239, + "weight":22.0, + "bonuses":{ + "attackStab":8, + "attackSlash":8, + "attackCrush":8, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":10 + } + }, + { + "id":1240, + "weight":22.0 + }, + { + "id":1241, + "weight":22.0, + "bonuses":{ + "attackStab":12, + "attackSlash":12, + "attackCrush":12, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":12 + } + }, + { + "id":1242, + "weight":22.0 + }, + { + "id":1243, + "weight":18.0, + "bonuses":{ + "attackStab":17, + "attackSlash":17, + "attackCrush":17, + "defenceStab":1, + "defenceSlash":1, + "prayerBonus":18 + } + }, + { + "id":1244, + "weight":18.0 + }, + { + "id":1245, + "weight":2.0, + "bonuses":{ + "attackStab":24, + "attackSlash":24, + "attackCrush":24, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":28 + } + }, + { + "id":1246, + "weight":2.0 + }, + { + "id":1247, + "weight":22.0, + "bonuses":{ + "attackStab":36, + "attackSlash":36, + "attackCrush":36, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":42 + } + }, + { + "id":1248, + "weight":22.0 + }, + { + "id":1249, + "weight":2.0, + "bonuses":{ + "attackStab":55, + "attackSlash":55, + "attackCrush":55, + "defenceStab":5, + "defenceSlash":5, + "defenceCrush":5, + "defenceMagic":5, + "defenceRange":5, + "strengthBonus":60 + } + }, + { + "id":1250, + "weight":2.0 + }, + { + "id":1251, + "weight":22.0, + "bonuses":{ + "attackStab":5, + "attackSlash":5, + "attackCrush":5, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":7 + } + }, + { + "id":1252, + "weight":22.0 + }, + { + "id":1253, + "weight":22.0, + "bonuses":{ + "attackStab":8, + "attackSlash":8, + "attackCrush":8, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":10 + } + }, + { + "id":1254, + "weight":22.0 + }, + { + "id":1255, + "weight":22.0 + }, + { + "id":1256, + "weight":22.0 + }, + { + "id":1257, + "weight":18.0, + "bonuses":{ + "attackStab":17, + "attackSlash":17, + "attackCrush":17, + "defenceStab":1, + "defenceSlash":1, + "prayerBonus":18 + } + }, + { + "id":1258, + "weight":18.0 + }, + { + "id":1259, + "weight":2.0, + "bonuses":{ + "attackStab":24, + "attackSlash":24, + "attackCrush":24, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":28 + } + }, + { + "id":1260, + "weight":2.0 + }, + { + "id":1261, + "weight":22.0, + "bonuses":{ + "attackStab":36, + "attackSlash":36, + "attackCrush":36, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":42 + } + }, + { + "id":1262, + "weight":22.0 + }, + { + "id":1263, + "weight":2.0, + "bonuses":{ + "attackStab":55, + "attackSlash":55, + "attackCrush":55, + "defenceStab":5, + "defenceSlash":5, + "defenceCrush":5, + "defenceMagic":5, + "defenceRange":5, + "strengthBonus":60 + } + }, + { + "id":1264, + "weight":2.0 + }, + { + "id":1265, + "weight":225.0, + "bonuses":{ + "attackStab":4, + "attackSlash":-2, + "attackCrush":2, + "defenceSlash":2, + "strengthBonus":5 + } + }, + { + "id":1266, + "weight":225.0 + }, + { + "id":1267, + "weight":225.0, + "bonuses":{ + "attackStab":5, + "attackSlash":-2, + "attackCrush":3, + "defenceSlash":2, + "strengthBonus":7 + } + }, + { + "id":1268, + "weight":225.0 + }, + { + "id":1269, + "weight":225.0, + "bonuses":{ + "attackStab":8, + "attackSlash":-2, + "attackCrush":6, + "defenceSlash":2, + "strengthBonus":9 + } + }, + { + "id":1270, + "weight":225.0 + }, + { + "id":1271, + "weight":27.0, + "bonuses":{ + "attackStab":17, + "attackSlash":-2, + "attackCrush":15, + "defenceSlash":1, + "strengthBonus":19 + } + }, + { + "id":1272, + "weight":27.0 + }, + { + "id":1273, + "weight":18.0, + "bonuses":{ + "attackStab":12, + "attackSlash":-2, + "attackCrush":10, + "defenceSlash":2, + "strengthBonus":13 + } + }, + { + "id":1274, + "weight":18.0 + }, + { + "id":1275, + "weight":22.0, + "bonuses":{ + "attackStab":26, + "attackSlash":-2, + "attackCrush":24, + "defenceSlash":1, + "strengthBonus":29 + } + }, + { + "id":1276, + "weight":22.0 + }, + { + "id":1277, + "weight":1.0, + "bonuses":{ + "attackStab":4, + "attackSlash":3, + "attackCrush":-2, + "defenceSlash":2, + "defenceCrush":1, + "strengthBonus":5 + } + }, + { + "id":1278, + "weight":1.0 + }, + { + "id":1279, + "weight":18.0, + "bonuses":{ + "attackStab":6, + "attackSlash":4, + "attackCrush":-2, + "attackMagic":-4, + "attackRange":-1, + "defenceSlash":2, + "defenceCrush":1, + "defenceRange":-1, + "strengthBonus":7 + } + }, + { + "id":1280, + "weight":18.0 + }, + { + "id":1281, + "weight":1.0, + "bonuses":{ + "attackStab":11, + "attackSlash":8, + "attackCrush":-2, + "attackMagic":-4, + "attackRange":-1, + "defenceStab":2, + "defenceSlash":1, + "strengthBonus":12 + } + }, + { + "id":1282, + "weight":1.0 + }, + { + "id":1283, + "weight":1.0, + "bonuses":{ + "attackStab":14, + "attackSlash":10, + "attackCrush":-2, + "defenceSlash":2, + "defenceCrush":1, + "strengthBonus":12 + } + }, + { + "id":1284, + "weight":1.0 + }, + { + "id":1285, + "weight":15.0, + "bonuses":{ + "attackStab":16, + "attackSlash":11, + "attackCrush":-2, + "defenceStab":2, + "defenceSlash":1, + "strengthBonus":17 + } + }, + { + "id":1286, + "weight":15.0 + }, + { + "id":1287, + "weight":1.0, + "bonuses":{ + "attackStab":23, + "attackSlash":18, + "attackCrush":-2, + "attackMagic":-4, + "defenceStab":2, + "defenceSlash":1, + "strengthBonus":24 + } + }, + { + "id":1288, + "weight":1.0 + }, + { + "id":1289, + "weight":18.0, + "bonuses":{ + "attackStab":38, + "attackSlash":26, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":39 + } + }, + { + "id":1290, + "weight":18.0 + }, + { + "id":1291, + "weight":18.0, + "bonuses":{ + "attackStab":4, + "attackSlash":2, + "attackCrush":-2, + "defenceStab":3, + "defenceSlash":2, + "strengthBonus":7 + } + }, + { + "id":1292, + "weight":18.0 + }, + { + "id":1293, + "weight":2.0, + "bonuses":{ + "attackStab":6, + "attackSlash":4, + "attackCrush":-2, + "attackMagic":-4, + "attackRange":-1, + "defenceStab":3, + "defenceSlash":2, + "strengthBonus":10 + } + }, + { + "id":1294, + "weight":2.0 + }, + { + "id":1295, + "weight":2.0, + "bonuses":{ + "attackStab":9, + "attackSlash":14, + "defenceStab":3, + "defenceSlash":2, + "strengthBonus":15 + } + }, + { + "id":1296, + "weight":2.0 + }, + { + "id":1297, + "weight":18.0, + "bonuses":{ + "attackStab":13, + "attackSlash":18, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":16 + } + }, + { + "id":1298, + "weight":18.0 + }, + { + "id":1299, + "weight":15.0, + "bonuses":{ + "attackStab":15, + "attackSlash":20, + "attackCrush":-2, + "defenceStab":3, + "defenceSlash":2, + "strengthBonus":22 + } + }, + { + "id":1300, + "weight":15.0 + }, + { + "id":1301, + "weight":2.0, + "bonuses":{ + "attackStab":20, + "attackSlash":29, + "attackCrush":-2, + "defenceStab":3, + "defenceSlash":2, + "strengthBonus":31 + } + }, + { + "id":1302, + "weight":2.0 + }, + { + "id":1303, + "weight":18.0, + "bonuses":{ + "attackStab":38, + "attackSlash":47, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":49 + } + }, + { + "id":1304, + "weight":18.0 + }, + { + "id":1305, + "weight":18.0, + "bonuses":{ + "attackStab":58, + "attackSlash":69, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":71 + } + }, + { + "id":1306, + "weight":18.0 + }, + { + "id":1307, + "weight":36.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":9, + "attackCrush":8, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":10 + } + }, + { + "id":1308, + "weight":36.0 + }, + { + "id":1309, + "weight":36.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":13, + "attackCrush":10, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":14 + } + }, + { + "id":1310, + "weight":36.0 + }, + { + "id":1311, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":21, + "attackCrush":16, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":22 + } + }, + { + "id":1312, + "weight":3.0 + }, + { + "id":1313, + "weight":36.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":27, + "attackCrush":21, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":28 + } + }, + { + "id":1314, + "weight":36.0 + }, + { + "id":1315, + "weight":31.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":30, + "attackCrush":24, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":31 + } + }, + { + "id":1316, + "weight":31.0 + }, + { + "id":1317, + "weight":4.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":43, + "attackCrush":30, + "attackMagic":-4, + "defenceRange":1, + "strengthBonus":44 + } + }, + { + "id":1318, + "weight":4.0 + }, + { + "id":1319, + "weight":36.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":69, + "attackCrush":50, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":70 + } + }, + { + "id":1320, + "weight":36.0 + }, + { + "id":1321, + "weight":1.0, + "bonuses":{ + "attackStab":1, + "attackSlash":7, + "attackCrush":-2, + "strengthBonus":6 + } + }, + { + "id":1322, + "weight":1.0 + }, + { + "id":1323, + "weight":18.0, + "bonuses":{ + "attackStab":2, + "attackSlash":10, + "attackCrush":-2, + "strengthBonus":9 + } + }, + { + "id":1324, + "weight":18.0 + }, + { + "id":1325, + "weight":18.0, + "bonuses":{ + "attackStab":3, + "attackSlash":15, + "attackCrush":-2, + "strengthBonus":14 + } + }, + { + "id":1326, + "weight":18.0 + }, + { + "id":1327, + "weight":18.0, + "bonuses":{ + "attackStab":4, + "attackSlash":19, + "attackCrush":-2, + "strengthBonus":14 + } + }, + { + "id":1328, + "weight":18.0 + }, + { + "id":1329, + "weight":15.0, + "bonuses":{ + "attackStab":5, + "attackSlash":21, + "attackCrush":-2, + "strengthBonus":20 + } + }, + { + "id":1330, + "weight":15.0 + }, + { + "id":1331, + "weight":2.0, + "bonuses":{ + "attackStab":6, + "attackSlash":29, + "attackCrush":-2, + "strengthBonus":28 + } + }, + { + "id":1332, + "weight":2.0 + }, + { + "id":1333, + "weight":18.0, + "bonuses":{ + "attackStab":7, + "attackSlash":45, + "attackCrush":-2, + "strengthBonus":44 + } + }, + { + "id":1334, + "weight":18.0 + }, + { + "id":1335, + "weight":18.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":11, + "attackMagic":-4, + "strengthBonus":9 + } + }, + { + "id":1336, + "weight":18.0 + }, + { + "id":1337, + "weight":1.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":10, + "attackMagic":-4, + "strengthBonus":8 + } + }, + { + "id":1338, + "weight":1.0 + }, + { + "id":1339, + "weight":1.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":18, + "attackMagic":-4, + "strengthBonus":16 + } + }, + { + "id":1340, + "weight":1.0 + }, + { + "id":1341, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":22, + "attackMagic":-4, + "strengthBonus":19 + } + }, + { + "id":1343, + "weight":15.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":25, + "strengthBonus":20 + } + }, + { + "id":1344, + "weight":15.0 + }, + { + "id":1345, + "weight":2.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":33, + "attackMagic":-4, + "strengthBonus":31 + } + }, + { + "id":1346, + "weight":2.0 + }, + { + "id":1347, + "weight":18.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":53, + "attackMagic":-4, + "strengthBonus":48 + } + }, + { + "id":1348, + "weight":18.0 + }, + { + "id":1349, + "weight":13.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":5, + "attackCrush":3, + "strengthBonus":7 + } + }, + { + "id":1350, + "weight":13.0 + }, + { + "id":1351, + "weight":135.0, + "bonuses":{ + "attackStab":2, + "attackSlash":4, + "attackCrush":2, + "strengthBonus":5 + } + }, + { + "id":1352, + "weight":135.0 + }, + { + "id":1353, + "weight":13.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":8, + "attackCrush":6, + "strengthBonus":9 + } + }, + { + "id":1354, + "weight":13.0 + }, + { + "id":1355, + "weight":11.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":12, + "attackCrush":10, + "strengthBonus":10 + } + }, + { + "id":1356, + "weight":11.0 + }, + { + "id":1357, + "weight":2.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":17, + "attackCrush":15, + "strengthBonus":19 + } + }, + { + "id":1358, + "weight":2.0 + }, + { + "id":1359, + "weight":13.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":26, + "attackCrush":24, + "strengthBonus":29 + } + }, + { + "id":1360, + "weight":13.0 + }, + { + "id":1361, + "weight":2.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":10, + "attackCrush":8, + "strengthBonus":12 + } + }, + { + "id":1362, + "weight":2.0 + }, + { + "id":1363, + "weight":27.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":8, + "attackCrush":5, + "strengthBonus":13 + } + }, + { + "id":1364, + "weight":27.0 + }, + { + "id":1365, + "weight":27.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":16, + "attackCrush":11, + "strengthBonus":20 + } + }, + { + "id":1366, + "weight":27.0 + }, + { + "id":1367, + "weight":27.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":20, + "attackCrush":15, + "strengthBonus":24 + } + }, + { + "id":1368, + "weight":27.0 + }, + { + "id":1369, + "weight":2.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":22, + "attackCrush":17, + "strengthBonus":29 + } + }, + { + "id":1370, + "weight":2.0 + }, + { + "id":1371, + "weight":3.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":31, + "attackCrush":26, + "strengthBonus":41 + } + }, + { + "id":1372, + "weight":3.0 + }, + { + "id":1373, + "weight":2.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":48, + "attackCrush":43, + "strengthBonus":64 + } + }, + { + "id":1374, + "weight":2.0 + }, + { + "id":1375, + "weight":27.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":6, + "attackCrush":3, + "strengthBonus":9 + } + }, + { + "id":1376, + "weight":27.0 + }, + { + "id":1377, + "weight":27.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":70, + "attackCrush":65, + "strengthBonus":85 + } + }, + { + "id":1378, + "weight":27.0 + }, + { + "id":1379, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":1380, + "weight":2.0 + }, + { + "id":1381, + "weight":22.0, + "bonuses":{ + "attackStab":3, + "attackSlash":-1, + "attackCrush":9, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":6 + } + }, + { + "id":1382, + "weight":22.0 + }, + { + "id":1383, + "weight":22.0, + "bonuses":{ + "attackStab":3, + "attackSlash":-1, + "attackCrush":9, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":6 + } + }, + { + "id":1384, + "weight":22.0 + }, + { + "id":1385, + "weight":22.0, + "bonuses":{ + "attackStab":3, + "attackSlash":-1, + "attackCrush":9, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":6 + } + }, + { + "id":1386, + "weight":22.0 + }, + { + "id":1387, + "weight":22.0, + "bonuses":{ + "attackStab":3, + "attackSlash":-1, + "attackCrush":9, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":6 + } + }, + { + "id":1388, + "weight":22.0 + }, + { + "id":1389, + "weight":22.0, + "bonuses":{ + "attackStab":2, + "attackSlash":-1, + "attackCrush":10, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":7 + } + }, + { + "id":1390, + "weight":22.0 + }, + { + "id":1391, + "weight":225.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":25, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":32 + } + }, + { + "id":1392, + "weight":225.0 + }, + { + "id":1393, + "weight":225.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":28, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":1394, + "weight":225.0 + }, + { + "id":1395, + "weight":22.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":28, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":1396, + "weight":22.0 + }, + { + "id":1397, + "weight":225.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":28, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":1398, + "weight":225.0 + }, + { + "id":1399, + "weight":22.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":28, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":1400, + "weight":22.0 + }, + { + "id":1401, + "weight":2.0, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":50 + } + }, + { + "id":1402, + "weight":2.0 + }, + { + "id":1403, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":50 + } + }, + { + "id":1405, + "weight":22.0, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":50 + } + }, + { + "id":1406, + "weight":22.0 + }, + { + "id":1407, + "weight":22.0, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":50 + } + }, + { + "id":1408, + "weight":22.0 + }, + { + "id":1409, + "weight":22.0, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":50 + } + }, + { + "id":1410, + "weight":22.0 + }, + { + "id":1419, + "weight":3.0, + "bonuses":{ + "attackMagic":3, + "attackRange":1, + "strengthBonus":10 + } + }, + { + "id":1420, + "weight":18.0, + "bonuses":{ + "attackStab":4, + "attackSlash":-2, + "attackCrush":9, + "defenceStab":-2, + "strengthBonus":7, + "prayerBonus":1 + } + }, + { + "id":1421, + "weight":18.0 + }, + { + "id":1422, + "weight":179.0, + "bonuses":{ + "attackStab":2, + "attackSlash":-2, + "attackCrush":6, + "strengthBonus":5, + "prayerBonus":1 + } + }, + { + "id":1423, + "weight":179.0 + }, + { + "id":1424, + "weight":179.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-2, + "attackCrush":13, + "strengthBonus":11, + "prayerBonus":2 + } + }, + { + "id":1425, + "weight":179.0 + }, + { + "id":1426, + "weight":179.0, + "bonuses":{ + "attackStab":8, + "attackSlash":-2, + "attackCrush":16, + "strengthBonus":13, + "prayerBonus":2 + } + }, + { + "id":1427, + "weight":179.0 + }, + { + "id":1428, + "weight":15.0, + "bonuses":{ + "attackStab":11, + "attackSlash":-2, + "attackCrush":11, + "strengthBonus":16, + "prayerBonus":3 + } + }, + { + "id":1429, + "weight":15.0 + }, + { + "id":1430, + "weight":2.0, + "bonuses":{ + "attackStab":13, + "attackSlash":-2, + "attackCrush":25, + "strengthBonus":23, + "prayerBonus":3 + } + }, + { + "id":1431, + "weight":2.0 + }, + { + "id":1432, + "weight":179.0, + "bonuses":{ + "attackStab":20, + "attackSlash":-2, + "attackCrush":39, + "defenceStab":-2, + "strengthBonus":36, + "prayerBonus":4 + } + }, + { + "id":1433, + "weight":179.0 + }, + { + "id":1434, + "weight":18.0, + "bonuses":{ + "attackStab":40, + "attackSlash":-2, + "attackCrush":60, + "defenceStab":-2, + "strengthBonus":55, + "prayerBonus":5 + } + }, + { + "id":1435, + "weight":18.0 + }, + { + "id":1438, + "weight":1.0 + }, + { + "id":1439, + "weight":1.0 + }, + { + "id":1478, + "bonuses":{ + "attackStab":4, + "attackSlash":4, + "attackCrush":4, + "attackMagic":4, + "attackRange":4 + } + }, + { + "id":1481, + "weight":5.0 + }, + { + "id":1482, + "weight":5.0 + }, + { + "id":1483, + "weight":5.0 + }, + { + "id":1484, + "weight":5.0 + }, + { + "id":1486, + "weight":2.0 + }, + { + "id":1487, + "weight":1.0 + }, + { + "id":1492, + "weight":1.0 + }, + { + "id":1494, + "weight":2.0 + }, + { + "id":1495, + "weight":2.0 + }, + { + "id":1502, + "weight":56.0 + }, + { + "id":1504, + "weight":2.0 + }, + { + "id":1506, + "weight":25.0 + }, + { + "id":1510, + "weight":4.0 + }, + { + "id":1511, + "weight":2.0 + }, + { + "id":1512, + "weight":2.0 + }, + { + "id":1513, + "weight":2.0 + }, + { + "id":1514, + "weight":2.0 + }, + { + "id":1515, + "weight":2.0 + }, + { + "id":1516, + "weight":2.0 + }, + { + "id":1517, + "weight":2.0 + }, + { + "id":1518, + "weight":2.0 + }, + { + "id":1519, + "weight":2.0 + }, + { + "id":1520, + "weight":2.0 + }, + { + "id":1521, + "weight":2.0 + }, + { + "id":1522, + "weight":2.0 + }, + { + "id":1527, + "weight":2.0 + }, + { + "id":1528, + "weight":2.0 + }, + { + "id":1540, + "weight":54.0, + "bonuses":{ + "defenceStab":7, + "defenceSlash":9, + "defenceCrush":8, + "defenceMagic":2, + "defenceRange":8 + } + }, + { + "id":1541, + "weight":54.0 + }, + { + "id":1553, + "weight":5.0 + }, + { + "id":1574, + "weight":5.0 + }, + { + "id":1576, + "weight":5.0 + }, + { + "id":1580, + "weight":2.0 + }, + { + "id":1585, + "weight":1.0 + }, + { + "id":1586, + "weight":1.0 + }, + { + "id":1587, + "weight":1.0 + }, + { + "id":1589, + "weight":4.0 + }, + { + "id":1592, + "weight":4.0 + }, + { + "id":1593, + "weight":4.0 + }, + { + "id":1595, + "weight":4.0 + }, + { + "id":1596, + "weight":4.0 + }, + { + "id":1597, + "weight":4.0 + }, + { + "id":1598, + "weight":4.0 + }, + { + "id":1599, + "weight":4.0 + }, + { + "id":1600, + "weight":4.0 + }, + { + "id":1613, + "weight":2.0 + }, + { + "id":1614, + "weight":2.0 + }, + { + "id":1615, + "weight":3.0 + }, + { + "id":1616, + "weight":3.0 + }, + { + "id":1629, + "weight":2.0 + }, + { + "id":1630, + "weight":2.0 + }, + { + "id":1631, + "weight":3.0 + }, + { + "id":1632, + "weight":3.0 + }, + { + "id":1704, + "bonuses":{ + "attackStab":10, + "attackSlash":10, + "attackCrush":10, + "attackMagic":10, + "attackRange":10, + "defenceStab":3, + "defenceSlash":3, + "defenceCrush":3, + "defenceMagic":3, + "defenceRange":3, + "strengthBonus":6, + "prayerBonus":3 + } + }, + { + "id":1706, + "bonuses":{ + "attackStab":10, + "attackSlash":10, + "attackCrush":10, + "attackMagic":10, + "attackRange":10, + "defenceStab":3, + "defenceSlash":3, + "defenceCrush":3, + "defenceMagic":3, + "defenceRange":3, + "strengthBonus":6, + "prayerBonus":3 + } + }, + { + "id":1708, + "bonuses":{ + "attackStab":10, + "attackSlash":10, + "attackCrush":10, + "attackMagic":10, + "attackRange":10, + "defenceStab":3, + "defenceSlash":3, + "defenceCrush":3, + "defenceMagic":3, + "defenceRange":3, + "strengthBonus":6, + "prayerBonus":3 + } + }, + { + "id":1710, + "bonuses":{ + "attackStab":10, + "attackSlash":10, + "attackCrush":10, + "attackMagic":10, + "attackRange":10, + "defenceStab":3, + "defenceSlash":3, + "defenceCrush":3, + "defenceMagic":3, + "defenceRange":3, + "strengthBonus":6, + "prayerBonus":3 + } + }, + { + "id":1712, + "bonuses":{ + "attackStab":10, + "attackSlash":10, + "attackCrush":10, + "attackMagic":10, + "attackRange":10, + "defenceStab":3, + "defenceSlash":3, + "defenceCrush":3, + "defenceMagic":3, + "defenceRange":3, + "strengthBonus":6, + "prayerBonus":3 + } + }, + { + "id":1718, + "bonuses":{ + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":2, + "defenceMagic":2, + "defenceRange":2, + "prayerBonus":8 + } + }, + { + "id":1724, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "attackMagic":2, + "attackRange":2, + "prayerBonus":8 + } + }, + { + "id":1725, + "bonuses":{ + "strengthBonus":10 + } + }, + { + "id":1727, + "bonuses":{ + "attackMagic":10 + } + }, + { + "id":1729, + "bonuses":{ + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "defenceMagic":7, + "defenceRange":7 + } + }, + { + "id":1731, + "bonuses":{ + "attackStab":6, + "attackSlash":6, + "attackCrush":6, + "attackMagic":6, + "attackRange":6, + "defenceStab":6, + "defenceSlash":6, + "defenceCrush":6, + "defenceMagic":6, + "defenceRange":6, + "strengthBonus":4, + "prayerBonus":1 + } + }, + { + "id":1735, + "weight":1.0 + }, + { + "id":1736, + "weight":1.0 + }, + { + "id":1737, + "weight":14.0 + }, + { + "id":1738, + "weight":14.0 + }, + { + "id":1739, + "weight":27.0 + }, + { + "id":1740, + "weight":27.0 + }, + { + "id":1741, + "weight":225.0 + }, + { + "id":1742, + "weight":225.0 + }, + { + "id":1743, + "weight":31.0 + }, + { + "id":1744, + "weight":31.0 + }, + { + "id":1745, + "weight":31.0 + }, + { + "id":1746, + "weight":31.0 + }, + { + "id":1747, + "weight":31.0 + }, + { + "id":1748, + "weight":31.0 + }, + { + "id":1749, + "weight":3.0 + }, + { + "id":1750, + "weight":3.0 + }, + { + "id":1751, + "weight":31.0 + }, + { + "id":1752, + "weight":31.0 + }, + { + "id":1753, + "weight":31.0 + }, + { + "id":1754, + "weight":31.0 + }, + { + "id":1755, + "weight":4.0 + }, + { + "id":1756, + "weight":4.0 + }, + { + "id":1757, + "weight":45.0 + }, + { + "id":1758, + "weight":45.0 + }, + { + "id":1761, + "weight":9.0 + }, + { + "id":1762, + "weight":9.0 + }, + { + "id":1767, + "weight":1.0 + }, + { + "id":1768, + "weight":1.0 + }, + { + "id":1769, + "weight":5.0 + }, + { + "id":1770, + "weight":5.0 + }, + { + "id":1775, + "weight":9.0 + }, + { + "id":1776, + "weight":9.0 + }, + { + "id":1779, + "weight":4.0 + }, + { + "id":1780, + "weight":4.0 + }, + { + "id":1783, + "weight":25.0 + }, + { + "id":1784, + "weight":25.0 + }, + { + "id":1785, + "weight":5.0 + }, + { + "id":1786, + "weight":5.0 + }, + { + "id":1796, + "weight":1.0 + }, + { + "id":1797, + "weight":1.0 + }, + { + "id":1833, + "weight":5.0 + }, + { + "id":1834, + "weight":5.0 + }, + { + "id":1835, + "weight":9.0 + }, + { + "id":1836, + "weight":9.0 + }, + { + "id":1837, + "weight":2.0 + }, + { + "id":1838, + "weight":2.0 + }, + { + "id":1841, + "weight":10.0 + }, + { + "id":1842, + "weight":32.0 + }, + { + "id":1844, + "weight":9.0 + }, + { + "id":1845, + "weight":9.0 + }, + { + "id":1846, + "weight":6.0 + }, + { + "id":1851, + "weight":1.0 + }, + { + "id":1857, + "weight":3.0 + }, + { + "id":1859, + "weight":75.0 + }, + { + "id":1860, + "weight":75.0 + }, + { + "id":1861, + "weight":75.0 + }, + { + "id":1862, + "weight":75.0 + }, + { + "id":1863, + "weight":14.0 + }, + { + "id":1864, + "weight":14.0 + }, + { + "id":1869, + "weight":2.0 + }, + { + "id":1870, + "weight":2.0 + }, + { + "id":1871, + "weight":5.0 + }, + { + "id":1872, + "weight":5.0 + }, + { + "id":1879, + "weight":25.0 + }, + { + "id":1880, + "weight":25.0 + }, + { + "id":1883, + "weight":5.0 + }, + { + "id":1884, + "weight":5.0 + }, + { + "id":1885, + "weight":5.0 + }, + { + "id":1886, + "weight":5.0 + }, + { + "id":1887, + "weight":1.0 + }, + { + "id":1888, + "weight":1.0 + }, + { + "id":1889, + "weight":5.0 + }, + { + "id":1890, + "weight":5.0 + }, + { + "id":1891, + "weight":3.0 + }, + { + "id":1892, + "weight":3.0 + }, + { + "id":1893, + "weight":3.0 + }, + { + "id":1894, + "weight":3.0 + }, + { + "id":1895, + "weight":3.0 + }, + { + "id":1896, + "weight":3.0 + }, + { + "id":1897, + "weight":3.0 + }, + { + "id":1898, + "weight":3.0 + }, + { + "id":1899, + "weight":3.0 + }, + { + "id":1900, + "weight":3.0 + }, + { + "id":1901, + "weight":3.0 + }, + { + "id":1902, + "weight":3.0 + }, + { + "id":1911, + "weight":1.0 + }, + { + "id":1912, + "weight":1.0 + }, + { + "id":1915, + "weight":2.0 + }, + { + "id":1916, + "weight":2.0 + }, + { + "id":1917, + "weight":1.0 + }, + { + "id":1918, + "weight":1.0 + }, + { + "id":1919, + "weight":5.0 + }, + { + "id":1920, + "weight":5.0 + }, + { + "id":1921, + "weight":9.0 + }, + { + "id":1922, + "weight":9.0 + }, + { + "id":1923, + "weight":4.0 + }, + { + "id":1924, + "weight":4.0 + }, + { + "id":1925, + "weight":1.0 + }, + { + "id":1926, + "weight":1.0 + }, + { + "id":1927, + "weight":22.0 + }, + { + "id":1928, + "weight":22.0 + }, + { + "id":1929, + "weight":3.0 + }, + { + "id":1930, + "weight":3.0 + }, + { + "id":1931, + "weight":45.0 + }, + { + "id":1932, + "weight":45.0 + }, + { + "id":1933, + "weight":13.0 + }, + { + "id":1934, + "weight":13.0 + }, + { + "id":1935, + "weight":4.0 + }, + { + "id":1936, + "weight":4.0 + }, + { + "id":1937, + "weight":1.0 + }, + { + "id":1938, + "weight":1.0 + }, + { + "id":1942, + "weight":5.0 + }, + { + "id":1943, + "weight":5.0 + }, + { + "id":1946, + "weight":13.0 + }, + { + "id":1947, + "weight":6.0 + }, + { + "id":1948, + "weight":6.0 + }, + { + "id":1949, + "weight":9.0 + }, + { + "id":1950, + "weight":9.0 + }, + { + "id":1951, + "weight":1.0 + }, + { + "id":1952, + "weight":1.0 + }, + { + "id":1953, + "weight":16.0 + }, + { + "id":1954, + "weight":16.0 + }, + { + "id":1957, + "weight":1.0 + }, + { + "id":1958, + "weight":1.0 + }, + { + "id":1959, + "weight":5.0 + }, + { + "id":1960, + "weight":5.0 + }, + { + "id":1965, + "weight":4.0 + }, + { + "id":1966, + "weight":4.0 + }, + { + "id":1967, + "weight":4.0 + }, + { + "id":1968, + "weight":4.0 + }, + { + "id":1970, + "weight":5.0 + }, + { + "id":1977, + "weight":2.0 + }, + { + "id":1978, + "weight":1.0 + }, + { + "id":1979, + "weight":1.0 + }, + { + "id":1985, + "weight":2.0 + }, + { + "id":1986, + "weight":2.0 + }, + { + "id":1987, + "weight":3.0 + }, + { + "id":1988, + "weight":3.0 + }, + { + "id":1991, + "weight":1.0 + }, + { + "id":1992, + "weight":1.0 + }, + { + "id":1993, + "weight":15.0 + }, + { + "id":1994, + "weight":15.0 + }, + { + "id":1995, + "weight":1.0 + }, + { + "id":1996, + "weight":1.0 + }, + { + "id":2001, + "weight":1.0 + }, + { + "id":2002, + "weight":1.0 + }, + { + "id":2003, + "weight":15.0 + }, + { + "id":2004, + "weight":15.0 + }, + { + "id":2007, + "weight":2.0 + }, + { + "id":2008, + "weight":2.0 + }, + { + "id":2011, + "weight":15.0 + }, + { + "id":2012, + "weight":15.0 + }, + { + "id":2015, + "weight":25.0 + }, + { + "id":2016, + "weight":25.0 + }, + { + "id":2017, + "weight":1.0 + }, + { + "id":2018, + "weight":1.0 + }, + { + "id":2019, + "weight":1.0 + }, + { + "id":2020, + "weight":1.0 + }, + { + "id":2023, + "weight":5.0 + }, + { + "id":2024, + "weight":5.0 + }, + { + "id":2025, + "weight":1.0 + }, + { + "id":2028, + "weight":4.0 + }, + { + "id":2029, + "weight":4.0 + }, + { + "id":2030, + "weight":4.0 + }, + { + "id":2031, + "weight":4.0 + }, + { + "id":2032, + "weight":4.0 + }, + { + "id":2033, + "weight":4.0 + }, + { + "id":2034, + "weight":4.0 + }, + { + "id":2035, + "weight":4.0 + }, + { + "id":2036, + "weight":4.0 + }, + { + "id":2037, + "weight":4.0 + }, + { + "id":2038, + "weight":4.0 + }, + { + "id":2039, + "weight":4.0 + }, + { + "id":2040, + "weight":4.0 + }, + { + "id":2041, + "weight":4.0 + }, + { + "id":2042, + "weight":4.0 + }, + { + "id":2043, + "weight":4.0 + }, + { + "id":2044, + "weight":4.0 + }, + { + "id":2045, + "weight":4.0 + }, + { + "id":2046, + "weight":4.0 + }, + { + "id":2047, + "weight":4.0 + }, + { + "id":2050, + "weight":4.0 + }, + { + "id":2051, + "weight":4.0 + }, + { + "id":2052, + "weight":4.0 + }, + { + "id":2053, + "weight":4.0 + }, + { + "id":2054, + "weight":1.0 + }, + { + "id":2055, + "weight":1.0 + }, + { + "id":2056, + "weight":4.0 + }, + { + "id":2057, + "weight":4.0 + }, + { + "id":2058, + "weight":4.0 + }, + { + "id":2059, + "weight":4.0 + }, + { + "id":2060, + "weight":4.0 + }, + { + "id":2061, + "weight":4.0 + }, + { + "id":2062, + "weight":4.0 + }, + { + "id":2063, + "weight":4.0 + }, + { + "id":2066, + "weight":4.0 + }, + { + "id":2067, + "weight":4.0 + }, + { + "id":2068, + "weight":4.0 + }, + { + "id":2069, + "weight":4.0 + }, + { + "id":2070, + "weight":4.0 + }, + { + "id":2071, + "weight":4.0 + }, + { + "id":2072, + "weight":4.0 + }, + { + "id":2073, + "weight":4.0 + }, + { + "id":2074, + "weight":1.0 + }, + { + "id":2075, + "weight":1.0 + }, + { + "id":2076, + "weight":4.0 + }, + { + "id":2077, + "weight":4.0 + }, + { + "id":2078, + "weight":4.0 + }, + { + "id":2079, + "weight":4.0 + }, + { + "id":2082, + "weight":4.0 + }, + { + "id":2083, + "weight":4.0 + }, + { + "id":2086, + "weight":4.0 + }, + { + "id":2087, + "weight":4.0 + }, + { + "id":2088, + "weight":4.0 + }, + { + "id":2089, + "weight":4.0 + }, + { + "id":2090, + "weight":4.0 + }, + { + "id":2091, + "weight":4.0 + }, + { + "id":2094, + "weight":4.0 + }, + { + "id":2095, + "weight":4.0 + }, + { + "id":2096, + "weight":4.0 + }, + { + "id":2097, + "weight":4.0 + }, + { + "id":2098, + "weight":4.0 + }, + { + "id":2099, + "weight":4.0 + }, + { + "id":2100, + "weight":4.0 + }, + { + "id":2101, + "weight":4.0 + }, + { + "id":2102, + "weight":1.0 + }, + { + "id":2103, + "weight":1.0 + }, + { + "id":2108, + "weight":1.0 + }, + { + "id":2109, + "weight":1.0 + }, + { + "id":2114, + "weight":15.0 + }, + { + "id":2115, + "weight":15.0 + }, + { + "id":2120, + "weight":1.0 + }, + { + "id":2121, + "weight":1.0 + }, + { + "id":2130, + "weight":2.0 + }, + { + "id":2131, + "weight":2.0 + }, + { + "id":2132, + "weight":3.0 + }, + { + "id":2133, + "weight":3.0 + }, + { + "id":2134, + "weight":1.0 + }, + { + "id":2135, + "weight":1.0 + }, + { + "id":2136, + "weight":1.0 + }, + { + "id":2137, + "weight":1.0 + }, + { + "id":2138, + "weight":15.0 + }, + { + "id":2139, + "weight":15.0 + }, + { + "id":2140, + "weight":1.0 + }, + { + "id":2141, + "weight":1.0 + }, + { + "id":2142, + "weight":25.0 + }, + { + "id":2143, + "weight":25.0 + }, + { + "id":2148, + "weight":2.0 + }, + { + "id":2149, + "weight":15.0 + }, + { + "id":2150, + "weight":5.0 + }, + { + "id":2151, + "weight":5.0 + }, + { + "id":2152, + "weight":1.0 + }, + { + "id":2153, + "weight":1.0 + }, + { + "id":2154, + "weight":4.0 + }, + { + "id":2155, + "weight":4.0 + }, + { + "id":2156, + "weight":1.0 + }, + { + "id":2157, + "weight":1.0 + }, + { + "id":2158, + "weight":1.0 + }, + { + "id":2159, + "weight":1.0 + }, + { + "id":2160, + "weight":1.0 + }, + { + "id":2161, + "weight":1.0 + }, + { + "id":2162, + "weight":1.0 + }, + { + "id":2163, + "weight":1.0 + }, + { + "id":2164, + "weight":1.0 + }, + { + "id":2165, + "weight":1.0 + }, + { + "id":2166, + "weight":1.0 + }, + { + "id":2167, + "weight":5.0 + }, + { + "id":2168, + "weight":5.0 + }, + { + "id":2169, + "weight":14.0 + }, + { + "id":2170, + "weight":14.0 + }, + { + "id":2171, + "weight":5.0 + }, + { + "id":2172, + "weight":5.0 + }, + { + "id":2173, + "weight":4.0 + }, + { + "id":2174, + "weight":4.0 + }, + { + "id":2177, + "weight":2.0 + }, + { + "id":2179, + "weight":4.0 + }, + { + "id":2180, + "weight":4.0 + }, + { + "id":2181, + "weight":4.0 + }, + { + "id":2182, + "weight":4.0 + }, + { + "id":2183, + "weight":4.0 + }, + { + "id":2184, + "weight":4.0 + }, + { + "id":2187, + "weight":3.0 + }, + { + "id":2188, + "weight":3.0 + }, + { + "id":2189, + "weight":4.0 + }, + { + "id":2190, + "weight":4.0 + }, + { + "id":2193, + "weight":4.0 + }, + { + "id":2194, + "weight":4.0 + }, + { + "id":2203, + "weight":4.0 + }, + { + "id":2204, + "weight":4.0 + }, + { + "id":2207, + "weight":4.0 + }, + { + "id":2208, + "weight":4.0 + }, + { + "id":2211, + "weight":4.0 + }, + { + "id":2212, + "weight":4.0 + }, + { + "id":2215, + "weight":4.0 + }, + { + "id":2216, + "weight":4.0 + }, + { + "id":2217, + "weight":2.0 + }, + { + "id":2218, + "weight":2.0 + }, + { + "id":2219, + "weight":2.0 + }, + { + "id":2220, + "weight":2.0 + }, + { + "id":2221, + "weight":2.0 + }, + { + "id":2222, + "weight":2.0 + }, + { + "id":2223, + "weight":2.0 + }, + { + "id":2224, + "weight":2.0 + }, + { + "id":2225, + "weight":2.0 + }, + { + "id":2226, + "weight":2.0 + }, + { + "id":2227, + "weight":2.0 + }, + { + "id":2228, + "weight":2.0 + }, + { + "id":2229, + "weight":2.0 + }, + { + "id":2230, + "weight":2.0 + }, + { + "id":2231, + "weight":2.0 + }, + { + "id":2232, + "weight":2.0 + }, + { + "id":2233, + "weight":2.0 + }, + { + "id":2234, + "weight":2.0 + }, + { + "id":2235, + "weight":2.0 + }, + { + "id":2236, + "weight":2.0 + }, + { + "id":2237, + "weight":2.0 + }, + { + "id":2238, + "weight":2.0 + }, + { + "id":2239, + "weight":2.0 + }, + { + "id":2240, + "weight":2.0 + }, + { + "id":2241, + "weight":2.0 + }, + { + "id":2242, + "weight":2.0 + }, + { + "id":2243, + "weight":2.0 + }, + { + "id":2244, + "weight":2.0 + }, + { + "id":2245, + "weight":4.0 + }, + { + "id":2246, + "weight":4.0 + }, + { + "id":2251, + "weight":4.0 + }, + { + "id":2252, + "weight":4.0 + }, + { + "id":2257, + "weight":4.0 + }, + { + "id":2258, + "weight":4.0 + }, + { + "id":2259, + "weight":2.0 + }, + { + "id":2260, + "weight":2.0 + }, + { + "id":2275, + "weight":4.0 + }, + { + "id":2276, + "weight":4.0 + }, + { + "id":2279, + "weight":4.0 + }, + { + "id":2280, + "weight":4.0 + }, + { + "id":2281, + "weight":2.0 + }, + { + "id":2282, + "weight":2.0 + }, + { + "id":2283, + "weight":1.0 + }, + { + "id":2284, + "weight":1.0 + }, + { + "id":2309, + "weight":5.0 + }, + { + "id":2310, + "weight":5.0 + }, + { + "id":2313, + "weight":1.0 + }, + { + "id":2314, + "weight":1.0 + }, + { + "id":2317, + "weight":5.0 + }, + { + "id":2318, + "weight":5.0 + }, + { + "id":2319, + "weight":5.0 + }, + { + "id":2320, + "weight":5.0 + }, + { + "id":2321, + "weight":5.0 + }, + { + "id":2322, + "weight":5.0 + }, + { + "id":2337, + "weight":2.0 + }, + { + "id":2338, + "weight":2.0 + }, + { + "id":2339, + "weight":1.0 + }, + { + "id":2340, + "weight":1.0 + }, + { + "id":2341, + "weight":25.0 + }, + { + "id":2342, + "weight":25.0 + }, + { + "id":2343, + "weight":25.0 + }, + { + "id":2344, + "weight":25.0 + }, + { + "id":2347, + "weight":9.0 + }, + { + "id":2348, + "weight":9.0 + }, + { + "id":2349, + "weight":18.0 + }, + { + "id":2350, + "weight":18.0 + }, + { + "id":2351, + "weight":18.0 + }, + { + "id":2352, + "weight":18.0 + }, + { + "id":2353, + "weight":181.0 + }, + { + "id":2354, + "weight":181.0 + }, + { + "id":2355, + "weight":181.0 + }, + { + "id":2356, + "weight":181.0 + }, + { + "id":2357, + "weight":181.0 + }, + { + "id":2358, + "weight":181.0 + }, + { + "id":2359, + "weight":16.0 + }, + { + "id":2360, + "weight":16.0 + }, + { + "id":2361, + "weight":204.0 + }, + { + "id":2362, + "weight":204.0 + }, + { + "id":2363, + "weight":2.0 + }, + { + "id":2364, + "weight":2.0 + }, + { + "id":2365, + "weight":2.0 + }, + { + "id":2366, + "weight":2.0 + }, + { + "id":2367, + "weight":2.0 + }, + { + "id":2368, + "weight":2.0 + }, + { + "id":2369, + "weight":2.0 + }, + { + "id":2372, + "weight":30.0 + }, + { + "id":2376, + "weight":10.0 + }, + { + "id":2385, + "weight":1.0 + }, + { + "id":2386, + "weight":4.0 + }, + { + "id":2391, + "weight":1.0 + }, + { + "id":2392, + "weight":1.0 + }, + { + "id":2397, + "weight":2.0 + }, + { + "id":2402, + "weight":18.0, + "bonuses":{ + "attackStab":9, + "attackSlash":14, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "defenceMagic":1, + "strengthBonus":12 + } + }, + { + "id":2405, + "weight":9.0 + }, + { + "id":2412, + "weight":4.0, + "bonuses":{ + "attackMagic":10, + "defenceStab":1, + "defenceSlash":1, + "defenceCrush":2, + "defenceMagic":10 + } + }, + { + "id":2413, + "weight":4.0, + "bonuses":{ + "attackMagic":10, + "defenceStab":1, + "defenceSlash":1, + "defenceCrush":2, + "defenceMagic":10 + } + }, + { + "id":2414, + "weight":4.0, + "bonuses":{ + "attackMagic":10, + "defenceStab":1, + "defenceSlash":1, + "defenceCrush":2, + "defenceMagic":10 + } + }, + { + "id":2415, + "weight":22.0, + "bonuses":{ + "attackStab":-1, + "attackSlash":-1, + "attackCrush":6, + "attackMagic":6, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":6, + "prayerBonus":20 + } + }, + { + "id":2416, + "weight":2.0, + "bonuses":{ + "attackStab":-1, + "attackSlash":-1, + "attackCrush":6, + "attackMagic":6, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":6, + "prayerBonus":20 + } + }, + { + "id":2417, + "weight":22.0, + "bonuses":{ + "attackStab":-1, + "attackSlash":-1, + "attackCrush":6, + "attackMagic":6, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":6, + "prayerBonus":20 + } + }, + { + "id":2420, + "weight":4.0 + }, + { + "id":2425, + "weight":4.0 + }, + { + "id":2430, + "weight":30.0 + }, + { + "id":2431, + "weight":30.0 + }, + { + "id":2438, + "weight":3.0 + }, + { + "id":2439, + "weight":3.0 + }, + { + "id":2450, + "weight":5.0 + }, + { + "id":2451, + "weight":5.0 + }, + { + "id":2478, + "weight":5.0 + }, + { + "id":2479, + "weight":5.0 + }, + { + "id":2480, + "weight":4.0 + }, + { + "id":2487, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":9, + "defenceStab":4, + "defenceSlash":3, + "defenceCrush":5, + "defenceMagic":4 + } + }, + { + "id":2488, + "weight":2.0 + }, + { + "id":2489, + "weight":25.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":10, + "defenceStab":5, + "defenceSlash":4, + "defenceCrush":6, + "defenceMagic":6 + } + }, + { + "id":2490, + "weight":25.0 + }, + { + "id":2491, + "weight":25.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":11, + "defenceStab":6, + "defenceSlash":5, + "defenceCrush":7, + "defenceMagic":8 + } + }, + { + "id":2492, + "weight":25.0 + }, + { + "id":2493, + "weight":54.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":11, + "defenceStab":25, + "defenceSlash":19, + "defenceCrush":27, + "defenceMagic":14, + "defenceRange":25 + } + }, + { + "id":2494, + "weight":54.0 + }, + { + "id":2495, + "weight":54.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":14, + "defenceStab":28, + "defenceSlash":22, + "defenceCrush":30, + "defenceMagic":20, + "defenceRange":28 + } + }, + { + "id":2496, + "weight":54.0 + }, + { + "id":2497, + "weight":54.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":31, + "defenceSlash":25, + "defenceCrush":33, + "defenceMagic":28, + "defenceRange":31 + } + }, + { + "id":2498, + "weight":54.0 + }, + { + "id":2499, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":20, + "defenceStab":45, + "defenceSlash":37, + "defenceCrush":50, + "defenceMagic":30, + "defenceRange":45 + } + }, + { + "id":2500, + "weight":68.0 + }, + { + "id":2501, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":25, + "defenceStab":50, + "defenceSlash":42, + "defenceCrush":55, + "defenceMagic":40, + "defenceRange":50 + } + }, + { + "id":2502, + "weight":68.0 + }, + { + "id":2503, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":55, + "defenceSlash":47, + "defenceCrush":60, + "defenceMagic":50, + "defenceRange":55 + } + }, + { + "id":2504, + "weight":68.0 + }, + { + "id":2505, + "weight":31.0 + }, + { + "id":2506, + "weight":31.0 + }, + { + "id":2507, + "weight":3.0 + }, + { + "id":2508, + "weight":3.0 + }, + { + "id":2509, + "weight":31.0 + }, + { + "id":2510, + "weight":31.0 + }, + { + "id":2511, + "weight":2.0 + }, + { + "id":2512, + "weight":4.0 + }, + { + "id":2513, + "weight":68.0 + }, + { + "id":2514, + "weight":5.0 + }, + { + "id":2515, + "weight":5.0 + }, + { + "id":2516, + "weight":13.0 + }, + { + "id":2517, + "weight":13.0 + }, + { + "id":2528, + "weight":1.0 + }, + { + "id":2529, + "weight":5.0 + }, + { + "id":2530, + "weight":5.0 + }, + { + "id":2531, + "weight":5.0 + }, + { + "id":2574, + "weight":2.0 + }, + { + "id":2575, + "weight":1.0 + }, + { + "id":2577, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":8, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":4, + "defenceMagic":2 + } + }, + { + "id":2578, + "weight":2.0 + }, + { + "id":2579, + "weight":1.0, + "bonuses":{ + "attackMagic":4 + } + }, + { + "id":2580, + "weight":1.0 + }, + { + "id":2581, + "weight":2.0, + "bonuses":{ + "attackRange":8, + "defenceStab":4, + "defenceSlash":6, + "defenceCrush":8, + "defenceMagic":4, + "defenceRange":4 + } + }, + { + "id":2582, + "weight":2.0 + }, + { + "id":2583, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":41, + "defenceSlash":40, + "defenceCrush":30, + "defenceMagic":-6, + "defenceRange":40 + } + }, + { + "id":2584, + "weight":907.0 + }, + { + "id":2585, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20 + } + }, + { + "id":2586, + "weight":9.0 + }, + { + "id":2587, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":12, + "defenceSlash":13, + "defenceCrush":10, + "defenceMagic":-1, + "defenceRange":12 + } + }, + { + "id":2588, + "weight":2.0 + }, + { + "id":2589, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":2590, + "weight":5.0 + }, + { + "id":2591, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":41, + "defenceSlash":40, + "defenceCrush":30, + "defenceMagic":-6, + "defenceRange":40 + } + }, + { + "id":2592, + "weight":907.0 + }, + { + "id":2593, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20 + } + }, + { + "id":2594, + "weight":9.0 + }, + { + "id":2595, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":12, + "defenceSlash":13, + "defenceCrush":10, + "defenceMagic":-1, + "defenceRange":12 + } + }, + { + "id":2597, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":2598, + "weight":5.0 + }, + { + "id":2599, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":65, + "defenceSlash":63, + "defenceCrush":55, + "defenceMagic":-6, + "defenceRange":63 + } + }, + { + "id":2600, + "weight":907.0 + }, + { + "id":2601, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":2602, + "weight":10.0 + }, + { + "id":2603, + "weight":58.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":27, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":2604, + "weight":58.0 + }, + { + "id":2605, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":19, + "defenceSlash":21, + "defenceCrush":16, + "defenceMagic":-1, + "defenceRange":19 + } + }, + { + "id":2606, + "weight":27.0 + }, + { + "id":2607, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":65, + "defenceSlash":63, + "defenceCrush":55, + "defenceMagic":-6, + "defenceRange":63 + } + }, + { + "id":2608, + "weight":907.0 + }, + { + "id":2609, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":2610, + "weight":10.0 + }, + { + "id":2611, + "weight":6.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":27, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":2612, + "weight":6.0 + }, + { + "id":2613, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":19, + "defenceSlash":21, + "defenceCrush":16, + "defenceMagic":-1, + "defenceRange":19 + } + }, + { + "id":2614, + "weight":27.0 + }, + { + "id":2615, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":2616, + "weight":907.0 + }, + { + "id":2617, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":2618, + "weight":9.0 + }, + { + "id":2619, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":2620, + "weight":2.0 + }, + { + "id":2621, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":2622, + "weight":5.0 + }, + { + "id":2623, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":2624, + "weight":907.0 + }, + { + "id":2625, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":2626, + "weight":9.0 + }, + { + "id":2627, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":2628, + "weight":27.0 + }, + { + "id":2629, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":2630, + "weight":5.0 + }, + { + "id":2653, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":2654, + "weight":9.0 + }, + { + "id":2655, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":2656, + "weight":9.0 + }, + { + "id":2657, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":2658, + "weight":2.0 + }, + { + "id":2659, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":2660, + "weight":5.0 + }, + { + "id":2661, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":2662, + "weight":907.0 + }, + { + "id":2663, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":2664, + "weight":9.0 + }, + { + "id":2665, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":2666, + "weight":2.0 + }, + { + "id":2667, + "weight":54.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":2668, + "weight":54.0 + }, + { + "id":2669, + "weight":907.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":2670, + "weight":907.0 + }, + { + "id":2671, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":2672, + "weight":9.0 + }, + { + "id":2673, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":2674, + "weight":2.0 + }, + { + "id":2675, + "weight":54.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":2676, + "weight":54.0 + }, + { + "id":2714, + "weight":5.0 + }, + { + "id":2715, + "weight":5.0 + }, + { + "id":2717, + "weight":5.0 + }, + { + "id":2718, + "weight":5.0 + }, + { + "id":2720, + "weight":5.0 + }, + { + "id":2721, + "weight":5.0 + }, + { + "id":2724, + "weight":5.0 + }, + { + "id":2726, + "weight":5.0 + }, + { + "id":2728, + "weight":5.0 + }, + { + "id":2730, + "weight":5.0 + }, + { + "id":2732, + "weight":5.0 + }, + { + "id":2734, + "weight":5.0 + }, + { + "id":2736, + "weight":5.0 + }, + { + "id":2738, + "weight":5.0 + }, + { + "id":2740, + "weight":5.0 + }, + { + "id":2742, + "weight":5.0 + }, + { + "id":2744, + "weight":5.0 + }, + { + "id":2746, + "weight":5.0 + }, + { + "id":2748, + "weight":5.0 + }, + { + "id":2775, + "weight":5.0 + }, + { + "id":2777, + "weight":5.0 + }, + { + "id":2779, + "weight":5.0 + }, + { + "id":2781, + "weight":5.0 + }, + { + "id":2784, + "weight":5.0 + }, + { + "id":2787, + "weight":5.0 + }, + { + "id":2789, + "weight":5.0 + }, + { + "id":2791, + "weight":5.0 + }, + { + "id":2802, + "weight":5.0 + }, + { + "id":2804, + "weight":5.0 + }, + { + "id":2806, + "weight":5.0 + }, + { + "id":2808, + "weight":5.0 + }, + { + "id":2810, + "weight":5.0 + }, + { + "id":2812, + "weight":5.0 + }, + { + "id":2814, + "weight":5.0 + }, + { + "id":2816, + "weight":5.0 + }, + { + "id":2818, + "weight":5.0 + }, + { + "id":2820, + "weight":5.0 + }, + { + "id":2822, + "weight":5.0 + }, + { + "id":2824, + "weight":5.0 + }, + { + "id":2826, + "weight":5.0 + }, + { + "id":2828, + "weight":5.0 + }, + { + "id":2830, + "weight":5.0 + }, + { + "id":2859, + "weight":5.0 + }, + { + "id":2860, + "weight":5.0 + }, + { + "id":2862, + "weight":1.0 + }, + { + "id":2863, + "weight":1.0 + }, + { + "id":2875, + "weight":7.0 + }, + { + "id":2876, + "weight":10.0 + }, + { + "id":2877, + "weight":10.0 + }, + { + "id":2878, + "weight":10.0 + }, + { + "id":2879, + "weight":10.0 + }, + { + "id":2882, + "weight":10.0 + }, + { + "id":2883, + "weight":1.0 + }, + { + "id":2890, + "weight":2.0, + "bonuses":{ + "defenceMagic":6 + } + }, + { + "id":2891, + "weight":2.0 + }, + { + "id":2892, + "weight":22.0 + }, + { + "id":2893, + "weight":18.0 + }, + { + "id":2894, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":2896, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":2897, + "weight":1.0 + }, + { + "id":2900, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":2902, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":2904, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":2906, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":2907, + "weight":1.0 + }, + { + "id":2910, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":2912, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":2914, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":2916, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":2917, + "weight":1.0 + }, + { + "id":2920, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":2922, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":2924, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":2926, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":2927, + "weight":1.0 + }, + { + "id":2930, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":2932, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":2934, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":2936, + "weight":1.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":2937, + "weight":1.0 + }, + { + "id":2940, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":2942, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":2949, + "weight":9.0 + }, + { + "id":2952, + "weight":4.0 + }, + { + "id":2953, + "weight":3.0 + }, + { + "id":2954, + "weight":3.0 + }, + { + "id":2959, + "weight":4.0 + }, + { + "id":2960, + "weight":4.0 + }, + { + "id":2961, + "weight":16.0, + "bonuses":{ + "strengthBonus":1, + "prayerBonus":5 + } + }, + { + "id":2962, + "weight":16.0 + }, + { + "id":2963, + "weight":15.0, + "bonuses":{ + "strengthBonus":1, + "prayerBonus":5 + } + }, + { + "id":2964, + "weight":4.0 + }, + { + "id":2965, + "weight":4.0 + }, + { + "id":2966, + "weight":2.0 + }, + { + "id":2974, + "weight":1.0 + }, + { + "id":2975, + "weight":1.0 + }, + { + "id":2976, + "weight":4.0 + }, + { + "id":2977, + "weight":4.0 + }, + { + "id":2978, + "weight":33.0 + }, + { + "id":2979, + "weight":33.0 + }, + { + "id":2980, + "weight":33.0 + }, + { + "id":2981, + "weight":33.0 + }, + { + "id":2982, + "weight":33.0 + }, + { + "id":2983, + "weight":33.0 + }, + { + "id":2984, + "weight":33.0 + }, + { + "id":2985, + "weight":33.0 + }, + { + "id":2986, + "weight":33.0 + }, + { + "id":2987, + "weight":33.0 + }, + { + "id":2988, + "weight":33.0 + }, + { + "id":2989, + "weight":33.0 + }, + { + "id":2990, + "weight":33.0 + }, + { + "id":2991, + "weight":33.0 + }, + { + "id":2992, + "weight":33.0 + }, + { + "id":2993, + "weight":33.0 + }, + { + "id":2994, + "weight":33.0 + }, + { + "id":2995, + "weight":33.0 + }, + { + "id":3002, + "weight":3.0 + }, + { + "id":3003, + "weight":3.0 + }, + { + "id":3032, + "weight":3.0 + }, + { + "id":3033, + "weight":3.0 + }, + { + "id":3034, + "weight":3.0 + }, + { + "id":3035, + "weight":3.0 + }, + { + "id":3036, + "weight":3.0 + }, + { + "id":3037, + "weight":3.0 + }, + { + "id":3038, + "weight":3.0 + }, + { + "id":3039, + "weight":3.0 + }, + { + "id":3053, + "weight":22.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":28, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":3054, + "weight":2.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":28, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":3055, + "weight":22.0 + }, + { + "id":3056, + "weight":2.0 + }, + { + "id":3062, + "weight":1.0 + }, + { + "id":3093, + "bonuses":{ + "attackRange":7 + } + }, + { + "id":3094, + "bonuses":{ + "attackRange":7 + } + }, + { + "id":3095, + "weight":9.0, + "bonuses":{ + "attackStab":3, + "attackSlash":4, + "attackCrush":-4, + "defenceStab":1, + "defenceSlash":2, + "defenceCrush":1, + "strengthBonus":5 + } + }, + { + "id":3096, + "weight":9.0, + "bonuses":{ + "attackStab":4, + "attackSlash":6, + "attackCrush":-4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "strengthBonus":7 + } + }, + { + "id":3097, + "weight":9.0, + "bonuses":{ + "attackStab":8, + "attackSlash":11, + "attackCrush":-4, + "defenceStab":3, + "defenceSlash":6, + "defenceCrush":2, + "strengthBonus":12 + } + }, + { + "id":3098, + "weight":6.0, + "bonuses":{ + "attackStab":10, + "attackSlash":14, + "attackCrush":-4, + "defenceStab":4, + "defenceSlash":7, + "defenceCrush":2, + "strengthBonus":14 + } + }, + { + "id":3099, + "weight":9.0, + "bonuses":{ + "attackStab":11, + "attackSlash":16, + "attackCrush":-4, + "defenceStab":4, + "defenceSlash":8, + "defenceCrush":2, + "strengthBonus":17 + } + }, + { + "id":3100, + "bonuses":{ + "attackStab":18, + "attackSlash":23, + "attackCrush":-4, + "defenceStab":6, + "defenceSlash":12, + "defenceCrush":3, + "strengthBonus":24 + } + }, + { + "id":3101, + "weight":9.0 + }, + { + "id":3105, + "weight":3.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2, + "strengthBonus":2 + } + }, + { + "id":3106, + "weight":3.0 + }, + { + "id":3107, + "weight":3.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2, + "strengthBonus":2 + } + }, + { + "id":3108, + "weight":4.0 + }, + { + "id":3115, + "weight":9.0 + }, + { + "id":3116, + "weight":9.0 + }, + { + "id":3117, + "weight":9.0 + }, + { + "id":3118, + "weight":6.0 + }, + { + "id":3119, + "weight":9.0 + }, + { + "id":3121, + "weight":9.0 + }, + { + "id":3122, + "weight":68.0, + "bonuses":{ + "attackMagic":-12, + "attackRange":-8, + "defenceStab":40, + "defenceSlash":42, + "defenceCrush":38, + "defenceRange":65 + } + }, + { + "id":3123, + "weight":15.0 + }, + { + "id":3124, + "weight":15.0 + }, + { + "id":3125, + "weight":8.0 + }, + { + "id":3126, + "weight":8.0 + }, + { + "id":3127, + "weight":1.0 + }, + { + "id":3128, + "weight":1.0 + }, + { + "id":3129, + "weight":1.0 + }, + { + "id":3130, + "weight":1.0 + }, + { + "id":3131, + "weight":1.0 + }, + { + "id":3132, + "weight":1.0 + }, + { + "id":3133, + "weight":1.0 + }, + { + "id":3134, + "weight":68.0 + }, + { + "id":3138, + "weight":5.0 + }, + { + "id":3139, + "weight":5.0 + }, + { + "id":3140, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":81, + "defenceSlash":93, + "defenceCrush":98, + "defenceMagic":-3, + "defenceRange":82 + } + }, + { + "id":3141, + "weight":68.0 + }, + { + "id":3142, + "weight":5.0 + }, + { + "id":3143, + "weight":5.0 + }, + { + "id":3144, + "weight":5.0 + }, + { + "id":3145, + "weight":5.0 + }, + { + "id":3146, + "weight":5.0 + }, + { + "id":3147, + "weight":5.0 + }, + { + "id":3151, + "weight":99.0 + }, + { + "id":3157, + "weight":3.0 + }, + { + "id":3158, + "weight":3.0 + }, + { + "id":3159, + "weight":3.0 + }, + { + "id":3160, + "weight":3.0 + }, + { + "id":3166, + "weight":1.0 + }, + { + "id":3169, + "weight":1.0 + }, + { + "id":3170, + "weight":22.0, + "bonuses":{ + "attackStab":5, + "attackSlash":5, + "attackCrush":5, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":7 + } + }, + { + "id":3171, + "weight":22.0, + "bonuses":{ + "attackStab":8, + "attackSlash":8, + "attackCrush":8, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":10 + } + }, + { + "id":3172, + "weight":22.0, + "bonuses":{ + "attackStab":12, + "attackSlash":12, + "attackCrush":12, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":12 + } + }, + { + "id":3173, + "weight":18.0, + "bonuses":{ + "attackStab":17, + "attackSlash":17, + "attackCrush":17, + "defenceStab":1, + "defenceSlash":1, + "prayerBonus":18 + } + }, + { + "id":3174, + "weight":2.0, + "bonuses":{ + "attackStab":24, + "attackSlash":24, + "attackCrush":24, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":28 + } + }, + { + "id":3175, + "weight":22.0, + "bonuses":{ + "attackStab":36, + "attackSlash":36, + "attackCrush":36, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":42 + } + }, + { + "id":3176, + "weight":2.0, + "bonuses":{ + "attackStab":55, + "attackSlash":55, + "attackCrush":55, + "defenceStab":5, + "defenceSlash":5, + "defenceCrush":5, + "defenceMagic":5, + "defenceRange":5, + "strengthBonus":60 + } + }, + { + "id":3177, + "weight":4.0 + }, + { + "id":3178, + "weight":4.0 + }, + { + "id":3179, + "weight":5.0 + }, + { + "id":3180, + "weight":5.0 + }, + { + "id":3181, + "weight":5.0 + }, + { + "id":3182, + "weight":5.0 + }, + { + "id":3183, + "weight":5.0 + }, + { + "id":3184, + "weight":5.0 + }, + { + "id":3185, + "weight":5.0 + }, + { + "id":3186, + "weight":5.0 + }, + { + "id":3187, + "weight":5.0 + }, + { + "id":3188, + "weight":10.0 + }, + { + "id":3189, + "weight":10.0 + }, + { + "id":3190, + "weight":3.0, + "bonuses":{ + "attackStab":7, + "attackSlash":8, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":1, + "defenceCrush":2, + "strengthBonus":8 + } + }, + { + "id":3191, + "weight":3.0 + }, + { + "id":3192, + "weight":31.0, + "bonuses":{ + "attackStab":9, + "attackSlash":12, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":1, + "defenceCrush":2, + "strengthBonus":12 + } + }, + { + "id":3193, + "weight":31.0 + }, + { + "id":3194, + "weight":3.0, + "bonuses":{ + "attackStab":14, + "attackSlash":19, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":1, + "defenceCrush":2, + "strengthBonus":20 + } + }, + { + "id":3195, + "weight":3.0 + }, + { + "id":3196, + "weight":3.0, + "bonuses":{ + "attackStab":19, + "attackSlash":25, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":2, + "defenceCrush":3, + "strengthBonus":24 + } + }, + { + "id":3197, + "weight":3.0 + }, + { + "id":3198, + "weight":27.0, + "bonuses":{ + "attackStab":22, + "attackSlash":28, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":2, + "defenceCrush":4, + "strengthBonus":29 + } + }, + { + "id":3199, + "weight":27.0 + }, + { + "id":3200, + "weight":36.0, + "bonuses":{ + "attackStab":28, + "attackSlash":41, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":3, + "defenceCrush":4, + "strengthBonus":43 + } + }, + { + "id":3201, + "weight":36.0 + }, + { + "id":3202, + "weight":3.0, + "bonuses":{ + "attackStab":48, + "attackSlash":67, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":4, + "defenceCrush":5, + "strengthBonus":68 + } + }, + { + "id":3203, + "weight":3.0 + }, + { + "id":3204, + "weight":31.0, + "bonuses":{ + "attackStab":70, + "attackSlash":95, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":4, + "defenceCrush":5, + "strengthBonus":89 + } + }, + { + "id":3205, + "weight":31.0 + }, + { + "id":3209, + "weight":6.0 + }, + { + "id":3210, + "weight":5.0 + }, + { + "id":3211, + "weight":22.0 + }, + { + "id":3212, + "weight":22.0 + }, + { + "id":3213, + "weight":22.0 + }, + { + "id":3215, + "weight":5.0 + }, + { + "id":3216, + "weight":10.0 + }, + { + "id":3217, + "weight":10.0 + }, + { + "id":3218, + "weight":32.0 + }, + { + "id":3219, + "weight":32.0 + }, + { + "id":3220, + "weight":32.0 + }, + { + "id":3221, + "weight":36.0 + }, + { + "id":3225, + "weight":5.0 + }, + { + "id":3226, + "weight":1.0 + }, + { + "id":3227, + "weight":1.0 + }, + { + "id":3230, + "weight":2.0 + }, + { + "id":3231, + "weight":4.0 + }, + { + "id":3232, + "weight":4.0 + }, + { + "id":3233, + "weight":4.0 + }, + { + "id":3234, + "weight":4.0 + }, + { + "id":3235, + "weight":4.0 + }, + { + "id":3236, + "weight":4.0 + }, + { + "id":3237, + "weight":4.0 + }, + { + "id":3238, + "weight":4.0 + }, + { + "id":3239, + "weight":1.0 + }, + { + "id":3240, + "weight":1.0 + }, + { + "id":3327, + "weight":2.0 + }, + { + "id":3328, + "weight":2.0 + }, + { + "id":3329, + "weight":2.0 + }, + { + "id":3330, + "weight":2.0 + }, + { + "id":3333, + "weight":19.0 + }, + { + "id":3334, + "weight":19.0 + }, + { + "id":3335, + "weight":2.0 + }, + { + "id":3336, + "weight":2.0 + }, + { + "id":3337, + "weight":2.0 + }, + { + "id":3338, + "weight":2.0 + }, + { + "id":3339, + "weight":2.0 + }, + { + "id":3340, + "weight":2.0 + }, + { + "id":3343, + "weight":19.0 + }, + { + "id":3344, + "weight":19.0 + }, + { + "id":3345, + "weight":10.0 + }, + { + "id":3346, + "weight":10.0 + }, + { + "id":3347, + "weight":10.0 + }, + { + "id":3348, + "weight":10.0 + }, + { + "id":3349, + "weight":10.0 + }, + { + "id":3350, + "weight":10.0 + }, + { + "id":3353, + "weight":10.0 + }, + { + "id":3354, + "weight":10.0 + }, + { + "id":3355, + "weight":10.0 + }, + { + "id":3356, + "weight":10.0 + }, + { + "id":3357, + "weight":10.0 + }, + { + "id":3358, + "weight":10.0 + }, + { + "id":3359, + "weight":10.0 + }, + { + "id":3360, + "weight":10.0 + }, + { + "id":3363, + "weight":2.0 + }, + { + "id":3364, + "weight":2.0 + }, + { + "id":3365, + "weight":2.0 + }, + { + "id":3366, + "weight":2.0 + }, + { + "id":3373, + "weight":45.0 + }, + { + "id":3374, + "weight":45.0 + }, + { + "id":3379, + "weight":2.0 + }, + { + "id":3380, + "weight":2.0 + }, + { + "id":3381, + "weight":2.0 + }, + { + "id":3382, + "weight":2.0 + }, + { + "id":3384, + "weight":5.0 + }, + { + "id":3385, + "weight":9.0, + "bonuses":{ + "attackMagic":3, + "attackRange":-2, + "defenceStab":10, + "defenceSlash":9, + "defenceCrush":11, + "defenceMagic":3 + } + }, + { + "id":3386, + "weight":9.0 + }, + { + "id":3387, + "weight":45.0, + "bonuses":{ + "attackMagic":10, + "attackRange":-10, + "defenceStab":36, + "defenceSlash":26, + "defenceCrush":42, + "defenceMagic":15 + } + }, + { + "id":3388, + "weight":45.0 + }, + { + "id":3389, + "weight":36.0, + "bonuses":{ + "attackMagic":7, + "attackRange":-7, + "defenceStab":22, + "defenceSlash":20, + "defenceCrush":25, + "defenceMagic":10 + } + }, + { + "id":3390, + "weight":36.0 + }, + { + "id":3391, + "weight":9.0, + "bonuses":{ + "attackMagic":2, + "attackRange":-1, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":4, + "defenceMagic":2 + } + }, + { + "id":3392, + "weight":9.0 + }, + { + "id":3393, + "weight":9.0, + "bonuses":{ + "attackMagic":2, + "attackRange":-1, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":4, + "defenceMagic":2 + } + }, + { + "id":3394, + "weight":9.0 + }, + { + "id":3396, + "weight":135.0 + }, + { + "id":3397, + "weight":135.0 + }, + { + "id":3400, + "weight":13.0 + }, + { + "id":3401, + "weight":13.0 + }, + { + "id":3402, + "weight":13.0 + }, + { + "id":3403, + "weight":13.0 + }, + { + "id":3409, + "weight":5.0 + }, + { + "id":3411, + "weight":5.0 + }, + { + "id":3413, + "weight":5.0 + }, + { + "id":3415, + "weight":5.0 + }, + { + "id":3420, + "weight":13.0 + }, + { + "id":3421, + "weight":13.0 + }, + { + "id":3442, + "weight":13.0 + }, + { + "id":3443, + "weight":13.0 + }, + { + "id":3444, + "weight":13.0 + }, + { + "id":3445, + "weight":13.0 + }, + { + "id":3446, + "weight":1.0 + }, + { + "id":3447, + "weight":1.0 + }, + { + "id":3448, + "weight":13.0 + }, + { + "id":3449, + "weight":13.0 + }, + { + "id":3470, + "weight":10.0 + }, + { + "id":3471, + "weight":10.0 + }, + { + "id":3472, + "weight":8.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20 + } + }, + { + "id":3473, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20 + } + }, + { + "id":3474, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":3475, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":3476, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3477, + "weight":8.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3478, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3479, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3480, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3481, + "weight":10.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":3482, + "weight":10.0 + }, + { + "id":3483, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3484, + "weight":9.0 + }, + { + "id":3485, + "weight":90.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":3486, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":3487, + "weight":2.0 + }, + { + "id":3488, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":3489, + "weight":5.0 + }, + { + "id":3511, + "weight":5.0 + }, + { + "id":3517, + "weight":5.0 + }, + { + "id":3519, + "weight":5.0 + }, + { + "id":3521, + "weight":5.0 + }, + { + "id":3523, + "weight":5.0 + }, + { + "id":3527, + "weight":5.0 + }, + { + "id":3529, + "weight":5.0 + }, + { + "id":3531, + "weight":5.0 + }, + { + "id":3533, + "weight":5.0 + }, + { + "id":3535, + "weight":5.0 + }, + { + "id":3537, + "weight":5.0 + }, + { + "id":3539, + "weight":5.0 + }, + { + "id":3541, + "weight":5.0 + }, + { + "id":3543, + "weight":5.0 + }, + { + "id":3545, + "weight":5.0 + }, + { + "id":3547, + "weight":5.0 + }, + { + "id":3549, + "weight":5.0 + }, + { + "id":3551, + "weight":5.0 + }, + { + "id":3553, + "weight":5.0 + }, + { + "id":3555, + "weight":5.0 + }, + { + "id":3557, + "weight":5.0 + }, + { + "id":3559, + "weight":5.0 + }, + { + "id":3561, + "weight":5.0 + }, + { + "id":3563, + "weight":5.0 + }, + { + "id":3581, + "weight":5.0 + }, + { + "id":3583, + "weight":5.0 + }, + { + "id":3585, + "weight":5.0 + }, + { + "id":3587, + "weight":5.0 + }, + { + "id":3589, + "weight":5.0 + }, + { + "id":3591, + "weight":5.0 + }, + { + "id":3593, + "weight":5.0 + }, + { + "id":3595, + "weight":5.0 + }, + { + "id":3597, + "weight":5.0 + }, + { + "id":3600, + "weight":5.0 + }, + { + "id":3603, + "weight":5.0 + }, + { + "id":3667, + "weight":4.0 + }, + { + "id":3668, + "weight":8.0 + }, + { + "id":3669, + "weight":9.0 + }, + { + "id":3670, + "weight":9.0 + }, + { + "id":3671, + "weight":9.0 + }, + { + "id":3672, + "weight":9.0 + }, + { + "id":3673, + "weight":8.0 + }, + { + "id":3674, + "weight":9.0 + }, + { + "id":3675, + "weight":9.0 + }, + { + "id":3676, + "weight":9.0 + }, + { + "id":3677, + "weight":90.0 + }, + { + "id":3678, + "weight":13.0 + }, + { + "id":3679, + "weight":4.0 + }, + { + "id":3680, + "weight":4.0 + }, + { + "id":3681, + "weight":4.0 + }, + { + "id":3682, + "weight":4.0 + }, + { + "id":3683, + "weight":4.0 + }, + { + "id":3684, + "weight":4.0 + }, + { + "id":3685, + "weight":4.0 + }, + { + "id":3688, + "weight":1.0 + }, + { + "id":3689, + "weight":18.0 + }, + { + "id":3690, + "weight":18.0 + }, + { + "id":3691, + "weight":18.0 + }, + { + "id":3692, + "weight":1.0 + }, + { + "id":3694, + "weight":1.0 + }, + { + "id":3711, + "weight":20.0 + }, + { + "id":3712, + "weight":20.0 + }, + { + "id":3715, + "weight":4.0 + }, + { + "id":3716, + "weight":4.0 + }, + { + "id":3727, + "weight":1.0 + }, + { + "id":3732, + "weight":4.0 + }, + { + "id":3737, + "weight":1.0 + }, + { + "id":3748, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":19, + "defenceSlash":21, + "defenceCrush":16, + "defenceMagic":-1, + "defenceRange":19 + } + }, + { + "id":3749, + "weight":2.0, + "bonuses":{ + "attackStab":-5, + "attackSlash":-5, + "attackCrush":-5, + "attackMagic":-6, + "attackRange":6, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":10, + "defenceMagic":6, + "defenceRange":6 + } + }, + { + "id":3750, + "weight":2.0 + }, + { + "id":3751, + "weight":27.0, + "bonuses":{ + "attackMagic":-5, + "attackRange":-5, + "defenceStab":31, + "defenceSlash":29, + "defenceCrush":33, + "defenceRange":30, + "strengthBonus":3 + } + }, + { + "id":3752, + "weight":27.0 + }, + { + "id":3753, + "weight":27.0, + "bonuses":{ + "attackSlash":5, + "attackMagic":-5, + "attackRange":-5, + "defenceStab":31, + "defenceSlash":33, + "defenceCrush":29, + "defenceRange":30 + } + }, + { + "id":3754, + "weight":27.0 + }, + { + "id":3755, + "weight":27.0, + "bonuses":{ + "attackStab":-5, + "attackSlash":-5, + "attackCrush":-5, + "attackMagic":6, + "attackRange":-5, + "defenceStab":8, + "defenceSlash":10, + "defenceCrush":12, + "defenceMagic":6 + } + }, + { + "id":3756, + "weight":27.0 + }, + { + "id":3757, + "weight":18.0, + "bonuses":{ + "attackStab":6, + "attackSlash":29, + "attackCrush":-2, + "defenceSlash":1, + "strengthBonus":28 + } + }, + { + "id":3758, + "weight":22.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":27, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":3759, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3761, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3763, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3765, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3767, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":3769, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":3771, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":3773, + "bonuses":{ + "defenceCrush":2, + "defenceMagic":2 + } + }, + { + "id":3775, + "bonuses":{ + "defenceCrush":2, + "defenceMagic":2 + } + }, + { + "id":3777, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3779, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3781, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3783, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3785, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3787, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3789, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":3791, + "weight":5.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":3792, + "weight":5.0 + }, + { + "id":3793, + "weight":9.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":3794, + "weight":9.0 + }, + { + "id":3795, + "weight":9.0, + "bonuses":{ + "defenceSlash":2, + "defenceCrush":2 + } + }, + { + "id":3796, + "weight":9.0 + }, + { + "id":3798, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":3799, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2 + } + }, + { + "id":3801, + "weight":20.0 + }, + { + "id":3802, + "weight":20.0 + }, + { + "id":3803, + "weight":1.0 + }, + { + "id":3804, + "weight":1.0 + }, + { + "id":3839, + "weight":1.0, + "bonuses":{ + "prayerBonus":5 + } + }, + { + "id":3840, + "weight":1.0, + "bonuses":{ + "defenceStab":8, + "defenceSlash":8, + "defenceCrush":8, + "defenceMagic":8, + "defenceRange":8, + "prayerBonus":5 + } + }, + { + "id":3841, + "weight":1.0, + "bonuses":{ + "prayerBonus":5 + } + }, + { + "id":3842, + "weight":1.0, + "bonuses":{ + "attackStab":8, + "attackSlash":8, + "attackCrush":8, + "attackMagic":8, + "attackRange":8, + "prayerBonus":5 + } + }, + { + "id":3843, + "weight":1.0, + "bonuses":{ + "prayerBonus":5 + } + }, + { + "id":3844, + "weight":1.0, + "bonuses":{ + "attackStab":4, + "attackSlash":4, + "attackCrush":4, + "attackMagic":4, + "attackRange":4, + "defenceStab":4, + "defenceSlash":4, + "defenceCrush":4, + "defenceMagic":4, + "defenceRange":4, + "prayerBonus":5 + } + }, + { + "id":3847, + "weight":5.0 + }, + { + "id":3849, + "weight":5.0 + }, + { + "id":3899, + "weight":16.0 + }, + { + "id":3900, + "weight":4.0 + }, + { + "id":3901, + "weight":10.0 + }, + { + "id":3902, + "weight":4.0 + }, + { + "id":3903, + "weight":4.0 + }, + { + "id":4000, + "weight":4.0 + }, + { + "id":4002, + "weight":2.0 + }, + { + "id":4003, + "weight":4.0 + }, + { + "id":4006, + "weight":2.0 + }, + { + "id":4007, + "weight":2.0 + }, + { + "id":4011, + "weight":4.0 + }, + { + "id":4013, + "weight":4.0 + }, + { + "id":4015, + "weight":4.0 + }, + { + "id":4017, + "weight":4.0 + }, + { + "id":4019, + "weight":4.0 + }, + { + "id":4020, + "weight":1.0 + }, + { + "id":4021, + "weight":13.0 + }, + { + "id":4022, + "weight":13.0 + }, + { + "id":4023, + "weight":125.0 + }, + { + "id":4037, + "weight":2.0 + }, + { + "id":4038, + "weight":2.0 + }, + { + "id":4068, + "weight":1.0 + }, + { + "id":4069, + "weight":8.0 + }, + { + "id":4071, + "weight":1.0 + }, + { + "id":4076, + "weight":4.0 + }, + { + "id":4081, + "weight":6.0 + }, + { + "id":4087, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":68, + "defenceSlash":66, + "defenceCrush":63, + "defenceMagic":-4, + "defenceRange":65 + } + }, + { + "id":4088, + "weight":9.0 + }, + { + "id":4089, + "weight":4.0, + "bonuses":{ + "attackMagic":4, + "defenceMagic":4 + } + }, + { + "id":4090, + "weight":4.0 + }, + { + "id":4091, + "weight":27.0, + "bonuses":{ + "attackMagic":20, + "defenceMagic":20 + } + }, + { + "id":4092, + "weight":27.0 + }, + { + "id":4093, + "bonuses":{ + "attackMagic":15, + "defenceMagic":15 + } + }, + { + "id":4095, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":4096, + "weight":4.0 + }, + { + "id":4097, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":4098, + "weight":4.0 + }, + { + "id":4099, + "weight":4.0, + "bonuses":{ + "attackMagic":4, + "defenceMagic":4 + } + }, + { + "id":4100, + "weight":4.0 + }, + { + "id":4101, + "weight":27.0, + "bonuses":{ + "attackMagic":20, + "defenceMagic":20 + } + }, + { + "id":4102, + "weight":27.0 + }, + { + "id":4103, + "bonuses":{ + "attackMagic":15, + "defenceMagic":15 + } + }, + { + "id":4105, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":4106, + "weight":4.0 + }, + { + "id":4107, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":4108, + "weight":4.0 + }, + { + "id":4109, + "weight":4.0, + "bonuses":{ + "attackMagic":4, + "defenceMagic":4 + } + }, + { + "id":4110, + "weight":4.0 + }, + { + "id":4111, + "weight":27.0, + "bonuses":{ + "attackMagic":20, + "defenceMagic":20 + } + }, + { + "id":4112, + "weight":27.0 + }, + { + "id":4113, + "bonuses":{ + "attackMagic":15, + "defenceMagic":15 + } + }, + { + "id":4115, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":4116, + "weight":4.0 + }, + { + "id":4117, + "weight":4.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":4118, + "weight":4.0 + }, + { + "id":4119, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":1, + "defenceSlash":2 + } + }, + { + "id":4120, + "weight":13.0 + }, + { + "id":4121, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":4 + } + }, + { + "id":4122, + "weight":13.0 + }, + { + "id":4123, + "weight":1.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":5, + "defenceSlash":6, + "defenceCrush":7 + } + }, + { + "id":4124, + "weight":1.0 + }, + { + "id":4125, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":7, + "defenceSlash":8, + "defenceCrush":9 + } + }, + { + "id":4126, + "weight":13.0 + }, + { + "id":4127, + "weight":1.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":8, + "defenceSlash":9, + "defenceCrush":10 + } + }, + { + "id":4128, + "weight":1.0 + }, + { + "id":4129, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":10, + "defenceSlash":11, + "defenceCrush":12, + "strengthBonus":1 + } + }, + { + "id":4130, + "weight":13.0 + }, + { + "id":4131, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":12, + "defenceSlash":13, + "defenceCrush":14, + "strengthBonus":2 + } + }, + { + "id":4132, + "weight":13.0 + }, + { + "id":4151, + "weight":45.0, + "bonuses":{ + "attackSlash":82, + "strengthBonus":82 + } + }, + { + "id":4152, + "weight":45.0 + }, + { + "id":4153, + "weight":45.0, + "bonuses":{ + "attackCrush":81, + "strengthBonus":79 + } + }, + { + "id":4154, + "weight":45.0 + }, + { + "id":4156, + "weight":22.0, + "bonuses":{ + "defenceStab":10, + "defenceSlash":15, + "defenceCrush":5, + "defenceMagic":5, + "defenceRange":10 + } + }, + { + "id":4157, + "weight":22.0 + }, + { + "id":4158, + "weight":2.0, + "bonuses":{ + "attackStab":47, + "attackSlash":42, + "attackCrush":36, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":50 + } + }, + { + "id":4159, + "weight":2.0 + }, + { + "id":4162, + "weight":22.0 + }, + { + "id":4163, + "weight":22.0 + }, + { + "id":4164, + "weight":1.0 + }, + { + "id":4165, + "weight":1.0 + }, + { + "id":4166, + "weight":26.0 + }, + { + "id":4167, + "weight":26.0 + }, + { + "id":4168, + "weight":8.0 + }, + { + "id":4169, + "weight":8.0 + }, + { + "id":4170, + "weight":18.0, + "bonuses":{ + "attackStab":7, + "attackSlash":-1, + "attackCrush":25, + "attackMagic":12, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":4171, + "weight":18.0 + }, + { + "id":4177, + "weight":4.0 + }, + { + "id":4178, + "weight":45.0 + }, + { + "id":4180, + "weight":9.0 + }, + { + "id":4190, + "weight":1.0 + }, + { + "id":4191, + "weight":1.0 + }, + { + "id":4192, + "weight":1.0 + }, + { + "id":4193, + "weight":1.0 + }, + { + "id":4195, + "weight":2.0 + }, + { + "id":4197, + "weight":3.0 + }, + { + "id":4198, + "weight":3.0 + }, + { + "id":4210, + "weight":5.0 + }, + { + "id":4212, + "weight":18.0, + "bonuses":{ + "attackRange":100 + } + }, + { + "id":4213, + "weight":18.0 + }, + { + "id":4214, + "weight":18.0, + "bonuses":{ + "attackRange":100 + } + }, + { + "id":4215, + "weight":18.0, + "bonuses":{ + "attackRange":96 + } + }, + { + "id":4216, + "weight":18.0, + "bonuses":{ + "attackRange":92 + } + }, + { + "id":4217, + "weight":18.0, + "bonuses":{ + "attackRange":88 + } + }, + { + "id":4218, + "weight":18.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4219, + "weight":18.0, + "bonuses":{ + "attackRange":80 + } + }, + { + "id":4220, + "weight":18.0, + "bonuses":{ + "attackRange":76 + } + }, + { + "id":4221, + "weight":18.0, + "bonuses":{ + "attackRange":72 + } + }, + { + "id":4222, + "weight":18.0, + "bonuses":{ + "attackRange":68 + } + }, + { + "id":4223, + "weight":18.0, + "bonuses":{ + "attackRange":64 + } + }, + { + "id":4224, + "weight":2.0, + "bonuses":{ + "defenceStab":51, + "defenceSlash":54, + "defenceCrush":53, + "defenceRange":80 + } + }, + { + "id":4225, + "weight":2.0, + "bonuses":{ + "defenceStab":51, + "defenceSlash":54, + "defenceCrush":53, + "defenceRange":80 + } + }, + { + "id":4226, + "weight":2.0, + "bonuses":{ + "defenceStab":49, + "defenceSlash":52, + "defenceCrush":51, + "defenceRange":78 + } + }, + { + "id":4227, + "weight":2.0, + "bonuses":{ + "defenceStab":47, + "defenceSlash":50, + "defenceCrush":49, + "defenceRange":76 + } + }, + { + "id":4228, + "weight":2.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":47, + "defenceRange":74 + } + }, + { + "id":4229, + "weight":2.0, + "bonuses":{ + "defenceStab":43, + "defenceSlash":46, + "defenceCrush":45, + "defenceRange":72 + } + }, + { + "id":4230, + "weight":2.0, + "bonuses":{ + "defenceStab":41, + "defenceSlash":44, + "defenceCrush":43, + "defenceRange":70 + } + }, + { + "id":4231, + "weight":2.0, + "bonuses":{ + "defenceStab":39, + "defenceSlash":42, + "defenceCrush":41, + "defenceRange":68 + } + }, + { + "id":4232, + "weight":2.0, + "bonuses":{ + "defenceStab":37, + "defenceSlash":40, + "defenceCrush":39, + "defenceRange":66 + } + }, + { + "id":4233, + "weight":2.0, + "bonuses":{ + "defenceStab":35, + "defenceSlash":38, + "defenceCrush":37, + "defenceRange":64 + } + }, + { + "id":4234, + "weight":2.0, + "bonuses":{ + "defenceStab":33, + "defenceSlash":36, + "defenceCrush":35, + "defenceRange":62 + } + }, + { + "id":4235, + "weight":2.0 + }, + { + "id":4236, + "weight":2.0 + }, + { + "id":4237, + "weight":9.0 + }, + { + "id":4239, + "weight":9.0 + }, + { + "id":4240, + "weight":9.0 + }, + { + "id":4242, + "weight":1.0 + }, + { + "id":4243, + "weight":1.0 + }, + { + "id":4245, + "weight":1.0 + }, + { + "id":4246, + "weight":1.0 + }, + { + "id":4247, + "weight":23.0 + }, + { + "id":4248, + "weight":2.0 + }, + { + "id":4249, + "weight":1.0 + }, + { + "id":4255, + "weight":1.0 + }, + { + "id":4256, + "weight":1.0 + }, + { + "id":4257, + "weight":1.0 + }, + { + "id":4258, + "weight":1.0 + }, + { + "id":4259, + "weight":1.0 + }, + { + "id":4260, + "weight":1.0 + }, + { + "id":4261, + "weight":1.0 + }, + { + "id":4262, + "weight":1.0 + }, + { + "id":4263, + "weight":1.0 + }, + { + "id":4264, + "weight":1.0 + }, + { + "id":4265, + "weight":1.0 + }, + { + "id":4266, + "weight":1.0 + }, + { + "id":4267, + "weight":1.0 + }, + { + "id":4268, + "weight":1.0 + }, + { + "id":4269, + "weight":1.0 + }, + { + "id":4270, + "weight":1.0 + }, + { + "id":4271, + "weight":1.0 + }, + { + "id":4284, + "weight":1.0 + }, + { + "id":4285, + "weight":1.0 + }, + { + "id":4286, + "weight":3.0 + }, + { + "id":4287, + "weight":3.0 + }, + { + "id":4288, + "weight":3.0 + }, + { + "id":4289, + "weight":15.0 + }, + { + "id":4290, + "weight":15.0 + }, + { + "id":4291, + "weight":1.0 + }, + { + "id":4292, + "weight":1.0 + }, + { + "id":4293, + "weight":25.0 + }, + { + "id":4294, + "weight":25.0 + }, + { + "id":4298, + "weight":9.0 + }, + { + "id":4299, + "weight":9.0 + }, + { + "id":4300, + "weight":9.0 + }, + { + "id":4301, + "weight":9.0 + }, + { + "id":4302, + "weight":4.0 + }, + { + "id":4303, + "weight":4.0 + }, + { + "id":4304, + "weight":4.0 + }, + { + "id":4305, + "weight":4.0 + }, + { + "id":4308, + "weight":4.0 + }, + { + "id":4309, + "weight":4.0 + }, + { + "id":4310, + "weight":3.0 + }, + { + "id":4311, + "weight":3.0 + }, + { + "id":4314, + "weight":5.0 + }, + { + "id":4315, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4316, + "weight":4.0 + }, + { + "id":4317, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4318, + "weight":4.0 + }, + { + "id":4319, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4320, + "weight":4.0 + }, + { + "id":4321, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4322, + "weight":4.0 + }, + { + "id":4323, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4324, + "weight":4.0 + }, + { + "id":4325, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4326, + "weight":4.0 + }, + { + "id":4327, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4328, + "weight":4.0 + }, + { + "id":4329, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4330, + "weight":4.0 + }, + { + "id":4331, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4332, + "weight":4.0 + }, + { + "id":4333, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4334, + "weight":4.0 + }, + { + "id":4335, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4336, + "weight":4.0 + }, + { + "id":4337, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4338, + "weight":4.0 + }, + { + "id":4339, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4340, + "weight":4.0 + }, + { + "id":4341, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4342, + "weight":4.0 + }, + { + "id":4343, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4344, + "weight":4.0 + }, + { + "id":4345, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4346, + "weight":4.0 + }, + { + "id":4347, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4348, + "weight":4.0 + }, + { + "id":4349, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4350, + "weight":4.0 + }, + { + "id":4351, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4352, + "weight":4.0 + }, + { + "id":4353, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4354, + "weight":4.0 + }, + { + "id":4355, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4356, + "weight":4.0 + }, + { + "id":4357, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4358, + "weight":4.0 + }, + { + "id":4359, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4360, + "weight":4.0 + }, + { + "id":4361, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4362, + "weight":4.0 + }, + { + "id":4363, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4364, + "weight":4.0 + }, + { + "id":4365, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4366, + "weight":4.0 + }, + { + "id":4367, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4368, + "weight":4.0 + }, + { + "id":4369, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4370, + "weight":4.0 + }, + { + "id":4371, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4372, + "weight":4.0 + }, + { + "id":4373, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4374, + "weight":4.0 + }, + { + "id":4375, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4376, + "weight":4.0 + }, + { + "id":4377, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4378, + "weight":4.0 + }, + { + "id":4379, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4380, + "weight":4.0 + }, + { + "id":4381, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4382, + "weight":4.0 + }, + { + "id":4383, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4384, + "weight":4.0 + }, + { + "id":4385, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4386, + "weight":4.0 + }, + { + "id":4387, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4388, + "weight":4.0 + }, + { + "id":4389, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4390, + "weight":4.0 + }, + { + "id":4391, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4392, + "weight":4.0 + }, + { + "id":4393, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4394, + "weight":4.0 + }, + { + "id":4395, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4396, + "weight":4.0 + }, + { + "id":4397, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4398, + "weight":4.0 + }, + { + "id":4399, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4400, + "weight":4.0 + }, + { + "id":4401, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4402, + "weight":4.0 + }, + { + "id":4403, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4404, + "weight":4.0 + }, + { + "id":4405, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4406, + "weight":4.0 + }, + { + "id":4407, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4408, + "weight":4.0 + }, + { + "id":4409, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4410, + "weight":4.0 + }, + { + "id":4411, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4412, + "weight":4.0 + }, + { + "id":4413, + "weight":4.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1, + "defenceRange":2 + } + }, + { + "id":4414, + "weight":4.0 + }, + { + "id":4415, + "weight":13.0 + }, + { + "id":4416, + "weight":1.0 + }, + { + "id":4425, + "weight":10.0 + }, + { + "id":4426, + "weight":15.0 + }, + { + "id":4427, + "weight":10.0 + }, + { + "id":4436, + "weight":5.0 + }, + { + "id":4437, + "weight":5.0 + }, + { + "id":4443, + "weight":10.0 + }, + { + "id":4444, + "weight":13.0 + }, + { + "id":4445, + "weight":13.0 + }, + { + "id":4456, + "weight":9.0 + }, + { + "id":4457, + "weight":9.0 + }, + { + "id":4487, + "weight":1.0 + }, + { + "id":4488, + "weight":1.0 + }, + { + "id":4491, + "weight":5.0 + }, + { + "id":4492, + "weight":1.0 + }, + { + "id":4493, + "weight":5.0 + }, + { + "id":4497, + "weight":5.0 + }, + { + "id":4498, + "weight":13.0 + }, + { + "id":4499, + "weight":13.0 + }, + { + "id":4502, + "weight":4.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-3, + "defenceStab":12, + "defenceSlash":14, + "defenceCrush":10, + "defenceMagic":7, + "defenceRange":9 + } + }, + { + "id":4503, + "weight":1.0, + "bonuses":{ + "attackStab":9, + "attackSlash":14, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":16 + } + }, + { + "id":4504, + "weight":86.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":65, + "defenceSlash":63, + "defenceCrush":55, + "defenceMagic":-6, + "defenceRange":63 + } + }, + { + "id":4505, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":4506, + "weight":1.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":14, + "defenceSlash":15, + "defenceCrush":13, + "defenceMagic":-1, + "defenceRange":14 + } + }, + { + "id":4507, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":27, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":4508, + "bonuses":{ + "attackStab":9, + "attackSlash":14, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":16 + } + }, + { + "id":4509, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":65, + "defenceSlash":63, + "defenceCrush":55, + "defenceMagic":-6, + "defenceRange":63 + } + }, + { + "id":4510, + "weight":7.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-4, + "defenceRange":31 + } + }, + { + "id":4511, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":14, + "defenceSlash":15, + "defenceCrush":13, + "defenceMagic":-1, + "defenceRange":14 + } + }, + { + "id":4512, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":27, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":4513, + "weight":4.0 + }, + { + "id":4515, + "weight":4.0 + }, + { + "id":4517, + "weight":4.0 + }, + { + "id":4518, + "weight":4.0 + }, + { + "id":4522, + "weight":4.0 + }, + { + "id":4523, + "weight":4.0 + }, + { + "id":4524, + "weight":4.0 + }, + { + "id":4525, + "weight":4.0 + }, + { + "id":4526, + "weight":4.0 + }, + { + "id":4527, + "weight":9.0 + }, + { + "id":4528, + "weight":9.0 + }, + { + "id":4529, + "weight":9.0 + }, + { + "id":4530, + "weight":9.0 + }, + { + "id":4531, + "weight":9.0 + }, + { + "id":4532, + "weight":9.0 + }, + { + "id":4533, + "weight":9.0 + }, + { + "id":4534, + "weight":9.0 + }, + { + "id":4535, + "weight":9.0 + }, + { + "id":4536, + "weight":9.0 + }, + { + "id":4537, + "weight":9.0 + }, + { + "id":4538, + "weight":9.0 + }, + { + "id":4539, + "weight":9.0 + }, + { + "id":4544, + "weight":1.0 + }, + { + "id":4545, + "weight":1.0 + }, + { + "id":4546, + "weight":1.0 + }, + { + "id":4547, + "weight":1.0 + }, + { + "id":4548, + "weight":1.0 + }, + { + "id":4549, + "weight":1.0 + }, + { + "id":4550, + "weight":1.0 + }, + { + "id":4551, + "weight":22.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":9, + "defenceSlash":10, + "defenceCrush":7, + "defenceMagic":-1, + "defenceRange":9 + } + }, + { + "id":4552, + "weight":22.0 + }, + { + "id":4566, + "weight":4.0, + "bonuses":{ + "attackStab":-100, + "attackSlash":-100, + "attackCrush":-50, + "strengthBonus":-10 + } + }, + { + "id":4580, + "weight":22.0 + }, + { + "id":4581, + "weight":22.0 + }, + { + "id":4582, + "weight":22.0 + }, + { + "id":4583, + "weight":22.0 + }, + { + "id":4584, + "weight":22.0 + }, + { + "id":4585, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":68, + "defenceSlash":66, + "defenceCrush":63, + "defenceMagic":-4, + "defenceRange":65 + } + }, + { + "id":4586, + "weight":9.0 + }, + { + "id":4587, + "weight":18.0, + "bonuses":{ + "attackStab":8, + "attackSlash":67, + "attackCrush":-2, + "defenceSlash":1, + "strengthBonus":66 + } + }, + { + "id":4588, + "weight":18.0 + }, + { + "id":4592, + "weight":4.0 + }, + { + "id":4594, + "weight":4.0 + }, + { + "id":4596, + "weight":4.0 + }, + { + "id":4599, + "weight":18.0 + }, + { + "id":4600, + "weight":1.0 + }, + { + "id":4601, + "weight":4.0 + }, + { + "id":4602, + "weight":4.0 + }, + { + "id":4604, + "weight":1.0 + }, + { + "id":4605, + "weight":1.0 + }, + { + "id":4607, + "weight":1.0 + }, + { + "id":4608, + "weight":2.0 + }, + { + "id":4609, + "weight":2.0 + }, + { + "id":4610, + "weight":1.0 + }, + { + "id":4612, + "weight":1.0 + }, + { + "id":4659, + "weight":2.0 + }, + { + "id":4661, + "weight":2.0 + }, + { + "id":4663, + "weight":2.0 + }, + { + "id":4665, + "weight":2.0 + }, + { + "id":4667, + "weight":2.0 + }, + { + "id":4669, + "weight":5.0 + }, + { + "id":4672, + "weight":1.0 + }, + { + "id":4673, + "weight":1.0 + }, + { + "id":4675, + "weight":225.0, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":15, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":15, + "strengthBonus":50, + "prayerBonus":-1 + } + }, + { + "id":4676, + "weight":225.0 + }, + { + "id":4677, + "weight":13.0 + }, + { + "id":4678, + "weight":4.0 + }, + { + "id":4679, + "weight":4.0 + }, + { + "id":4680, + "weight":4.0 + }, + { + "id":4681, + "weight":4.0 + }, + { + "id":4685, + "weight":4.0 + }, + { + "id":4687, + "weight":2.0 + }, + { + "id":4688, + "weight":5.0 + }, + { + "id":4690, + "weight":5.0 + }, + { + "id":4692, + "weight":1.0 + }, + { + "id":4700, + "weight":13.0 + }, + { + "id":4701, + "weight":13.0 + }, + { + "id":4702, + "weight":13.0 + }, + { + "id":4703, + "weight":10.0 + }, + { + "id":4704, + "weight":18.0 + }, + { + "id":4708, + "weight":9.0, + "bonuses":{ + "attackMagic":6, + "attackRange":-2, + "defenceStab":15, + "defenceSlash":13, + "defenceCrush":16, + "defenceMagic":6 + } + }, + { + "id":4709, + "weight":9.0 + }, + { + "id":4710, + "weight":2.0, + "bonuses":{ + "attackStab":12, + "attackSlash":-1, + "attackCrush":65, + "attackMagic":15, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":5, + "defenceMagic":15, + "strengthBonus":68 + } + }, + { + "id":4711, + "weight":2.0 + }, + { + "id":4712, + "weight":5.0, + "bonuses":{ + "attackMagic":30, + "attackRange":-10, + "defenceStab":52, + "defenceSlash":37, + "defenceCrush":63, + "defenceMagic":30 + } + }, + { + "id":4713, + "weight":5.0 + }, + { + "id":4714, + "weight":12.0, + "bonuses":{ + "attackMagic":22, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":30, + "defenceCrush":36, + "defenceMagic":22 + } + }, + { + "id":4715, + "weight":12.0 + }, + { + "id":4716, + "weight":1.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":44, + "defenceMagic":-1, + "defenceRange":51 + } + }, + { + "id":4717, + "weight":1.0 + }, + { + "id":4718, + "weight":13.0, + "bonuses":{ + "attackSlash":103, + "attackCrush":95, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":105 + } + }, + { + "id":4719, + "weight":13.0 + }, + { + "id":4720, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4721, + "weight":9.0 + }, + { + "id":4722, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4723, + "weight":10.0 + }, + { + "id":4724, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4725, + "weight":2.0 + }, + { + "id":4726, + "weight":22.0, + "bonuses":{ + "attackStab":75, + "attackSlash":75, + "attackCrush":75, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "strengthBonus":75 + } + }, + { + "id":4727, + "weight":22.0 + }, + { + "id":4728, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4729, + "weight":9.0 + }, + { + "id":4730, + "weight":8.0, + "bonuses":{ + "attackMagic":-14, + "attackRange":-7, + "defenceStab":75, + "defenceSlash":72, + "defenceCrush":73, + "defenceMagic":-4, + "defenceRange":82 + } + }, + { + "id":4731, + "weight":8.0 + }, + { + "id":4732, + "bonuses":{ + "attackMagic":-3, + "attackRange":3, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":10 + } + }, + { + "id":4734, + "weight":2.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4735, + "weight":2.0 + }, + { + "id":4736, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":47, + "defenceSlash":42, + "defenceCrush":50, + "defenceMagic":65, + "defenceRange":57 + } + }, + { + "id":4737, + "weight":6.0 + }, + { + "id":4738, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":26, + "defenceSlash":20, + "defenceCrush":28, + "defenceMagic":35, + "defenceRange":33 + } + }, + { + "id":4739, + "weight":2.0 + }, + { + "id":4745, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4746, + "weight":5.0 + }, + { + "id":4747, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":85, + "attackMagic":-4, + "strengthBonus":72 + } + }, + { + "id":4748, + "weight":3.0 + }, + { + "id":4749, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4750, + "weight":9.0 + }, + { + "id":4751, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4752, + "weight":9.0 + }, + { + "id":4753, + "weight":1.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceRange":56, + "prayerBonus":3 + } + }, + { + "id":4754, + "weight":1.0 + }, + { + "id":4755, + "weight":2.0, + "bonuses":{ + "attackStab":68, + "attackSlash":-2, + "attackCrush":82, + "strengthBonus":72, + "prayerBonus":6 + } + }, + { + "id":4756, + "weight":2.0 + }, + { + "id":4757, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":81, + "defenceSlash":95, + "defenceCrush":85, + "defenceRange":81, + "prayerBonus":5 + } + }, + { + "id":4758, + "weight":5.0 + }, + { + "id":4759, + "weight":5.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceRange":84, + "prayerBonus":4 + } + }, + { + "id":4760, + "weight":5.0 + }, + { + "id":4812, + "weight":8.0 + }, + { + "id":4813, + "weight":8.0 + }, + { + "id":4817, + "weight":1.0 + }, + { + "id":4827, + "weight":18.0, + "bonuses":{ + "attackRange":38 + } + }, + { + "id":4828, + "weight":18.0 + }, + { + "id":4830, + "weight":8.0 + }, + { + "id":4831, + "weight":8.0 + }, + { + "id":4832, + "weight":8.0 + }, + { + "id":4833, + "weight":8.0 + }, + { + "id":4834, + "weight":8.0 + }, + { + "id":4835, + "weight":8.0 + }, + { + "id":4838, + "weight":1.0 + }, + { + "id":4852, + "weight":1.0 + }, + { + "id":4853, + "weight":1.0 + }, + { + "id":4854, + "weight":1.0 + }, + { + "id":4855, + "weight":1.0 + }, + { + "id":4856, + "weight":9.0, + "bonuses":{ + "attackMagic":6, + "attackRange":-2, + "defenceStab":15, + "defenceSlash":13, + "defenceCrush":16, + "defenceMagic":6 + } + }, + { + "id":4857, + "weight":9.0, + "bonuses":{ + "attackMagic":6, + "attackRange":-2, + "defenceStab":15, + "defenceSlash":13, + "defenceCrush":16, + "defenceMagic":6 + } + }, + { + "id":4858, + "weight":9.0, + "bonuses":{ + "attackMagic":6, + "attackRange":-2, + "defenceStab":15, + "defenceSlash":13, + "defenceCrush":16, + "defenceMagic":6 + } + }, + { + "id":4859, + "weight":9.0, + "bonuses":{ + "attackMagic":6, + "attackRange":-2, + "defenceStab":15, + "defenceSlash":13, + "defenceCrush":16, + "defenceMagic":6 + } + }, + { + "id":4860, + "weight":9.0 + }, + { + "id":4861, + "weight":9.0 + }, + { + "id":4862, + "weight":2.0, + "bonuses":{ + "attackStab":12, + "attackSlash":-1, + "attackCrush":65, + "attackMagic":15, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":5, + "defenceMagic":15, + "strengthBonus":68 + } + }, + { + "id":4863, + "weight":2.0, + "bonuses":{ + "attackStab":12, + "attackSlash":-1, + "attackCrush":65, + "attackMagic":15, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":5, + "defenceMagic":15, + "strengthBonus":68 + } + }, + { + "id":4864, + "weight":2.0, + "bonuses":{ + "attackStab":12, + "attackSlash":-1, + "attackCrush":65, + "attackMagic":15, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":5, + "defenceMagic":15, + "strengthBonus":68 + } + }, + { + "id":4865, + "weight":2.0, + "bonuses":{ + "attackStab":12, + "attackSlash":-1, + "attackCrush":65, + "attackMagic":15, + "defenceStab":3, + "defenceSlash":2, + "defenceCrush":5, + "defenceMagic":15, + "strengthBonus":68 + } + }, + { + "id":4866, + "weight":2.0 + }, + { + "id":4867, + "weight":2.0 + }, + { + "id":4868, + "weight":5.0, + "bonuses":{ + "attackMagic":30, + "attackRange":-10, + "defenceStab":52, + "defenceSlash":37, + "defenceCrush":63, + "defenceMagic":30 + } + }, + { + "id":4869, + "weight":5.0, + "bonuses":{ + "attackMagic":30, + "attackRange":-10, + "defenceStab":52, + "defenceSlash":37, + "defenceCrush":63, + "defenceMagic":30 + } + }, + { + "id":4870, + "weight":5.0, + "bonuses":{ + "attackMagic":30, + "attackRange":-10, + "defenceStab":52, + "defenceSlash":37, + "defenceCrush":63, + "defenceMagic":30 + } + }, + { + "id":4871, + "weight":5.0, + "bonuses":{ + "attackMagic":30, + "attackRange":-10, + "defenceStab":52, + "defenceSlash":37, + "defenceCrush":63, + "defenceMagic":30 + } + }, + { + "id":4872, + "weight":5.0, + "bonuses":{ + "attackMagic":30, + "attackRange":-10, + "defenceStab":52, + "defenceSlash":37, + "defenceCrush":63, + "defenceMagic":30 + } + }, + { + "id":4873, + "weight":5.0 + }, + { + "id":4874, + "weight":12.0, + "bonuses":{ + "attackMagic":22, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":30, + "defenceCrush":36, + "defenceMagic":22 + } + }, + { + "id":4875, + "weight":12.0, + "bonuses":{ + "attackMagic":22, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":30, + "defenceCrush":36, + "defenceMagic":22 + } + }, + { + "id":4876, + "weight":12.0, + "bonuses":{ + "attackMagic":22, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":30, + "defenceCrush":36, + "defenceMagic":22 + } + }, + { + "id":4877, + "weight":12.0, + "bonuses":{ + "attackMagic":22, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":30, + "defenceCrush":36, + "defenceMagic":22 + } + }, + { + "id":4878, + "weight":12.0, + "bonuses":{ + "attackMagic":22, + "attackRange":-7, + "defenceStab":33, + "defenceSlash":30, + "defenceCrush":36, + "defenceMagic":22 + } + }, + { + "id":4879, + "weight":12.0 + }, + { + "id":4880, + "weight":1.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":44, + "defenceMagic":-1, + "defenceRange":51 + } + }, + { + "id":4881, + "weight":1.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":44, + "defenceMagic":-1, + "defenceRange":51 + } + }, + { + "id":4882, + "weight":1.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":44, + "defenceMagic":-1, + "defenceRange":51 + } + }, + { + "id":4883, + "weight":1.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":44, + "defenceMagic":-1, + "defenceRange":51 + } + }, + { + "id":4884, + "weight":1.0, + "bonuses":{ + "defenceStab":45, + "defenceSlash":48, + "defenceCrush":44, + "defenceMagic":-1, + "defenceRange":51 + } + }, + { + "id":4885, + "weight":1.0 + }, + { + "id":4886, + "weight":13.0, + "bonuses":{ + "attackSlash":103, + "attackCrush":95, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":105 + } + }, + { + "id":4887, + "weight":13.0, + "bonuses":{ + "attackSlash":103, + "attackCrush":95, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":105 + } + }, + { + "id":4888, + "weight":13.0, + "bonuses":{ + "attackSlash":103, + "attackCrush":95, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":105 + } + }, + { + "id":4889, + "weight":13.0, + "bonuses":{ + "attackSlash":103, + "attackCrush":95, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":105 + } + }, + { + "id":4890, + "weight":13.0, + "bonuses":{ + "attackSlash":103, + "attackCrush":95, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":105 + } + }, + { + "id":4891, + "weight":13.0 + }, + { + "id":4892, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4893, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4894, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4895, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4896, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4897, + "weight":9.0 + }, + { + "id":4898, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4899, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4900, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4901, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4902, + "weight":10.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4903, + "weight":10.0 + }, + { + "id":4904, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4905, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4906, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4907, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4908, + "weight":2.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4909, + "weight":2.0 + }, + { + "id":4910, + "weight":22.0, + "bonuses":{ + "attackStab":75, + "attackSlash":75, + "attackCrush":75, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "strengthBonus":75 + } + }, + { + "id":4911, + "weight":22.0, + "bonuses":{ + "attackStab":75, + "attackSlash":75, + "attackCrush":75, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "strengthBonus":75 + } + }, + { + "id":4912, + "weight":22.0, + "bonuses":{ + "attackStab":75, + "attackSlash":75, + "attackCrush":75, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "strengthBonus":75 + } + }, + { + "id":4913, + "weight":22.0, + "bonuses":{ + "attackStab":75, + "attackSlash":75, + "attackCrush":75, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "strengthBonus":75 + } + }, + { + "id":4914, + "weight":22.0, + "bonuses":{ + "attackStab":75, + "attackSlash":75, + "attackCrush":75, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "strengthBonus":75 + } + }, + { + "id":4915, + "weight":22.0 + }, + { + "id":4916, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4917, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4918, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4919, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4920, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4921, + "weight":9.0 + }, + { + "id":4922, + "weight":8.0, + "bonuses":{ + "attackMagic":-14, + "attackRange":-7, + "defenceStab":75, + "defenceSlash":72, + "defenceCrush":73, + "defenceMagic":-4, + "defenceRange":82 + } + }, + { + "id":4923, + "weight":8.0, + "bonuses":{ + "attackMagic":-14, + "attackRange":-7, + "defenceStab":75, + "defenceSlash":72, + "defenceCrush":73, + "defenceMagic":-4, + "defenceRange":82 + } + }, + { + "id":4924, + "weight":8.0, + "bonuses":{ + "attackMagic":-14, + "attackRange":-7, + "defenceStab":75, + "defenceSlash":72, + "defenceCrush":73, + "defenceMagic":-4, + "defenceRange":82 + } + }, + { + "id":4925, + "weight":8.0, + "bonuses":{ + "attackMagic":-14, + "attackRange":-7, + "defenceStab":75, + "defenceSlash":72, + "defenceCrush":73, + "defenceMagic":-4, + "defenceRange":82 + } + }, + { + "id":4926, + "weight":8.0, + "bonuses":{ + "attackMagic":-14, + "attackRange":-7, + "defenceStab":75, + "defenceSlash":72, + "defenceCrush":73, + "defenceMagic":-4, + "defenceRange":82 + } + }, + { + "id":4927, + "weight":8.0 + }, + { + "id":4928, + "bonuses":{ + "attackMagic":-3, + "attackRange":3, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":10 + } + }, + { + "id":4929, + "bonuses":{ + "attackMagic":-3, + "attackRange":3, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":10 + } + }, + { + "id":4930, + "bonuses":{ + "attackMagic":-3, + "attackRange":3, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":10 + } + }, + { + "id":4931, + "bonuses":{ + "attackMagic":-3, + "attackRange":3, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":10 + } + }, + { + "id":4932, + "bonuses":{ + "attackMagic":-3, + "attackRange":3, + "defenceStab":6, + "defenceSlash":9, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":10 + } + }, + { + "id":4934, + "weight":2.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4935, + "weight":2.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4936, + "weight":2.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4937, + "weight":2.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4938, + "weight":2.0, + "bonuses":{ + "attackRange":84 + } + }, + { + "id":4939, + "weight":2.0 + }, + { + "id":4940, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":47, + "defenceSlash":42, + "defenceCrush":50, + "defenceMagic":65, + "defenceRange":57 + } + }, + { + "id":4941, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":47, + "defenceSlash":42, + "defenceCrush":50, + "defenceMagic":65, + "defenceRange":57 + } + }, + { + "id":4942, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":47, + "defenceSlash":42, + "defenceCrush":50, + "defenceMagic":65, + "defenceRange":57 + } + }, + { + "id":4943, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":47, + "defenceSlash":42, + "defenceCrush":50, + "defenceMagic":65, + "defenceRange":57 + } + }, + { + "id":4944, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":30, + "defenceStab":47, + "defenceSlash":42, + "defenceCrush":50, + "defenceMagic":65, + "defenceRange":57 + } + }, + { + "id":4945, + "weight":6.0 + }, + { + "id":4946, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":26, + "defenceSlash":20, + "defenceCrush":28, + "defenceMagic":35, + "defenceRange":33 + } + }, + { + "id":4947, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":26, + "defenceSlash":20, + "defenceCrush":28, + "defenceMagic":35, + "defenceRange":33 + } + }, + { + "id":4948, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":26, + "defenceSlash":20, + "defenceCrush":28, + "defenceMagic":35, + "defenceRange":33 + } + }, + { + "id":4949, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":26, + "defenceSlash":20, + "defenceCrush":28, + "defenceMagic":35, + "defenceRange":33 + } + }, + { + "id":4950, + "weight":2.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":17, + "defenceStab":26, + "defenceSlash":20, + "defenceCrush":28, + "defenceMagic":35, + "defenceRange":33 + } + }, + { + "id":4951, + "weight":2.0 + }, + { + "id":4952, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4953, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4954, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4955, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4956, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceMagic":-1, + "defenceRange":62 + } + }, + { + "id":4957, + "weight":5.0 + }, + { + "id":4958, + "weight":3.0, + "bonuses":{ + "attackSlash":-4, + "attackCrush":-4, + "attackMagic":85, + "attackRange":-4, + "prayerBonus":72 + } + }, + { + "id":4959, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":85, + "attackMagic":-4, + "strengthBonus":72 + } + }, + { + "id":4960, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":85, + "attackMagic":-4, + "strengthBonus":72 + } + }, + { + "id":4961, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":85, + "attackMagic":-4, + "strengthBonus":72 + } + }, + { + "id":4962, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":85, + "attackMagic":-4, + "strengthBonus":72 + } + }, + { + "id":4963, + "weight":3.0 + }, + { + "id":4964, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4965, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4966, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4967, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4968, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":122, + "defenceSlash":120, + "defenceCrush":107, + "defenceMagic":-6, + "defenceRange":132 + } + }, + { + "id":4969, + "weight":9.0 + }, + { + "id":4970, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4971, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4972, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4973, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4974, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceMagic":-4, + "defenceRange":92 + } + }, + { + "id":4975, + "weight":9.0 + }, + { + "id":4976, + "weight":1.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceRange":56, + "prayerBonus":3 + } + }, + { + "id":4977, + "weight":1.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceRange":56, + "prayerBonus":3 + } + }, + { + "id":4978, + "weight":1.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceRange":56, + "prayerBonus":3 + } + }, + { + "id":4979, + "weight":1.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceRange":56, + "prayerBonus":3 + } + }, + { + "id":4980, + "weight":1.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":55, + "defenceSlash":58, + "defenceCrush":54, + "defenceRange":56, + "prayerBonus":3 + } + }, + { + "id":4981, + "weight":1.0 + }, + { + "id":4982, + "weight":2.0, + "bonuses":{ + "attackStab":68, + "attackSlash":-2, + "attackCrush":82, + "strengthBonus":72, + "prayerBonus":6 + } + }, + { + "id":4983, + "weight":2.0, + "bonuses":{ + "attackStab":68, + "attackSlash":-2, + "attackCrush":82, + "strengthBonus":72, + "prayerBonus":6 + } + }, + { + "id":4984, + "weight":2.0, + "bonuses":{ + "attackStab":68, + "attackSlash":-2, + "attackCrush":82, + "strengthBonus":72, + "prayerBonus":6 + } + }, + { + "id":4985, + "weight":2.0, + "bonuses":{ + "attackStab":68, + "attackSlash":-2, + "attackCrush":82, + "strengthBonus":72, + "prayerBonus":6 + } + }, + { + "id":4986, + "weight":2.0, + "bonuses":{ + "attackStab":68, + "attackSlash":-2, + "attackCrush":82, + "strengthBonus":72, + "prayerBonus":6 + } + }, + { + "id":4987, + "weight":2.0 + }, + { + "id":4988, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":81, + "defenceSlash":95, + "defenceCrush":85, + "defenceRange":81, + "prayerBonus":5 + } + }, + { + "id":4989, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":81, + "defenceSlash":95, + "defenceCrush":85, + "defenceRange":81, + "prayerBonus":5 + } + }, + { + "id":4990, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":81, + "defenceSlash":95, + "defenceCrush":85, + "defenceRange":81, + "prayerBonus":5 + } + }, + { + "id":4991, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":81, + "defenceSlash":95, + "defenceCrush":85, + "defenceRange":81, + "prayerBonus":5 + } + }, + { + "id":4992, + "weight":5.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":81, + "defenceSlash":95, + "defenceCrush":85, + "defenceRange":81, + "prayerBonus":5 + } + }, + { + "id":4993, + "weight":5.0 + }, + { + "id":4994, + "weight":5.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceRange":84, + "prayerBonus":4 + } + }, + { + "id":4995, + "weight":5.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceRange":84, + "prayerBonus":4 + } + }, + { + "id":4996, + "weight":5.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceRange":84, + "prayerBonus":4 + } + }, + { + "id":4997, + "weight":5.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceRange":84, + "prayerBonus":4 + } + }, + { + "id":4998, + "weight":5.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":85, + "defenceSlash":82, + "defenceCrush":83, + "defenceRange":84, + "prayerBonus":4 + } + }, + { + "id":4999, + "weight":5.0 + }, + { + "id":5001, + "weight":5.0 + }, + { + "id":5003, + "weight":5.0 + }, + { + "id":5005, + "weight":5.0 + }, + { + "id":5007, + "weight":5.0 + }, + { + "id":5009, + "weight":1.0 + }, + { + "id":5013, + "weight":1.0 + }, + { + "id":5014, + "weight":1.0 + }, + { + "id":5015, + "weight":1.0 + }, + { + "id":5016, + "weight":13.0 + }, + { + "id":5017, + "weight":13.0 + }, + { + "id":5018, + "weight":9.0 + }, + { + "id":5019, + "weight":9.0 + }, + { + "id":5020, + "weight":1.0 + }, + { + "id":5021, + "weight":1.0 + }, + { + "id":5022, + "weight":1.0 + }, + { + "id":5023, + "weight":1.0 + }, + { + "id":5062, + "weight":5.0 + }, + { + "id":5063, + "weight":5.0 + }, + { + "id":5064, + "weight":1.0 + }, + { + "id":5302, + "weight":1.0 + }, + { + "id":5341, + "weight":13.0 + }, + { + "id":5342, + "weight":13.0 + }, + { + "id":5345, + "weight":1.0 + }, + { + "id":5346, + "weight":1.0 + }, + { + "id":5350, + "weight":9.0 + }, + { + "id":5351, + "weight":9.0 + }, + { + "id":5352, + "weight":9.0 + }, + { + "id":5353, + "weight":9.0 + }, + { + "id":5354, + "weight":9.0 + }, + { + "id":5355, + "weight":9.0 + }, + { + "id":5356, + "weight":9.0 + }, + { + "id":5357, + "weight":9.0 + }, + { + "id":5359, + "weight":9.0 + }, + { + "id":5360, + "weight":9.0 + }, + { + "id":5361, + "weight":1.0 + }, + { + "id":5362, + "weight":9.0 + }, + { + "id":5365, + "weight":9.0 + }, + { + "id":5366, + "weight":9.0 + }, + { + "id":5367, + "weight":1.0 + }, + { + "id":5368, + "weight":9.0 + }, + { + "id":5370, + "weight":9.0 + }, + { + "id":5371, + "weight":9.0 + }, + { + "id":5372, + "weight":9.0 + }, + { + "id":5373, + "weight":9.0 + }, + { + "id":5374, + "weight":9.0 + }, + { + "id":5375, + "weight":9.0 + }, + { + "id":5378, + "weight":1.0 + }, + { + "id":5379, + "weight":1.0 + }, + { + "id":5380, + "weight":1.0 + }, + { + "id":5381, + "weight":1.0 + }, + { + "id":5382, + "weight":1.0 + }, + { + "id":5383, + "weight":1.0 + }, + { + "id":5384, + "weight":1.0 + }, + { + "id":5385, + "weight":1.0 + }, + { + "id":5386, + "weight":1.0 + }, + { + "id":5387, + "weight":1.0 + }, + { + "id":5396, + "weight":1.0 + }, + { + "id":5397, + "weight":1.0 + }, + { + "id":5398, + "weight":25.0 + }, + { + "id":5399, + "weight":25.0 + }, + { + "id":5400, + "weight":25.0 + }, + { + "id":5401, + "weight":25.0 + }, + { + "id":5402, + "weight":25.0 + }, + { + "id":5403, + "weight":25.0 + }, + { + "id":5404, + "weight":25.0 + }, + { + "id":5405, + "weight":25.0 + }, + { + "id":5406, + "weight":25.0 + }, + { + "id":5407, + "weight":25.0 + }, + { + "id":5408, + "weight":1.0 + }, + { + "id":5409, + "weight":1.0 + }, + { + "id":5410, + "weight":1.0 + }, + { + "id":5411, + "weight":1.0 + }, + { + "id":5412, + "weight":1.0 + }, + { + "id":5413, + "weight":1.0 + }, + { + "id":5414, + "weight":1.0 + }, + { + "id":5415, + "weight":1.0 + }, + { + "id":5416, + "weight":1.0 + }, + { + "id":5417, + "weight":1.0 + }, + { + "id":5418, + "weight":4.0 + }, + { + "id":5419, + "weight":4.0 + }, + { + "id":5480, + "weight":9.0 + }, + { + "id":5481, + "weight":9.0 + }, + { + "id":5483, + "weight":9.0 + }, + { + "id":5484, + "weight":9.0 + }, + { + "id":5485, + "weight":9.0 + }, + { + "id":5486, + "weight":66.0 + }, + { + "id":5487, + "weight":9.0 + }, + { + "id":5488, + "weight":9.0 + }, + { + "id":5489, + "weight":9.0 + }, + { + "id":5491, + "weight":9.0 + }, + { + "id":5492, + "weight":9.0 + }, + { + "id":5493, + "weight":9.0 + }, + { + "id":5494, + "weight":66.0 + }, + { + "id":5495, + "weight":9.0 + }, + { + "id":5496, + "weight":9.0 + }, + { + "id":5497, + "weight":9.0 + }, + { + "id":5498, + "weight":9.0 + }, + { + "id":5499, + "weight":9.0 + }, + { + "id":5500, + "weight":9.0 + }, + { + "id":5501, + "weight":9.0 + }, + { + "id":5502, + "weight":9.0 + }, + { + "id":5503, + "weight":9.0 + }, + { + "id":5509, + "weight":1.0 + }, + { + "id":5510, + "weight":1.0 + }, + { + "id":5511, + "weight":1.0 + }, + { + "id":5512, + "weight":1.0 + }, + { + "id":5513, + "weight":1.0 + }, + { + "id":5514, + "weight":1.0 + }, + { + "id":5515, + "weight":1.0 + }, + { + "id":5518, + "weight":1.0 + }, + { + "id":5519, + "weight":1.0 + }, + { + "id":5521, + "weight":1.0 + }, + { + "id":5522, + "weight":1.0 + }, + { + "id":5523, + "weight":1.0 + }, + { + "id":5524, + "weight":1.0 + }, + { + "id":5525, + "weight":1.0 + }, + { + "id":5526, + "weight":1.0 + }, + { + "id":5527, + "weight":1.0 + }, + { + "id":5528, + "weight":1.0 + }, + { + "id":5529, + "weight":1.0 + }, + { + "id":5530, + "weight":1.0 + }, + { + "id":5531, + "weight":1.0 + }, + { + "id":5532, + "weight":1.0 + }, + { + "id":5533, + "weight":1.0 + }, + { + "id":5534, + "weight":1.0 + }, + { + "id":5535, + "weight":1.0 + }, + { + "id":5536, + "weight":1.0 + }, + { + "id":5537, + "weight":1.0 + }, + { + "id":5538, + "weight":1.0 + }, + { + "id":5539, + "weight":1.0 + }, + { + "id":5540, + "weight":1.0 + }, + { + "id":5541, + "weight":1.0 + }, + { + "id":5542, + "weight":1.0 + }, + { + "id":5543, + "weight":1.0 + }, + { + "id":5544, + "weight":1.0 + }, + { + "id":5545, + "weight":1.0 + }, + { + "id":5546, + "weight":1.0 + }, + { + "id":5547, + "weight":1.0 + }, + { + "id":5548, + "weight":1.0 + }, + { + "id":5549, + "weight":1.0 + }, + { + "id":5550, + "weight":1.0 + }, + { + "id":5553, + "weight":4.0, + "bonuses":{ + "defenceStab":10, + "defenceSlash":10, + "defenceCrush":10, + "defenceMagic":10, + "defenceRange":10 + } + }, + { + "id":5554, + "weight":5.0, + "bonuses":{ + "defenceStab":5, + "defenceSlash":5, + "defenceCrush":5, + "defenceMagic":5, + "defenceRange":5 + } + }, + { + "id":5555, + "weight":4.0, + "bonuses":{ + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "defenceMagic":7, + "defenceRange":7 + } + }, + { + "id":5556, + "weight":4.0, + "bonuses":{ + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":2, + "defenceMagic":2, + "defenceRange":2 + } + }, + { + "id":5557, + "weight":4.0, + "bonuses":{ + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":2, + "defenceMagic":2, + "defenceRange":2 + } + }, + { + "id":5562, + "weight":4.0 + }, + { + "id":5563, + "weight":4.0 + }, + { + "id":5564, + "weight":4.0 + }, + { + "id":5565, + "weight":4.0 + }, + { + "id":5566, + "weight":4.0 + }, + { + "id":5567, + "weight":4.0 + }, + { + "id":5568, + "weight":4.0 + }, + { + "id":5569, + "weight":4.0 + }, + { + "id":5570, + "weight":4.0 + }, + { + "id":5571, + "weight":4.0 + }, + { + "id":5574, + "weight":22.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":13, + "defenceSlash":14, + "defenceCrush":11, + "defenceMagic":-1, + "defenceRange":13, + "prayerBonus":3 + } + }, + { + "id":5575, + "weight":8.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":46, + "defenceSlash":44, + "defenceCrush":38, + "defenceMagic":-6, + "defenceRange":44, + "prayerBonus":6 + } + }, + { + "id":5576, + "weight":7.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":24, + "defenceSlash":22, + "defenceCrush":20, + "defenceMagic":-4, + "defenceRange":22, + "prayerBonus":5 + } + }, + { + "id":5586, + "weight":25.0 + }, + { + "id":5587, + "weight":25.0 + }, + { + "id":5592, + "weight":225.0 + }, + { + "id":5593, + "weight":225.0 + }, + { + "id":5594, + "weight":225.0 + }, + { + "id":5595, + "weight":225.0 + }, + { + "id":5596, + "weight":225.0 + }, + { + "id":5597, + "weight":225.0 + }, + { + "id":5598, + "weight":225.0 + }, + { + "id":5599, + "weight":225.0 + }, + { + "id":5600, + "weight":225.0 + }, + { + "id":5601, + "weight":4.0 + }, + { + "id":5603, + "weight":1.0 + }, + { + "id":5605, + "weight":4.0 + }, + { + "id":5607, + "weight":6.0 + }, + { + "id":5611, + "weight":22.0 + }, + { + "id":5612, + "weight":8.0 + }, + { + "id":5613, + "weight":7.0 + }, + { + "id":5615, + "weight":1.0 + }, + { + "id":5624, + "bonuses":{ + "attackStab":4, + "attackSlash":5, + "attackCrush":6, + "attackMagic":7, + "attackRange":8, + "defenceStab":9, + "defenceSlash":10, + "defenceCrush":11, + "defenceMagic":12, + "defenceRange":13, + "strengthBonus":14, + "prayerBonus":15 + } + }, + { + "id":5628, + "bonuses":{ + "attackRange":3 + } + }, + { + "id":5629, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":5630, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":5631, + "bonuses":{ + "attackRange":7 + } + }, + { + "id":5632, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":5633, + "bonuses":{ + "attackRange":11 + } + }, + { + "id":5634, + "bonuses":{ + "attackRange":15 + } + }, + { + "id":5635, + "bonuses":{ + "attackRange":3 + } + }, + { + "id":5636, + "bonuses":{ + "attackRange":4 + } + }, + { + "id":5637, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":5638, + "bonuses":{ + "attackRange":7 + } + }, + { + "id":5639, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":5640, + "bonuses":{ + "attackRange":11 + } + }, + { + "id":5641, + "bonuses":{ + "attackRange":15 + } + }, + { + "id":5642, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":5643, + "bonuses":{ + "attackRange":8 + } + }, + { + "id":5644, + "bonuses":{ + "attackRange":12 + } + }, + { + "id":5645, + "bonuses":{ + "attackRange":17 + } + }, + { + "id":5646, + "bonuses":{ + "attackRange":24 + } + }, + { + "id":5647, + "bonuses":{ + "attackRange":38 + } + }, + { + "id":5648, + "bonuses":{ + "attackRange":5 + } + }, + { + "id":5649, + "bonuses":{ + "defenceStab":8 + } + }, + { + "id":5650, + "bonuses":{ + "defenceStab":12 + } + }, + { + "id":5651, + "bonuses":{ + "attackRange":17 + } + }, + { + "id":5652, + "bonuses":{ + "attackRange":24 + } + }, + { + "id":5653, + "bonuses":{ + "attackRange":38 + } + }, + { + "id":5668, + "weight":4.0 + }, + { + "id":5669, + "weight":4.0 + }, + { + "id":5670, + "weight":4.0 + }, + { + "id":5671, + "weight":4.0 + }, + { + "id":5672, + "weight":4.0 + }, + { + "id":5673, + "weight":4.0 + }, + { + "id":5674, + "weight":3.0 + }, + { + "id":5675, + "weight":3.0 + }, + { + "id":5676, + "weight":4.0 + }, + { + "id":5677, + "weight":4.0 + }, + { + "id":5678, + "weight":4.0 + }, + { + "id":5679, + "weight":4.0 + }, + { + "id":5680, + "weight":4.0 + }, + { + "id":5681, + "weight":4.0 + }, + { + "id":5682, + "weight":4.0 + }, + { + "id":5683, + "weight":4.0 + }, + { + "id":5686, + "weight":4.0 + }, + { + "id":5687, + "weight":4.0 + }, + { + "id":5688, + "weight":4.0 + }, + { + "id":5689, + "weight":4.0 + }, + { + "id":5690, + "weight":4.0 + }, + { + "id":5691, + "weight":4.0 + }, + { + "id":5692, + "weight":3.0 + }, + { + "id":5693, + "weight":3.0 + }, + { + "id":5694, + "weight":4.0 + }, + { + "id":5695, + "weight":4.0 + }, + { + "id":5696, + "weight":4.0 + }, + { + "id":5697, + "weight":4.0 + }, + { + "id":5698, + "weight":4.0, + "bonuses":{ + "attackStab":40, + "attackSlash":25, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":40 + } + }, + { + "id":5699, + "weight":4.0 + }, + { + "id":5700, + "weight":4.0 + }, + { + "id":5701, + "weight":4.0 + }, + { + "id":5704, + "weight":22.0 + }, + { + "id":5705, + "weight":22.0 + }, + { + "id":5706, + "weight":22.0 + }, + { + "id":5707, + "weight":22.0 + }, + { + "id":5708, + "weight":22.0 + }, + { + "id":5709, + "weight":22.0 + }, + { + "id":5710, + "weight":18.0 + }, + { + "id":5711, + "weight":18.0 + }, + { + "id":5712, + "weight":2.0 + }, + { + "id":5713, + "weight":2.0 + }, + { + "id":5714, + "weight":22.0 + }, + { + "id":5715, + "weight":22.0 + }, + { + "id":5716, + "weight":2.0 + }, + { + "id":5717, + "weight":2.0 + }, + { + "id":5718, + "weight":22.0 + }, + { + "id":5719, + "weight":22.0 + }, + { + "id":5720, + "weight":22.0 + }, + { + "id":5721, + "weight":22.0 + }, + { + "id":5722, + "weight":22.0 + }, + { + "id":5723, + "weight":22.0 + }, + { + "id":5724, + "weight":18.0 + }, + { + "id":5725, + "weight":18.0 + }, + { + "id":5726, + "weight":2.0 + }, + { + "id":5727, + "weight":2.0 + }, + { + "id":5728, + "weight":22.0 + }, + { + "id":5729, + "weight":22.0 + }, + { + "id":5730, + "weight":2.0, + "bonuses":{ + "attackStab":55, + "attackSlash":55, + "attackCrush":55, + "defenceStab":5, + "defenceSlash":5, + "defenceCrush":5, + "defenceMagic":5, + "defenceRange":5, + "strengthBonus":60 + } + }, + { + "id":5731, + "weight":2.0 + }, + { + "id":5734, + "weight":22.0 + }, + { + "id":5735, + "weight":22.0 + }, + { + "id":5736, + "weight":22.0 + }, + { + "id":5737, + "weight":22.0 + }, + { + "id":5743, + "weight":5.0 + }, + { + "id":5744, + "weight":5.0 + }, + { + "id":5763, + "weight":1.0 + }, + { + "id":5764, + "weight":1.0 + }, + { + "id":5767, + "weight":2.0 + }, + { + "id":5768, + "weight":2.0 + }, + { + "id":5803, + "weight":1.0 + }, + { + "id":5804, + "weight":1.0 + }, + { + "id":5805, + "weight":1.0 + }, + { + "id":5806, + "weight":1.0 + }, + { + "id":5807, + "weight":1.0 + }, + { + "id":5808, + "weight":1.0 + }, + { + "id":5809, + "weight":1.0 + }, + { + "id":5810, + "weight":1.0 + }, + { + "id":5843, + "weight":1.0 + }, + { + "id":5844, + "weight":1.0 + }, + { + "id":5845, + "weight":1.0 + }, + { + "id":5846, + "weight":1.0 + }, + { + "id":5847, + "weight":1.0 + }, + { + "id":5848, + "weight":1.0 + }, + { + "id":5849, + "weight":1.0 + }, + { + "id":5850, + "weight":1.0 + }, + { + "id":5867, + "weight":5.0 + }, + { + "id":5868, + "weight":5.0 + }, + { + "id":5869, + "weight":5.0 + }, + { + "id":5870, + "weight":5.0 + }, + { + "id":5871, + "weight":5.0 + }, + { + "id":5872, + "weight":5.0 + }, + { + "id":5873, + "weight":5.0 + }, + { + "id":5874, + "weight":5.0 + }, + { + "id":5931, + "weight":2.0 + }, + { + "id":5932, + "weight":2.0 + }, + { + "id":5933, + "weight":9.0 + }, + { + "id":5934, + "weight":9.0 + }, + { + "id":5940, + "weight":1.0 + }, + { + "id":5941, + "weight":1.0 + }, + { + "id":5982, + "weight":1111.0 + }, + { + "id":5983, + "weight":1111.0 + }, + { + "id":6032, + "weight":3.0 + }, + { + "id":6033, + "weight":3.0 + }, + { + "id":6034, + "weight":3.0 + }, + { + "id":6035, + "weight":3.0 + }, + { + "id":6040, + "weight":1.0 + }, + { + "id":6064, + "weight":272.0 + }, + { + "id":6066, + "weight":225.0 + }, + { + "id":6067, + "weight":225.0 + }, + { + "id":6068, + "weight":23.0 + }, + { + "id":6069, + "weight":136.0 + }, + { + "id":6070, + "weight":225.0 + }, + { + "id":6074, + "weight":4.0 + }, + { + "id":6076, + "weight":4.0 + }, + { + "id":6078, + "weight":4.0 + }, + { + "id":6079, + "weight":5.0 + }, + { + "id":6080, + "weight":4.0 + }, + { + "id":6082, + "weight":40.0 + }, + { + "id":6089, + "weight":1.0 + }, + { + "id":6090, + "weight":7.0 + }, + { + "id":6091, + "weight":7.0 + }, + { + "id":6092, + "weight":1.0 + }, + { + "id":6093, + "weight":17.0 + }, + { + "id":6104, + "weight":33.0 + }, + { + "id":6106, + "bonuses":{ + "attackMagic":2, + "defenceMagic":2 + } + }, + { + "id":6107, + "bonuses":{ + "attackMagic":5, + "defenceMagic":5 + } + }, + { + "id":6108, + "bonuses":{ + "attackMagic":4, + "defenceMagic":4 + } + }, + { + "id":6109, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":6110, + "bonuses":{ + "attackMagic":2, + "defenceMagic":2 + } + }, + { + "id":6111, + "bonuses":{ + "attackMagic":5, + "defenceMagic":5 + } + }, + { + "id":6113, + "weight":1.0 + }, + { + "id":6118, + "weight":5.0 + }, + { + "id":6119, + "weight":1.0 + }, + { + "id":6120, + "weight":1.0 + }, + { + "id":6123, + "weight":5.0 + }, + { + "id":6125, + "weight":18.0 + }, + { + "id":6126, + "weight":18.0 + }, + { + "id":6127, + "weight":18.0 + }, + { + "id":6128, + "weight":27.0, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":30, + "defenceSlash":32, + "defenceCrush":27, + "defenceMagic":-1, + "defenceRange":30 + } + }, + { + "id":6129, + "weight":9.0, + "bonuses":{ + "attackMagic":-30, + "attackRange":-10, + "defenceStab":82, + "defenceSlash":80, + "defenceCrush":72, + "defenceMagic":-6, + "defenceRange":80 + } + }, + { + "id":6130, + "weight":9.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":51, + "defenceSlash":49, + "defenceCrush":47, + "defenceMagic":-4, + "defenceRange":49 + } + }, + { + "id":6131, + "weight":1.0, + "bonuses":{ + "attackSlash":-6, + "attackCrush":-6, + "attackMagic":-6, + "attackRange":6, + "defenceStab":6, + "defenceSlash":6, + "defenceCrush":-6, + "defenceMagic":6 + } + }, + { + "id":6132, + "weight":1.0 + }, + { + "id":6133, + "weight":6.0, + "bonuses":{ + "attackMagic":-15, + "attackRange":15, + "defenceStab":40, + "defenceSlash":32, + "defenceCrush":45, + "defenceMagic":20, + "defenceRange":40 + } + }, + { + "id":6134, + "weight":6.0 + }, + { + "id":6135, + "weight":5.0, + "bonuses":{ + "attackMagic":10, + "attackRange":8, + "defenceStab":22, + "defenceSlash":16, + "defenceCrush":24, + "defenceMagic":8, + "defenceRange":22 + } + }, + { + "id":6136, + "weight":5.0 + }, + { + "id":6137, + "weight":13.0, + "bonuses":{ + "attackMagic":2, + "attackRange":-2, + "defenceStab":10, + "defenceSlash":9, + "defenceCrush":11, + "defenceMagic":3 + } + }, + { + "id":6138, + "weight":13.0 + }, + { + "id":6139, + "weight":49.0, + "bonuses":{ + "attackMagic":8, + "attackRange":-10, + "defenceStab":35, + "defenceSlash":25, + "defenceCrush":42, + "defenceMagic":15 + } + }, + { + "id":6140, + "weight":49.0 + }, + { + "id":6141, + "weight":4.0, + "bonuses":{ + "attackSlash":6, + "attackCrush":-7, + "attackMagic":22, + "attackRange":20, + "defenceStab":24, + "defenceSlash":10 + } + }, + { + "id":6142, + "weight":4.0, + "bonuses":{ + "attackMagic":6, + "attackRange":-7, + "defenceStab":22, + "defenceSlash":20, + "defenceCrush":24, + "defenceMagic":10 + } + }, + { + "id":6143, + "weight":3.0, + "bonuses":{ + "defenceStab":1, + "defenceSlash":1 + } + }, + { + "id":6144, + "weight":3.0 + }, + { + "id":6145, + "weight":31.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":1 + } + }, + { + "id":6146, + "weight":31.0 + }, + { + "id":6147, + "weight":31.0, + "bonuses":{ + "defenceStab":1, + "defenceSlash":1 + } + }, + { + "id":6148, + "weight":31.0 + }, + { + "id":6149, + "weight":3.0, + "bonuses":{ + "defenceMagic":1, + "defenceRange":2 + } + }, + { + "id":6150, + "weight":3.0 + }, + { + "id":6151, + "weight":2.0, + "bonuses":{ + "defenceRange":1, + "strengthBonus":2 + } + }, + { + "id":6152, + "weight":2.0 + }, + { + "id":6153, + "weight":31.0, + "bonuses":{ + "defenceMagic":1, + "defenceRange":2 + } + }, + { + "id":6154, + "weight":31.0 + }, + { + "id":6155, + "weight":31.0 + }, + { + "id":6156, + "weight":31.0 + }, + { + "id":6157, + "weight":3.0 + }, + { + "id":6158, + "weight":3.0 + }, + { + "id":6161, + "weight":3.0 + }, + { + "id":6162, + "weight":3.0 + }, + { + "id":6163, + "weight":31.0 + }, + { + "id":6164, + "weight":31.0 + }, + { + "id":6165, + "weight":31.0 + }, + { + "id":6166, + "weight":31.0 + }, + { + "id":6167, + "weight":31.0 + }, + { + "id":6168, + "weight":31.0 + }, + { + "id":6169, + "weight":31.0 + }, + { + "id":6170, + "weight":31.0 + }, + { + "id":6171, + "weight":31.0 + }, + { + "id":6172, + "weight":31.0 + }, + { + "id":6173, + "weight":31.0 + }, + { + "id":6174, + "weight":31.0 + }, + { + "id":6175, + "weight":27.0 + }, + { + "id":6176, + "weight":9.0 + }, + { + "id":6177, + "weight":9.0 + }, + { + "id":6178, + "weight":10.0 + }, + { + "id":6179, + "weight":10.0 + }, + { + "id":6180, + "weight":22.0 + }, + { + "id":6181, + "weight":22.0 + }, + { + "id":6182, + "weight":2.0 + }, + { + "id":6183, + "weight":2.0 + }, + { + "id":6184, + "weight":27.0 + }, + { + "id":6185, + "weight":2.0 + }, + { + "id":6186, + "weight":2.0 + }, + { + "id":6187, + "weight":2.0 + }, + { + "id":6188, + "weight":4.0 + }, + { + "id":6199, + "weight":10.0 + }, + { + "id":6200, + "weight":1.0 + }, + { + "id":6201, + "weight":4.0 + }, + { + "id":6202, + "weight":1.0 + }, + { + "id":6203, + "weight":4.0 + }, + { + "id":6204, + "weight":1.0 + }, + { + "id":6205, + "weight":4.0 + }, + { + "id":6206, + "weight":1.0 + }, + { + "id":6207, + "weight":4.0 + }, + { + "id":6209, + "weight":45.0 + }, + { + "id":6210, + "weight":4.0 + }, + { + "id":6211, + "weight":1.0 + }, + { + "id":6212, + "weight":1.0 + }, + { + "id":6213, + "weight":13.0 + }, + { + "id":6214, + "weight":13.0 + }, + { + "id":6215, + "weight":54.0 + }, + { + "id":6216, + "weight":54.0 + }, + { + "id":6217, + "weight":54.0 + }, + { + "id":6218, + "weight":54.0 + }, + { + "id":6219, + "weight":54.0 + }, + { + "id":6220, + "weight":54.0 + }, + { + "id":6221, + "weight":54.0 + }, + { + "id":6222, + "weight":54.0 + }, + { + "id":6223, + "weight":54.0 + }, + { + "id":6224, + "weight":54.0 + }, + { + "id":6225, + "weight":54.0 + }, + { + "id":6226, + "weight":54.0 + }, + { + "id":6227, + "weight":54.0 + }, + { + "id":6228, + "weight":54.0 + }, + { + "id":6229, + "weight":54.0 + }, + { + "id":6230, + "weight":54.0 + }, + { + "id":6231, + "weight":54.0 + }, + { + "id":6232, + "weight":54.0 + }, + { + "id":6233, + "weight":54.0 + }, + { + "id":6234, + "weight":54.0 + }, + { + "id":6235, + "weight":54.0, + "bonuses":{ + "attackMagic":3, + "attackRange":-7, + "defenceStab":10, + "defenceSlash":10, + "defenceCrush":15, + "defenceMagic":5, + "prayerBonus":5 + } + }, + { + "id":6236, + "weight":54.0 + }, + { + "id":6237, + "weight":54.0 + }, + { + "id":6238, + "weight":54.0 + }, + { + "id":6239, + "weight":54.0 + }, + { + "id":6240, + "weight":54.0 + }, + { + "id":6241, + "weight":54.0 + }, + { + "id":6242, + "weight":54.0 + }, + { + "id":6243, + "weight":54.0 + }, + { + "id":6244, + "weight":54.0 + }, + { + "id":6245, + "weight":54.0 + }, + { + "id":6246, + "weight":54.0 + }, + { + "id":6247, + "weight":54.0 + }, + { + "id":6248, + "weight":54.0 + }, + { + "id":6249, + "weight":54.0 + }, + { + "id":6250, + "weight":54.0 + }, + { + "id":6251, + "weight":54.0 + }, + { + "id":6252, + "weight":54.0 + }, + { + "id":6253, + "weight":54.0 + }, + { + "id":6254, + "weight":54.0 + }, + { + "id":6255, + "weight":54.0 + }, + { + "id":6256, + "weight":54.0 + }, + { + "id":6257, + "weight":54.0 + }, + { + "id":6258, + "weight":54.0 + }, + { + "id":6259, + "weight":54.0 + }, + { + "id":6260, + "weight":54.0 + }, + { + "id":6261, + "weight":54.0 + }, + { + "id":6262, + "weight":54.0 + }, + { + "id":6263, + "weight":54.0 + }, + { + "id":6264, + "weight":54.0 + }, + { + "id":6265, + "weight":54.0 + }, + { + "id":6266, + "weight":54.0 + }, + { + "id":6267, + "weight":54.0 + }, + { + "id":6268, + "weight":54.0 + }, + { + "id":6269, + "weight":54.0 + }, + { + "id":6270, + "weight":54.0 + }, + { + "id":6271, + "weight":54.0 + }, + { + "id":6272, + "weight":54.0 + }, + { + "id":6273, + "weight":54.0 + }, + { + "id":6274, + "weight":54.0 + }, + { + "id":6275, + "weight":54.0 + }, + { + "id":6276, + "weight":54.0 + }, + { + "id":6277, + "weight":54.0 + }, + { + "id":6278, + "weight":54.0 + }, + { + "id":6279, + "weight":54.0 + }, + { + "id":6280, + "weight":54.0 + }, + { + "id":6281, + "weight":1.0 + }, + { + "id":6282, + "weight":1.0 + }, + { + "id":6283, + "weight":1.0 + }, + { + "id":6284, + "weight":1.0 + }, + { + "id":6285, + "weight":1.0 + }, + { + "id":6286, + "weight":1.0 + }, + { + "id":6287, + "weight":5.0 + }, + { + "id":6288, + "weight":5.0 + }, + { + "id":6289, + "weight":5.0 + }, + { + "id":6290, + "weight":5.0 + }, + { + "id":6291, + "weight":8.0 + }, + { + "id":6292, + "weight":8.0 + }, + { + "id":6295, + "weight":1.0 + }, + { + "id":6296, + "weight":1.0 + }, + { + "id":6299, + "weight":1.0 + }, + { + "id":6300, + "weight":1.0 + }, + { + "id":6303, + "weight":1.0 + }, + { + "id":6304, + "weight":1.0 + }, + { + "id":6311, + "weight":2.0 + }, + { + "id":6312, + "weight":2.0 + }, + { + "id":6313, + "weight":135.0 + }, + { + "id":6314, + "weight":135.0 + }, + { + "id":6317, + "weight":13.0 + }, + { + "id":6318, + "weight":13.0 + }, + { + "id":6322, + "weight":10.0, + "bonuses":{ + "attackMagic":-5, + "attackRange":12, + "defenceStab":25, + "defenceSlash":38, + "defenceCrush":32, + "defenceMagic":15, + "defenceRange":35 + } + }, + { + "id":6323, + "weight":10.0 + }, + { + "id":6324, + "weight":36.0, + "bonuses":{ + "attackMagic":-5, + "attackRange":6, + "defenceStab":8, + "defenceSlash":8, + "defenceCrush":10, + "defenceMagic":4, + "defenceRange":10 + } + }, + { + "id":6325, + "weight":36.0 + }, + { + "id":6326, + "weight":9.0, + "bonuses":{ + "attackMagic":-5, + "attackRange":4, + "defenceStab":2, + "defenceSlash":4, + "defenceCrush":4, + "defenceMagic":2, + "defenceRange":2 + } + }, + { + "id":6327, + "weight":9.0 + }, + { + "id":6328, + "weight":3.0, + "bonuses":{ + "attackMagic":-10, + "attackRange":3, + "defenceStab":1, + "defenceSlash":1, + "defenceCrush":2, + "defenceMagic":1 + } + }, + { + "id":6329, + "weight":3.0 + }, + { + "id":6330, + "weight":1.0, + "bonuses":{ + "attackMagic":-5, + "attackRange":6, + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":2, + "defenceMagic":1 + } + }, + { + "id":6331, + "weight":1.0 + }, + { + "id":6332, + "weight":133.0 + }, + { + "id":6333, + "weight":135.0 + }, + { + "id":6334, + "weight":135.0 + }, + { + "id":6335, + "weight":2.0 + }, + { + "id":6336, + "weight":2.0 + }, + { + "id":6337, + "weight":2.0 + }, + { + "id":6338, + "weight":2.0 + }, + { + "id":6339, + "weight":2.0 + }, + { + "id":6340, + "weight":2.0 + }, + { + "id":6341, + "weight":10.0 + }, + { + "id":6342, + "weight":10.0 + }, + { + "id":6343, + "weight":2.0 + }, + { + "id":6344, + "weight":2.0 + }, + { + "id":6345, + "weight":1.0 + }, + { + "id":6346, + "weight":1.0 + }, + { + "id":6347, + "weight":5.0 + }, + { + "id":6348, + "weight":5.0 + }, + { + "id":6349, + "weight":6.0 + }, + { + "id":6350, + "weight":6.0 + }, + { + "id":6351, + "weight":10.0 + }, + { + "id":6352, + "weight":10.0 + }, + { + "id":6353, + "weight":2.0 + }, + { + "id":6354, + "weight":2.0 + }, + { + "id":6355, + "weight":1.0 + }, + { + "id":6356, + "weight":1.0 + }, + { + "id":6357, + "weight":6.0 + }, + { + "id":6358, + "weight":6.0 + }, + { + "id":6359, + "weight":5.0 + }, + { + "id":6360, + "weight":5.0 + }, + { + "id":6361, + "weight":10.0 + }, + { + "id":6362, + "weight":10.0 + }, + { + "id":6363, + "weight":2.0 + }, + { + "id":6364, + "weight":2.0 + }, + { + "id":6365, + "weight":1.0 + }, + { + "id":6366, + "weight":1.0 + }, + { + "id":6367, + "weight":6.0 + }, + { + "id":6368, + "weight":6.0 + }, + { + "id":6369, + "weight":5.0 + }, + { + "id":6370, + "weight":5.0 + }, + { + "id":6371, + "weight":10.0 + }, + { + "id":6372, + "weight":10.0 + }, + { + "id":6373, + "weight":2.0 + }, + { + "id":6374, + "weight":2.0 + }, + { + "id":6375, + "weight":1.0 + }, + { + "id":6376, + "weight":1.0 + }, + { + "id":6377, + "weight":6.0 + }, + { + "id":6378, + "weight":6.0 + }, + { + "id":6379, + "weight":5.0 + }, + { + "id":6380, + "weight":5.0 + }, + { + "id":6381, + "weight":4.0 + }, + { + "id":6408, + "weight":1.0 + }, + { + "id":6409, + "weight":1.0 + }, + { + "id":6410, + "weight":1.0 + }, + { + "id":6411, + "weight":1.0 + }, + { + "id":6412, + "weight":1.0 + }, + { + "id":6413, + "weight":1.0 + }, + { + "id":6414, + "weight":1.0 + }, + { + "id":6415, + "weight":1.0 + }, + { + "id":6416, + "weight":18.0 + }, + { + "id":6417, + "weight":18.0 + }, + { + "id":6418, + "weight":1.0 + }, + { + "id":6419, + "weight":1.0 + }, + { + "id":6420, + "weight":1.0 + }, + { + "id":6421, + "weight":1.0 + }, + { + "id":6448, + "weight":2.0 + }, + { + "id":6464, + "weight":9.0 + }, + { + "id":6478, + "weight":2.0 + }, + { + "id":6522, + "bonuses":{ + "attackRange":69 + } + }, + { + "id":6523, + "weight":18.0, + "bonuses":{ + "attackStab":47, + "attackSlash":38, + "attackCrush":-2, + "defenceStab":2, + "defenceSlash":3, + "strengthBonus":49 + } + }, + { + "id":6524, + "weight":36.0, + "bonuses":{ + "attackMagic":-12, + "attackRange":-8, + "defenceStab":40, + "defenceSlash":42, + "defenceCrush":38, + "defenceRange":65, + "strengthBonus":5 + } + }, + { + "id":6525, + "weight":4.0, + "bonuses":{ + "attackStab":16, + "attackSlash":48, + "strengthBonus":39 + } + }, + { + "id":6526, + "weight":1.0, + "bonuses":{ + "attackStab":15, + "attackSlash":-1, + "attackCrush":55, + "attackMagic":15, + "defenceStab":10, + "defenceSlash":15, + "defenceCrush":5, + "defenceMagic":15, + "strengthBonus":55 + } + }, + { + "id":6527, + "weight":18.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":62, + "strengthBonus":56 + } + }, + { + "id":6528, + "weight":36.0, + "bonuses":{ + "attackCrush":80, + "attackMagic":-4, + "strengthBonus":85 + } + }, + { + "id":6535, + "weight":18.0 + }, + { + "id":6536, + "weight":36.0 + }, + { + "id":6537, + "weight":4.0 + }, + { + "id":6538, + "weight":1.0 + }, + { + "id":6539, + "weight":18.0 + }, + { + "id":6540, + "weight":36.0 + }, + { + "id":6541, + "weight":1.0 + }, + { + "id":6544, + "weight":1.0 + }, + { + "id":6562, + "weight":22.0 + }, + { + "id":6563, + "weight":2.0 + }, + { + "id":6568, + "weight":18.0, + "bonuses":{ + "defenceStab":9, + "defenceSlash":9, + "defenceCrush":9, + "defenceMagic":9, + "defenceRange":9 + } + }, + { + "id":6569, + "weight":18.0 + }, + { + "id":6570, + "weight":18.0, + "bonuses":{ + "attackStab":1, + "attackSlash":1, + "attackCrush":1, + "attackMagic":1, + "attackRange":1, + "defenceStab":11, + "defenceSlash":11, + "defenceCrush":11, + "defenceMagic":11, + "defenceRange":11, + "strengthBonus":4, + "prayerBonus":2 + } + }, + { + "id":6585, + "bonuses":{ + "attackStab":10, + "attackSlash":10, + "attackCrush":10, + "attackMagic":10, + "attackRange":10, + "defenceStab":15, + "defenceSlash":15, + "defenceCrush":15, + "defenceMagic":15, + "defenceRange":15, + "strengthBonus":8, + "prayerBonus":5 + } + }, + { + "id":6587, + "bonuses":{ + "prayerBonus":1 + } + }, + { + "id":6589, + "weight":27.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":20, + "attackCrush":15, + "defenceRange":-1, + "strengthBonus":24, + "prayerBonus":1 + } + }, + { + "id":6590, + "weight":27.0 + }, + { + "id":6591, + "weight":4.0, + "bonuses":{ + "attackStab":10, + "attackSlash":5, + "attackCrush":-4, + "attackMagic":1, + "defenceMagic":1, + "strengthBonus":7, + "prayerBonus":1 + } + }, + { + "id":6592, + "weight":4.0 + }, + { + "id":6593, + "weight":4.0 + }, + { + "id":6594, + "weight":4.0 + }, + { + "id":6595, + "weight":4.0 + }, + { + "id":6596, + "weight":4.0 + }, + { + "id":6597, + "weight":4.0 + }, + { + "id":6598, + "weight":4.0 + }, + { + "id":6599, + "weight":31.0, + "bonuses":{ + "attackStab":19, + "attackSlash":25, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":2, + "defenceCrush":3, + "strengthBonus":20, + "prayerBonus":1 + } + }, + { + "id":6600, + "weight":31.0, + "bonuses":{ + "attackStab":19, + "attackSlash":25, + "attackMagic":-4, + "defenceStab":-1, + "defenceSlash":2, + "defenceCrush":3 + } + }, + { + "id":6601, + "weight":18.0, + "bonuses":{ + "attackStab":8, + "attackSlash":-2, + "attackCrush":16, + "strengthBonus":13, + "prayerBonus":1 + } + }, + { + "id":6602, + "weight":18.0 + }, + { + "id":6603, + "weight":22.0 + }, + { + "id":6604, + "weight":22.0 + }, + { + "id":6605, + "weight":18.0, + "bonuses":{ + "attackStab":14, + "attackSlash":10, + "attackCrush":-2, + "defenceSlash":2, + "defenceCrush":1, + "strengthBonus":12, + "prayerBonus":1 + } + }, + { + "id":6606, + "weight":18.0 + }, + { + "id":6607, + "weight":18.0, + "bonuses":{ + "attackStab":13, + "attackSlash":18, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "strengthBonus":16, + "prayerBonus":1 + } + }, + { + "id":6608, + "weight":18.0 + }, + { + "id":6609, + "weight":36.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":27, + "attackCrush":21, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":26, + "prayerBonus":1 + } + }, + { + "id":6610, + "weight":36.0 + }, + { + "id":6611, + "weight":1.0, + "bonuses":{ + "attackStab":4, + "attackSlash":19, + "attackCrush":-2, + "defenceSlash":1, + "strengthBonus":14, + "prayerBonus":1 + } + }, + { + "id":6612, + "weight":1.0 + }, + { + "id":6613, + "weight":18.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":22, + "attackMagic":-4, + "strengthBonus":19, + "prayerBonus":1 + } + }, + { + "id":6614, + "weight":18.0 + }, + { + "id":6615, + "weight":68.0, + "bonuses":{ + "attackMagic":-15, + "defenceStab":22, + "defenceSlash":32, + "defenceCrush":39, + "defenceMagic":-3, + "defenceRange":24, + "prayerBonus":1 + } + }, + { + "id":6616, + "weight":68.0 + }, + { + "id":6617, + "weight":5.0, + "bonuses":{ + "attackMagic":-30, + "defenceStab":109, + "defenceSlash":107, + "defenceCrush":97, + "defenceMagic":-6, + "defenceRange":106 + } + }, + { + "id":6618, + "weight":5.0 + }, + { + "id":6619, + "weight":13.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":7, + "defenceSlash":8, + "defenceCrush":9, + "prayerBonus":1 + } + }, + { + "id":6620, + "weight":13.0 + }, + { + "id":6621, + "weight":19.0, + "bonuses":{ + "prayerBonus":1 + } + }, + { + "id":6622, + "weight":19.0 + }, + { + "id":6623, + "bonuses":{ + "attackMagic":-6, + "attackRange":-2, + "defenceStab":12, + "defenceSlash":13, + "defenceCrush":10, + "defenceMagic":-1, + "defenceRange":12, + "prayerBonus":1 + } + }, + { + "id":6625, + "weight":90.0, + "bonuses":{ + "attackMagic":-21, + "attackRange":-7, + "defenceStab":21, + "defenceSlash":20, + "defenceCrush":19, + "defenceMagic":-4, + "defenceRange":20, + "prayerBonus":1 + } + }, + { + "id":6626, + "weight":90.0 + }, + { + "id":6627, + "weight":81.0, + "bonuses":{ + "prayerBonus":1 + } + }, + { + "id":6628, + "weight":81.0 + }, + { + "id":6629, + "weight":2.0, + "bonuses":{ + "defenceSlash":1, + "defenceCrush":2, + "prayerBonus":1 + } + }, + { + "id":6630, + "weight":2.0 + }, + { + "id":6631, + "weight":4.0, + "bonuses":{ + "prayerBonus":1 + } + }, + { + "id":6632, + "weight":4.0 + }, + { + "id":6633, + "weight":54.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18, + "prayerBonus":1 + } + }, + { + "id":6634, + "weight":54.0 + }, + { + "id":6654, + "weight":27.0 + }, + { + "id":6655, + "weight":22.0 + }, + { + "id":6656, + "weight":22.0 + }, + { + "id":6665, + "weight":1.0 + }, + { + "id":6666, + "weight":2.0 + }, + { + "id":6667, + "weight":13.0 + }, + { + "id":6668, + "weight":13.0 + }, + { + "id":6669, + "weight":13.0 + }, + { + "id":6670, + "weight":13.0 + }, + { + "id":6671, + "weight":13.0 + }, + { + "id":6672, + "weight":13.0 + }, + { + "id":6673, + "weight":2.0 + }, + { + "id":6674, + "weight":1.0 + }, + { + "id":6676, + "weight":5.0 + }, + { + "id":6697, + "weight":2.0 + }, + { + "id":6698, + "weight":2.0 + }, + { + "id":6701, + "weight":5.0 + }, + { + "id":6702, + "weight":5.0 + }, + { + "id":6703, + "weight":5.0 + }, + { + "id":6704, + "weight":5.0 + }, + { + "id":6705, + "weight":5.0 + }, + { + "id":6706, + "weight":5.0 + }, + { + "id":6712, + "weight":3.0 + }, + { + "id":6720, + "bonuses":{ + "defenceStab":4, + "defenceSlash":5, + "defenceCrush":3 + } + }, + { + "id":6721, + "weight":2.0 + }, + { + "id":6723, + "weight":13.0 + }, + { + "id":6724, + "weight":1.0, + "bonuses":{ + "attackRange":69 + } + }, + { + "id":6725, + "weight":1.0 + }, + { + "id":6726, + "weight":22.0, + "bonuses":{ + "attackStab":10, + "attackSlash":-1, + "attackCrush":40, + "attackMagic":10, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":10, + "strengthBonus":35 + } + }, + { + "id":6727, + "weight":2.0 + }, + { + "id":6728, + "weight":1.0 + }, + { + "id":6729, + "weight":1.0 + }, + { + "id":6730, + "weight":1.0 + }, + { + "id":6731, + "bonuses":{ + "attackMagic":4, + "defenceMagic":4 + } + }, + { + "id":6733, + "bonuses":{ + "attackRange":4, + "defenceRange":4 + } + }, + { + "id":6735, + "bonuses":{ + "attackSlash":4, + "defenceSlash":4 + } + }, + { + "id":6737, + "bonuses":{ + "defenceCrush":4, + "strengthBonus":4 + } + }, + { + "id":6739, + "weight":13.0, + "bonuses":{ + "attackStab":-2, + "attackSlash":38, + "attackCrush":32, + "defenceSlash":1, + "strengthBonus":42 + } + }, + { + "id":6740, + "weight":13.0 + }, + { + "id":6741, + "weight":25.0 + }, + { + "id":6742, + "weight":25.0 + }, + { + "id":6745, + "weight":18.0, + "bonuses":{ + "attackStab":9, + "attackSlash":14, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "defenceMagic":1, + "strengthBonus":12 + } + }, + { + "id":6746, + "weight":18.0, + "bonuses":{ + "attackStab":10, + "attackSlash":16, + "attackCrush":-2, + "defenceSlash":3, + "defenceCrush":2, + "defenceMagic":2, + "strengthBonus":13 + } + }, + { + "id":6748, + "weight":18.0 + }, + { + "id":6749, + "weight":4.0 + }, + { + "id":6751, + "weight":5.0 + }, + { + "id":6753, + "weight":4.0 + }, + { + "id":6760, + "weight":2.0, + "bonuses":{ + "attackCrush":11, + "strengthBonus":14 + } + }, + { + "id":6761, + "weight":2.0 + }, + { + "id":6762, + "weight":2.0, + "bonuses":{ + "attackCrush":11, + "strengthBonus":14 + } + }, + { + "id":6763, + "weight":2.0 + }, + { + "id":6764, + "weight":2.0 + }, + { + "id":6765, + "weight":2.0 + }, + { + "id":6768, + "weight":2.0 + }, + { + "id":6773, + "weight":22.0 + }, + { + "id":6774, + "weight":22.0 + }, + { + "id":6775, + "weight":22.0 + }, + { + "id":6776, + "weight":22.0 + }, + { + "id":6777, + "weight":22.0 + }, + { + "id":6778, + "weight":22.0 + }, + { + "id":6779, + "weight":22.0 + }, + { + "id":6788, + "weight":1.0 + }, + { + "id":6789, + "weight":1.0 + }, + { + "id":6791, + "weight":1.0 + }, + { + "id":6796, + "weight":1.0 + }, + { + "id":6809, + "weight":15.0, + "bonuses":{ + "attackMagic":-31, + "attackRange":-18, + "defenceStab":43, + "defenceSlash":45, + "defenceCrush":41, + "defenceMagic":-4, + "defenceRange":68 + } + }, + { + "id":6810, + "weight":1.0 + }, + { + "id":6812, + "weight":5.0 + }, + { + "id":6813, + "weight":15.0 + }, + { + "id":6814, + "weight":4.0 + }, + { + "id":6815, + "weight":4.0 + }, + { + "id":6816, + "weight":5.0 + }, + { + "id":6817, + "weight":3.0 + }, + { + "id":6818, + "weight":3.0 + }, + { + "id":6819, + "weight":1.0 + }, + { + "id":6856, + "weight":25.0 + }, + { + "id":6857, + "weight":25.0 + }, + { + "id":6858, + "weight":25.0 + }, + { + "id":6859, + "weight":25.0 + }, + { + "id":6860, + "weight":25.0 + }, + { + "id":6861, + "weight":25.0 + }, + { + "id":6862, + "weight":25.0 + }, + { + "id":6863, + "weight":25.0 + }, + { + "id":6889, + "weight":1.0, + "bonuses":{ + "attackMagic":15, + "defenceMagic":15 + } + }, + { + "id":6890, + "weight":1.0 + }, + { + "id":6891, + "weight":1.0 + }, + { + "id":6892, + "weight":5.0 + }, + { + "id":6893, + "weight":3.0, + "bonuses":{ + "attackMagic":1, + "attackRange":1 + } + }, + { + "id":6894, + "weight":58.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":21, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":6895, + "weight":18.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":14, + "defenceSlash":15, + "defenceCrush":13, + "defenceMagic":-1, + "defenceRange":14 + } + }, + { + "id":6897, + "weight":18.0, + "bonuses":{ + "attackStab":38, + "attackSlash":47, + "attackCrush":-2 + } + }, + { + "id":6903, + "weight":3.0 + }, + { + "id":6908, + "weight":2.0 + }, + { + "id":6909, + "weight":2.0 + }, + { + "id":6910, + "bonuses":{ + "attackMagic":10, + "defenceMagic":10 + } + }, + { + "id":6914, + "weight":1.0, + "bonuses":{ + "attackMagic":20, + "defenceMagic":20 + } + }, + { + "id":6915, + "weight":1.0 + }, + { + "id":6916, + "weight":22.0, + "bonuses":{ + "attackMagic":22, + "defenceCrush":22 + } + }, + { + "id":6917, + "weight":22.0 + }, + { + "id":6918, + "weight":4.0, + "bonuses":{ + "attackMagic":6, + "defenceMagic":6 + } + }, + { + "id":6919, + "weight":4.0 + }, + { + "id":6920, + "weight":4.0, + "bonuses":{ + "attackMagic":5, + "defenceMagic":5 + } + }, + { + "id":6921, + "weight":4.0 + }, + { + "id":6922, + "weight":4.0, + "bonuses":{ + "attackCrush":5, + "defenceSlash":5 + } + }, + { + "id":6923, + "weight":4.0 + }, + { + "id":6924, + "weight":18.0, + "bonuses":{ + "attackMagic":17, + "defenceMagic":17 + } + }, + { + "id":6925, + "weight":18.0 + }, + { + "id":6957, + "weight":3.0 + }, + { + "id":6959, + "weight":4.0 + }, + { + "id":6960, + "weight":4.0 + }, + { + "id":6963, + "weight":5.0 + }, + { + "id":6967, + "weight":13.0 + }, + { + "id":6969, + "weight":6.0 + }, + { + "id":6970, + "weight":11.0 + }, + { + "id":6985, + "weight":20.0 + }, + { + "id":6986, + "weight":32.0 + }, + { + "id":6988, + "weight":32.0 + }, + { + "id":6997, + "weight":9.0 + }, + { + "id":6998, + "weight":9.0 + }, + { + "id":6999, + "weight":9.0 + }, + { + "id":7000, + "weight":9.0 + }, + { + "id":7001, + "weight":5.0 + }, + { + "id":7003, + "weight":5.0 + }, + { + "id":7004, + "weight":4.0 + }, + { + "id":7051, + "weight":22.0 + }, + { + "id":7052, + "weight":22.0 + }, + { + "id":7053, + "weight":22.0 + }, + { + "id":7054, + "weight":5.0 + }, + { + "id":7055, + "weight":5.0 + }, + { + "id":7056, + "weight":5.0 + }, + { + "id":7057, + "weight":5.0 + }, + { + "id":7058, + "weight":5.0 + }, + { + "id":7059, + "weight":5.0 + }, + { + "id":7060, + "weight":5.0 + }, + { + "id":7061, + "weight":5.0 + }, + { + "id":7062, + "weight":5.0 + }, + { + "id":7063, + "weight":5.0 + }, + { + "id":7064, + "weight":5.0 + }, + { + "id":7065, + "weight":5.0 + }, + { + "id":7066, + "weight":5.0 + }, + { + "id":7067, + "weight":5.0 + }, + { + "id":7068, + "weight":5.0 + }, + { + "id":7069, + "weight":5.0 + }, + { + "id":7070, + "weight":5.0 + }, + { + "id":7071, + "weight":5.0 + }, + { + "id":7072, + "weight":5.0 + }, + { + "id":7073, + "weight":5.0 + }, + { + "id":7076, + "weight":5.0 + }, + { + "id":7077, + "weight":5.0 + }, + { + "id":7078, + "weight":5.0 + }, + { + "id":7079, + "weight":5.0 + }, + { + "id":7080, + "weight":5.0 + }, + { + "id":7081, + "weight":5.0 + }, + { + "id":7082, + "weight":5.0 + }, + { + "id":7083, + "weight":5.0 + }, + { + "id":7084, + "weight":5.0 + }, + { + "id":7085, + "weight":5.0 + }, + { + "id":7086, + "weight":5.0 + }, + { + "id":7087, + "weight":5.0 + }, + { + "id":7110, + "weight":1.0 + }, + { + "id":7111, + "weight":1.0 + }, + { + "id":7112, + "weight":1.0 + }, + { + "id":7113, + "weight":1.0 + }, + { + "id":7114, + "weight":4.0 + }, + { + "id":7115, + "weight":4.0 + }, + { + "id":7120, + "weight":2.0 + }, + { + "id":7122, + "weight":1.0 + }, + { + "id":7123, + "weight":1.0 + }, + { + "id":7124, + "weight":1.0 + }, + { + "id":7125, + "weight":1.0 + }, + { + "id":7128, + "weight":1.0 + }, + { + "id":7129, + "weight":1.0 + }, + { + "id":7130, + "weight":1.0 + }, + { + "id":7131, + "weight":1.0 + }, + { + "id":7134, + "weight":1.0 + }, + { + "id":7135, + "weight":1.0 + }, + { + "id":7136, + "weight":1.0 + }, + { + "id":7137, + "weight":1.0 + }, + { + "id":7140, + "weight":18.0 + }, + { + "id":7141, + "weight":1.0 + }, + { + "id":7142, + "weight":1.0 + }, + { + "id":7145, + "weight":32.0 + }, + { + "id":7146, + "weight":32.0 + }, + { + "id":7155, + "weight":13.0 + }, + { + "id":7156, + "weight":5.0 + }, + { + "id":7157, + "weight":1.0 + }, + { + "id":7158, + "weight":3.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":92, + "attackCrush":80, + "attackMagic":-4, + "defenceRange":-1, + "strengthBonus":93 + } + }, + { + "id":7159, + "weight":13.0 + }, + { + "id":7161, + "weight":13.0 + }, + { + "id":7176, + "weight":5.0 + }, + { + "id":7177, + "weight":5.0 + }, + { + "id":7186, + "weight":5.0 + }, + { + "id":7187, + "weight":5.0 + }, + { + "id":7196, + "weight":5.0 + }, + { + "id":7197, + "weight":5.0 + }, + { + "id":7216, + "weight":5.0 + }, + { + "id":7217, + "weight":5.0 + }, + { + "id":7224, + "weight":1.0 + }, + { + "id":7225, + "weight":15.0 + }, + { + "id":7228, + "weight":10.0 + }, + { + "id":7229, + "weight":10.0 + }, + { + "id":7233, + "weight":1.0 + }, + { + "id":7234, + "weight":15.0 + }, + { + "id":7237, + "weight":5.0 + }, + { + "id":7240, + "weight":5.0 + }, + { + "id":7242, + "weight":5.0 + }, + { + "id":7244, + "weight":5.0 + }, + { + "id":7246, + "weight":5.0 + }, + { + "id":7257, + "weight":5.0 + }, + { + "id":7259, + "weight":5.0 + }, + { + "id":7261, + "weight":5.0 + }, + { + "id":7263, + "weight":5.0 + }, + { + "id":7265, + "weight":5.0 + }, + { + "id":7267, + "weight":5.0 + }, + { + "id":7287, + "weight":5.0 + }, + { + "id":7289, + "weight":5.0 + }, + { + "id":7291, + "weight":5.0 + }, + { + "id":7293, + "weight":5.0 + }, + { + "id":7295, + "weight":5.0 + }, + { + "id":7306, + "weight":5.0 + }, + { + "id":7308, + "weight":5.0 + }, + { + "id":7310, + "weight":5.0 + }, + { + "id":7312, + "weight":5.0 + }, + { + "id":7314, + "weight":5.0 + }, + { + "id":7316, + "weight":5.0 + }, + { + "id":7318, + "weight":5.0 + }, + { + "id":7332, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":7333, + "weight":4.0 + }, + { + "id":7334, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":21, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":7335, + "weight":5.0 + }, + { + "id":7336, + "weight":54.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":7337, + "weight":54.0 + }, + { + "id":7338, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":7339, + "weight":4.0 + }, + { + "id":7340, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":21, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":7341, + "weight":5.0 + }, + { + "id":7342, + "weight":54.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":7343, + "weight":54.0 + }, + { + "id":7344, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":7345, + "weight":4.0 + }, + { + "id":7346, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":21, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":7347, + "weight":5.0 + }, + { + "id":7348, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":7349, + "weight":5.0 + }, + { + "id":7350, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":7351, + "weight":4.0 + }, + { + "id":7352, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":21, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":7353, + "weight":5.0 + }, + { + "id":7354, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":44, + "defenceSlash":48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":7355, + "weight":5.0 + }, + { + "id":7356, + "weight":4.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":17, + "defenceSlash":19, + "defenceCrush":18, + "defenceMagic":-1, + "defenceRange":18 + } + }, + { + "id":7357, + "weight":4.0 + }, + { + "id":7358, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":21, + "defenceSlash":31, + "defenceCrush":29, + "defenceMagic":-1, + "defenceRange":29 + } + }, + { + "id":7359, + "weight":5.0 + }, + { + "id":7360, + "weight":5.0, + "bonuses":{ + "attackMagic":-8, + "attackRange":-2, + "defenceStab":-44, + "defenceSlash":-48, + "defenceCrush":46, + "defenceMagic":-1, + "defenceRange":46 + } + }, + { + "id":7361, + "weight":5.0 + }, + { + "id":7362, + "weight":54.0, + "bonuses":{ + "attackMagic":-4, + "attackRange":8, + "defenceStab":18, + "defenceSlash":25, + "defenceCrush":22, + "defenceMagic":8, + "defenceRange":25 + } + }, + { + "id":7363, + "weight":54.0, + "bonuses":{ + "defenceStab":-4, + "defenceSlash":8, + "defenceCrush":18, + "defenceMagic":25, + "defenceRange":22, + "strengthBonus":8, + "prayerBonus":25 + } + }, + { + "id":7364, + "weight":54.0, + "bonuses":{ + "attackMagic":-4, + "attackRange":8, + "defenceStab":18, + "defenceSlash":25, + "defenceCrush":22, + "defenceMagic":8, + "defenceRange":25 + } + }, + { + "id":7365, + "weight":54.0, + "bonuses":{ + "defenceStab":-4, + "defenceSlash":8, + "defenceCrush":18, + "defenceMagic":25, + "defenceRange":22, + "strengthBonus":8, + "prayerBonus":25 + } + }, + { + "id":7366, + "weight":45.0, + "bonuses":{ + "attackMagic":-4, + "attackRange":8, + "defenceStab":18, + "defenceSlash":25, + "defenceCrush":22, + "defenceMagic":8, + "defenceRange":25 + } + }, + { + "id":7367, + "weight":45.0, + "bonuses":{ + "defenceStab":-4, + "defenceSlash":8, + "defenceCrush":18, + "defenceMagic":25, + "defenceRange":22, + "strengthBonus":8, + "prayerBonus":25 + } + }, + { + "id":7368, + "weight":45.0, + "bonuses":{ + "attackMagic":-4, + "attackRange":8, + "defenceStab":18, + "defenceSlash":25, + "defenceCrush":22, + "defenceMagic":8, + "defenceRange":25 + } + }, + { + "id":7369, + "weight":45.0 + }, + { + "id":7370, + "bonuses":{ + "attackMagic":-15, + "attackRange":15, + "defenceStab":40, + "defenceSlash":32, + "defenceCrush":45, + "defenceMagic":20, + "defenceRange":40 + } + }, + { + "id":7372, + "bonuses":{ + "attackMagic":-15, + "attackRange":15, + "defenceStab":40, + "defenceSlash":32, + "defenceCrush":45, + "defenceMagic":20, + "defenceRange":40 + } + }, + { + "id":7374, + "bonuses":{ + "attackMagic":-15, + "attackRange":20, + "defenceStab":45, + "defenceSlash":37, + "defenceCrush":50, + "defenceMagic":30, + "defenceRange":45 + } + }, + { + "id":7376, + "bonuses":{ + "attackMagic":-15, + "attackRange":20, + "defenceStab":45, + "defenceSlash":37, + "defenceCrush":50, + "defenceMagic":30, + "defenceRange":45 + } + }, + { + "id":7378, + "bonuses":{ + "attackMagic":-10, + "attackRange":8, + "defenceStab":22, + "defenceSlash":16, + "defenceCrush":24, + "defenceMagic":8, + "defenceRange":22 + } + }, + { + "id":7380, + "bonuses":{ + "attackMagic":-10, + "attackRange":8, + "defenceStab":22, + "defenceSlash":16, + "defenceCrush":24, + "defenceMagic":8, + "defenceRange":22 + } + }, + { + "id":7382, + "bonuses":{ + "attackMagic":-10, + "attackRange":11, + "defenceStab":25, + "defenceSlash":19, + "defenceCrush":27, + "defenceMagic":14, + "defenceRange":25 + } + }, + { + "id":7384, + "bonuses":{ + "attackMagic":-10, + "attackRange":11, + "defenceStab":25, + "defenceSlash":19, + "defenceCrush":27, + "defenceMagic":14, + "defenceRange":25 + } + }, + { + "id":7386, + "weight":1.0 + }, + { + "id":7387, + "weight":1.0 + }, + { + "id":7390, + "weight":1.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":7391, + "weight":1.0 + }, + { + "id":7392, + "weight":1.0, + "bonuses":{ + "attackMagic":3, + "defenceMagic":3 + } + }, + { + "id":7393, + "weight":1.0 + }, + { + "id":7394, + "weight":1.0, + "bonuses":{ + "attackMagic":2, + "defenceMagic":2 + } + }, + { + "id":7395, + "weight":1.0 + }, + { + "id":7396, + "bonuses":{ + "attackMagic":2, + "defenceMagic":2 + } + }, + { + "id":7398, + "weight":18.0, + "bonuses":{ + "attackMagic":15, + "defenceMagic":15 + } + }, + { + "id":7399, + "weight":1.0, + "bonuses":{ + "attackMagic":20, + "defenceMagic":20 + } + }, + { + "id":7400, + "bonuses":{ + "attackMagic":4, + "defenceMagic":4 + } + }, + { + "id":7401, + "weight":18.0 + }, + { + "id":7402, + "weight":1.0 + }, + { + "id":7405, + "weight":2.0 + }, + { + "id":7406, + "weight":2.0 + }, + { + "id":7407, + "weight":3.0 + }, + { + "id":7409, + "weight":4.0 + }, + { + "id":7410, + "bonuses":{ + "attackStab":7, + "attackSlash":9, + "attackCrush":-5, + "attackMagic":1, + "defenceSlash":1, + "defenceMagic":1, + "strengthBonus":1 + } + }, + { + "id":7421, + "weight":2.0 + }, + { + "id":7422, + "weight":2.0 + }, + { + "id":7423, + "weight":2.0 + }, + { + "id":7424, + "weight":2.0 + }, + { + "id":7425, + "weight":2.0 + }, + { + "id":7426, + "weight":2.0 + }, + { + "id":7427, + "weight":2.0 + }, + { + "id":7428, + "weight":2.0 + }, + { + "id":7429, + "weight":2.0 + }, + { + "id":7430, + "weight":2.0 + }, + { + "id":7431, + "weight":2.0 + }, + { + "id":7433, + "weight":4.0 + }, + { + "id":7434, + "weight":4.0 + }, + { + "id":7437, + "weight":18.0 + }, + { + "id":7438, + "weight":18.0 + }, + { + "id":7439, + "weight":36.0 + }, + { + "id":7440, + "weight":36.0 + }, + { + "id":7441, + "weight":15.0 + }, + { + "id":7442, + "weight":15.0 + }, + { + "id":7443, + "weight":2.0 + }, + { + "id":7444, + "weight":2.0 + }, + { + "id":7445, + "weight":18.0 + }, + { + "id":7446, + "weight":18.0 + }, + { + "id":7449, + "weight":1.0 + }, + { + "id":7450, + "weight":1.0 + }, + { + "id":7451, + "weight":5.0 + }, + { + "id":7452, + "weight":5.0 + }, + { + "id":7453, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "attackMagic":1, + "attackRange":2, + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":2, + "defenceMagic":1, + "defenceRange":2, + "strengthBonus":2 + } + }, + { + "id":7454, + "bonuses":{ + "attackStab":2, + "attackSlash":2, + "attackCrush":2, + "attackMagic":1, + "attackRange":2, + "defenceStab":2, + "defenceSlash":2, + "defenceCrush":2, + "defenceMagic":1, + "defenceRange":2, + "strengthBonus":2 + } + }, + { + "id":7455, + "bonuses":{ + "attackStab":3, + "attackSlash":3, + "attackCrush":3, + "attackMagic":2, + "attackRange":3, + "defenceStab":3, + "defenceSlash":3, + "defenceCrush":3, + "defenceMagic":2, + "defenceRange":3, + "strengthBonus":3 + } + }, + { + "id":7456, + "bonuses":{ + "attackStab":4, + "attackSlash":4, + "attackCrush":4, + "attackMagic":2, + "attackRange":4, + "defenceStab":4, + "defenceSlash":4, + "defenceCrush":4, + "defenceMagic":2, + "defenceRange":4, + "strengthBonus":4 + } + }, + { + "id":7457, + "bonuses":{ + "attackStab":5, + "attackSlash":5, + "attackCrush":5, + "attackMagic":3, + "attackRange":5, + "defenceStab":5, + "defenceSlash":5, + "defenceCrush":5, + "defenceMagic":3, + "defenceRange":5, + "strengthBonus":5 + } + }, + { + "id":7458, + "bonuses":{ + "attackStab":6, + "attackSlash":6, + "attackCrush":6, + "attackMagic":3, + "attackRange":6, + "defenceStab":6, + "defenceSlash":6, + "defenceCrush":6, + "defenceMagic":3, + "defenceRange":6, + "strengthBonus":6 + } + }, + { + "id":7459, + "bonuses":{ + "attackStab":7, + "attackSlash":7, + "attackCrush":7, + "attackMagic":4, + "attackRange":7, + "defenceStab":7, + "defenceSlash":7, + "defenceCrush":7, + "defenceMagic":4, + "defenceRange":7, + "strengthBonus":7 + } + }, + { + "id":7460, + "bonuses":{ + "attackStab":8, + "attackSlash":8, + "attackCrush":8, + "attackMagic":4, + "attackRange":8, + "defenceStab":8, + "defenceSlash":8, + "defenceCrush":8, + "defenceMagic":4, + "defenceRange":8, + "strengthBonus":8 + } + }, + { + "id":7461, + "bonuses":{ + "attackStab":9, + "attackSlash":9, + "attackCrush":9, + "attackMagic":5, + "attackRange":9, + "defenceStab":9, + "defenceSlash":9, + "defenceCrush":9, + "defenceMagic":5, + "defenceRange":9, + "strengthBonus":9 + } + }, + { + "id":7462, + "bonuses":{ + "attackStab":12, + "attackSlash":12, + "attackCrush":12, + "attackMagic":6, + "attackRange":12, + "defenceStab":12, + "defenceSlash":12, + "defenceCrush":12, + "defenceMagic":6, + "defenceRange":12, + "strengthBonus":12 + } + }, + { + "id":7463, + "weight":1.0 + }, + { + "id":7466, + "weight":1.0 + }, + { + "id":7467, + "weight":5.0 + }, + { + "id":7468, + "weight":1.0 + }, + { + "id":7469, + "weight":5.0 + }, + { + "id":7470, + "weight":1.0 + }, + { + "id":7471, + "weight":1.0 + }, + { + "id":7479, + "weight":15.0 + }, + { + "id":7517, + "weight":2.0 + }, + { + "id":7518, + "weight":9.0 + }, + { + "id":7519, + "weight":9.0 + }, + { + "id":7521, + "weight":9.0 + }, + { + "id":7522, + "weight":9.0 + }, + { + "id":7523, + "weight":9.0 + }, + { + "id":7524, + "weight":9.0 + }, + { + "id":7525, + "weight":9.0 + }, + { + "id":7526, + "weight":9.0 + }, + { + "id":7532, + "weight":1.0 + }, + { + "id":7534, + "weight":5.0 + }, + { + "id":7535, + "weight":10.0 + }, + { + "id":7536, + "weight":9.0 + }, + { + "id":7537, + "weight":9.0 + }, + { + "id":7538, + "weight":9.0 + }, + { + "id":7539, + "weight":9.0, + "bonuses":{ + "attackMagic":-3, + "attackRange":-1, + "defenceStab":4, + "defenceSlash":5, + "defenceCrush":3, + "defenceMagic":-1 + } + }, + { + "id":7545, + "weight":2.0 + }, + { + "id":7546, + "weight":1.0 + }, + { + "id":7566, + "weight":10.0 + }, + { + "id":7567, + "weight":10.0 + }, + { + "id":7568, + "weight":10.0 + }, + { + "id":7569, + "weight":10.0 + }, + { + "id":7576, + "weight":3.0 + }, + { + "id":7577, + "weight":3.0 + }, + { + "id":7579, + "weight":3.0 + }, + { + "id":7622, + "weight":2.0 + }, + { + "id":7623, + "weight":5.0 + }, + { + "id":7624, + "weight":2.0 + }, + { + "id":7625, + "weight":5.0 + }, + { + "id":7626, + "weight":2.0 + }, + { + "id":7627, + "weight":5.0 + }, + { + "id":7628, + "weight":1.0 + }, + { + "id":7631, + "weight":5.0 + }, + { + "id":7633, + "weight":5.0 + }, + { + "id":7639, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7640, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7641, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7642, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7643, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7644, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7645, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7646, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7647, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7648, + "weight":2.0, + "bonuses":{ + "attackSlash":-1, + "attackCrush":7, + "attackMagic":4, + "defenceStab":2, + "defenceSlash":3, + "defenceCrush":1, + "defenceMagic":4, + "strengthBonus":3 + } + }, + { + "id":7650, + "weight":33.0 + }, + { + "id":7651, + "weight":33.0 + }, + { + "id":7668, + "weight":18.0, + "bonuses":{ + "attackStab":-4, + "attackSlash":-4, + "attackCrush":35, + "attackMagic":-4, + "strengthBonus":35 + } + }, + { + "id":7669, + "weight":18.0 + }, + { + "id":7671, + "weight":4.0 + }, + { + "id":7672, + "weight":4.0 + }, + { + "id":7673, + "weight":4.0 + }, + { + "id":7676, + "weight":2.0 + }, + { + "id":7677, + "weight":18.0 + }, + { + "id":7681, + "weight":1.0 + }, + { + "id":7692, + "weight":15.0 + }, + { + "id":7693, + "weight":15.0 + }, + { + "id":7694, + "weight":15.0 + }, + { + "id":7695, + "weight":15.0 + }, + { + "id":7696, + "weight":15.0 + }, + { + "id":7697, + "weight":15.0 + }, + { + "id":7698, + "weight":15.0 + }, + { + "id":7699, + "weight":15.0 + }, + { + "id":7700, + "weight":15.0 + }, + { + "id":7701, + "weight":15.0 + }, + { + "id":7702, + "weight":4.0 + }, + { + "id":7703, + "weight":4.0 + }, + { + "id":7704, + "weight":15.0 + }, + { + "id":7705, + "weight":15.0 + }, + { + "id":7706, + "weight":15.0 + }, + { + "id":7707, + "weight":15.0 + }, + { + "id":7708, + "weight":15.0 + }, + { + "id":7709, + "weight":15.0 + }, + { + "id":7710, + "weight":15.0 + }, + { + "id":7711, + "weight":15.0 + }, + { + "id":7712, + "weight":15.0 + }, + { + "id":7713, + "weight":15.0 + }, + { + "id":7714, + "weight":4.0 + }, + { + "id":7715, + "weight":4.0 + }, + { + "id":7716, + "weight":15.0 + }, + { + "id":7717, + "weight":15.0 + }, + { + "id":7718, + "weight":15.0 + }, + { + "id":7719, + "weight":15.0 + }, + { + "id":7720, + "weight":15.0 + }, + { + "id":7721, + "weight":15.0 + }, + { + "id":7722, + "weight":15.0 + }, + { + "id":7723, + "weight":15.0 + }, + { + "id":7724, + "weight":15.0 + }, + { + "id":7725, + "weight":15.0 + }, + { + "id":7726, + "weight":4.0 + }, + { + "id":7727, + "weight":4.0 + }, + { + "id":7730, + "weight":1.0 + }, + { + "id":7731, + "weight":1.0 + }, + { + "id":7733, + "weight":1.0 + }, + { + "id":7734, + "weight":1.0 + }, + { + "id":7736, + "weight":1.0 + }, + { + "id":7737, + "weight":1.0 + }, + { + "id":7740, + "weight":1.0 + }, + { + "id":7741, + "weight":1.0 + }, + { + "id":7742, + "weight":5.0 + }, + { + "id":7743, + "weight":5.0 + }, + { + "id":7748, + "weight":1.0 + }, + { + "id":7749, + "weight":1.0 + }, + { + "id":7752, + "weight":1.0 + }, + { + "id":7753, + "weight":1.0 + }, + { + "id":7758, + "weight":2.0 + }, + { + "id":7767, + "weight":1.0 + }, + { + "id":7768, + "weight":1.0 + }, + { + "id":7769, + "weight":1.0 + }, + { + "id":7770, + "weight":1.0 + }, + { + "id":7771, + "weight":1.0 + }, + { + "id":7772, + "weight":1.0 + }, + { + "id":7773, + "weight":1.0 + }, + { + "id":7779, + "weight":1.0 + }, + { + "id":7780, + "weight":1.0 + }, + { + "id":7781, + "weight":1.0 + }, + { + "id":7782, + "weight":1.0 + }, + { + "id":7783, + "weight":1.0 + }, + { + "id":7784, + "weight":1.0 + }, + { + "id":7785, + "weight":1.0 + }, + { + "id":7786, + "weight":1.0 + }, + { + "id":7787, + "weight":1.0 + }, + { + "id":7788, + "weight":1.0 + }, + { + "id":7789, + "weight":1.0 + }, + { + "id":7790, + "weight":1.0 + }, + { + "id":7791, + "weight":1.0 + }, + { + "id":7792, + "weight":1.0 + }, + { + "id":7793, + "weight":1.0 + }, + { + "id":7794, + "weight":1.0 + }, + { + "id":7795, + "weight":1.0 + }, + { + "id":7796, + "weight":1.0 + }, + { + "id":7797, + "weight":1.0 + }, + { + "id":7798, + "weight":1.0 + }, + { + "id":7799, + "weight":1.0 + }, + { + "id":7800, + "weight":7.0 + }, + { + "id":7801, + "weight":5.0 + }, + { + "id":7802, + "weight":5.0 + }, + { + "id":7804, + "weight":4.0 + }, + { + "id":7805, + "weight":4.0 + }, + { + "id":7806, + "bonuses":{ + "attackStab":20, + "attackSlash":20, + "attackCrush":20, + "defenceSlash":2, + "defenceCrush":1, + "strengthBonus":5 + } + }, + { + "id":7807, + "bonuses":{ + "attackStab":20, + "attackSlash":20, + "attackCrush":20, + "defenceRange":-1, + "strengthBonus":13 + } + }, + { + "id":7808, + "bonuses":{ + "attackStab":20, + "attackSlash":20, + "attackCrush":20, + "strengthBonus":5 + } + }, + { + "id":7809, + "bonuses":{ + "attackStab":20, + "attackSlash":20, + "attackCrush":20, + "defenceStab":1, + "defenceSlash":1, + "strengthBonus":6 + } + }, + { + "id":7810, + "weight":1.0 + }, + { + "id":7811, + "weight":13.0 + }, + { + "id":7813, + "weight":1.0 + }, + { + "id":7816, + "weight":1.0 + }, + { + "id":7819, + "weight":1.0 + }, + { + "id":7822, + "weight":1.0 + }, + { + "id":7825, + "weight":1.0 + }, + { + "id":7827, + "weight":9.0 + }, + { + "id":7828, + "weight":1.0 + }, + { + "id":7830, + "weight":9.0 + }, + { + "id":7831, + "weight":1.0 + }, + { + "id":7833, + "weight":9.0 + }, + { + "id":7834, + "weight":1.0 + }, + { + "id":7835, + "weight":9.0 + }, + { + "id":7836, + "weight":9.0 + }, + { + "id":7837, + "weight":1.0 + }, + { + "id":7839, + "weight":9.0 + }, + { + "id":7840, + "weight":1.0 + }, + { + "id":7842, + "weight":9.0 + }, + { + "id":7843, + "weight":1.0 + }, + { + "id":7845, + "weight":9.0 + }, + { + "id":7846, + "weight":1.0 + }, + { + "id":7848, + "weight":9.0 + }, + { + "id":7849, + "weight":1.0 + }, + { + "id":7851, + "weight":9.0 + }, + { + "id":7852, + "weight":1.0 + }, + { + "id":7855, + "weight":1.0 + }, + { + "id":7857, + "weight":9.0 + }, + { + "id":7858, + "weight":1.0 + }, + { + "id":7859, + "weight":9.0 + }, + { + "id":7860, + "weight":9.0 + }, + { + "id":7861, + "weight":1.0 + }, + { + "id":7863, + "weight":9.0 + }, + { + "id":7864, + "weight":1.0 + }, + { + "id":7866, + "weight":9.0 + }, + { + "id":7867, + "weight":1.0 + }, + { + "id":7868, + "weight":9.0 + }, + { + "id":7869, + "weight":9.0 + }, + { + "id":7870, + "weight":1.0 + }, + { + "id":7872, + "weight":9.0 + }, + { + "id":7873, + "weight":1.0 + }, + { + "id":7875, + "weight":9.0 + }, + { + "id":7876, + "weight":1.0 + }, + { + "id":7877, + "weight":9.0 + }, + { + "id":7878, + "weight":9.0 + }, + { + "id":7879, + "weight":1.0 + }, + { + "id":7881, + "weight":9.0 + }, + { + "id":7882, + "weight":1.0 + }, + { + "id":7883, + "weight":9.0 + }, + { + "id":7884, + "weight":9.0 + }, + { + "id":7885, + "weight":1.0 + }, + { + "id":7887, + "weight":9.0 + }, + { + "id":7888, + "weight":1.0 + }, + { + "id":7890, + "weight":9.0 + }, + { + "id":7891, + "weight":1.0 + }, + { + "id":7893, + "weight":9.0 + }, + { + "id":7894, + "weight":1.0 + }, + { + "id":7896, + "weight":9.0 + }, + { + "id":7897, + "weight":1.0 + }, + { + "id":7898, + "weight":9.0 + }, + { + "id":7899, + "weight":9.0 + }, + { + "id":7900, + "weight":1.0 + }, + { + "id":7902, + "weight":9.0 + }, + { + "id":7903, + "weight":1.0 + }, + { + "id":7905, + "weight":9.0 + }, + { + "id":7906, + "weight":1.0 + }, + { + "id":7908, + "weight":1.0 + }, + { + "id":7909, + "weight":1.0 + }, + { + "id":7911, + "weight":9.0 + }, + { + "id":7912, + "weight":1.0 + }, + { + "id":7914, + "weight":9.0 + }, + { + "id":7915, + "weight":1.0 + }, + { + "id":7917, + "weight":3.0 + }, + { + "id":7918, + "weight":9.0 + }, + { + "id":7919, + "weight":1.0 + }, + { + "id":7920, + "weight":1.0 + }, + { + "id":7921, + "weight":1.0 + }, + { + "id":7939, + "weight":7.0 + }, + { + "id":7940, + "weight":7.0 + }, + { + "id":7941, + "weight":175.0 + }, + { + "id":7942, + "weight":8.0 + }, + { + "id":7943, + "weight":8.0 + }, + { + "id":7944, + "weight":4.0 + }, + { + "id":7945, + "weight":4.0 + }, + { + "id":7946, + "weight":4.0 + }, + { + "id":7947, + "weight":4.0 + }, + { + "id":7951, + "weight":9.0 + } +] \ No newline at end of file diff --git a/2006Scape Server/data/cfg/items.json b/2006Scape Server/data/cfg/items.json deleted file mode 100644 index 49c6b4ea..00000000 --- a/2006Scape Server/data/cfg/items.json +++ /dev/null @@ -1,263398 +0,0 @@ -[ - { - "examine": "The body of a Dwarf savaged by Goblins.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarf remains", - "id": "0", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These could be handy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tool kit", - "id": "1", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ammo for the Dwarf Cannon.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Cannonball", - "id": "2", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Construction notes for Dwarf cannon ammo.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nulodion's notes", - "id": "3", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make cannon ammunition.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ammo mould", - "id": "4", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old note book.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Instruction manual", - "id": "5", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cannon is built on this.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon base", - "id": "6", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500100" - } - ], - "name": "Cannon base", - "id": "7", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The mounting for the multicannon.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon stand", - "id": "8", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon stand", - "id": "9", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The barrels of the multicannon.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon barrels", - "id": "10", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon barrels", - "id": "11", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This powers the multicannon.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon furnace", - "id": "12", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "187500", - "highAlch": "0", - "shopValue": "187500" - } - ], - "name": "Cannon furnace", - "id": "13", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metal railing replacement.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Railing", - "id": "14", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cloth given to me by Sir Galahad.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Holy table napkin", - "id": "15", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small tin whistle.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Magic whistle", - "id": "16", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what happens when I ring it?", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Grail bell", - "id": "17", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It will point the way for me.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Magic gold feather", - "id": "18", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A holy and powerful artefact.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Holy grail", - "id": "19", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cog from some machinery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cog", - "id": "20", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cog from some machinery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cog", - "id": "21", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cog from some machinery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cog", - "id": "22", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cog from some machinery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cog", - "id": "23", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Doesn't look very tasty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat poison", - "id": "24", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wormy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red vine worm", - "id": "25", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hemenster fishing contest trophy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishing trophy", - "id": "26", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pass to the Hemenster fishing contest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishing pass", - "id": "27", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Drives away all known 6 legged creatures.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Insect repellent", - "id": "28", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Insect repellent", - "id": "29", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of wax.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of wax", - "id": "30", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of wax", - "id": "31", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lit spooky candle.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Lit black candle", - "id": "32", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lit candle.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Lit candle", - "id": "33", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lit candle.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Lit candle", - "id": "34", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This used to belong to King Arthur.", - "values": [ - { - "lowAlch": "200", - "highAlch": "20", - "shopValue": "200" - } - ], - "name": "Excalibur", - "id": "35", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 29, - "strengthBonus": 25, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 20, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "A candle.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Candle", - "id": "36", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Candle", - "id": "37", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spooky candle.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Black candle", - "id": "38", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an arrow with these.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze arrowtips", - "id": "39", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an arrow with these.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iron arrowtips", - "id": "40", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an arrow with these.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Steel arrowtips", - "id": "41", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an arrow with these.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Mithril arrowtips", - "id": "42", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an arrow with these.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Adamant arrowtips", - "id": "43", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an arrow with these.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Rune arrowtips", - "id": "44", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make bolts with these.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Opal bolttips", - "id": "45", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make bolts with these.", - "values": [ - { - "lowAlch": "56", - "highAlch": "0", - "shopValue": "56" - } - ], - "name": "Pearl bolttips", - "id": "46", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make bolts with these.", - "values": [ - { - "lowAlch": "95", - "highAlch": "0", - "shopValue": "95" - } - ], - "name": "Barb bolttips", - "id": "47", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to find a string for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Longbow (u)", - "id": "48", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Longbow (u)", - "id": "49", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to find a string for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Shortbow (u)", - "id": "50", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Shortbow (u)", - "id": "51", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden arrow shaft.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Arrow shaft", - "id": "52", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden arrow shaft with flights attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Headless arrow", - "id": "53", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung oak shortbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Oak shortbow (u)", - "id": "54", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Oak shortbow (u)", - "id": "55", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung oak longbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Oak longbow (u)", - "id": "56", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Oak longbow (u)", - "id": "57", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung willow longbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "92" - } - ], - "name": "Willow longbow (u)", - "id": "58", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "92" - } - ], - "name": "Willow longbow (u)", - "id": "59", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung willow shortbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Willow shortbow (u)", - "id": "60", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Willow shortbow (u)", - "id": "61", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung maple longbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "192" - } - ], - "name": "Maple longbow (u)", - "id": "62", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "192" - } - ], - "name": "Maple longbow (u)", - "id": "63", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung maple shortbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Maple shortbow (u)", - "id": "64", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Maple shortbow (u)", - "id": "65", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung yew longbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "384" - } - ], - "name": "Yew longbow (u)", - "id": "66", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "384" - } - ], - "name": "Yew longbow (u)", - "id": "67", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung yew shortbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Yew shortbow (u)", - "id": "68", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Yew shortbow (u)", - "id": "69", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung magic longbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "768" - } - ], - "name": "Magic longbow (u)", - "id": "70", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "768" - } - ], - "name": "Magic longbow (u)", - "id": "71", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung magic shortbow, I need a bowstring for this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "480" - } - ], - "name": "Magic shortbow (u)", - "id": "72", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "480" - } - ], - "name": "Magic shortbow (u)", - "id": "73", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A helmet, as worn by the minions of General Khazard.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Khazard helmet", - "id": "74", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Armour, as worn by the minions of General Khazard.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Khazard armour", - "id": "75", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 3, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These keys open the cells at the Khazard fight arena.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Khazard cell keys", - "id": "76", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 5, - "attackStab": 0, - "defenceStab": 11, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bottle of Khazard's worst brew.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Khali brew", - "id": "77", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Can only be fired with yew or magic bows.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ice arrows", - "id": "78", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lever to open something perhaps?", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Lever", - "id": "83", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The power in this staff causes it to vibrate gently.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Staff of armadyl", - "id": "84", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It catches the light!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shiny key", - "id": "85", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The amulet that Lucien gave you.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Pendant of lucien", - "id": "86", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yet another amulet.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Armadyl pendant", - "id": "87", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magic boots that make you lighter than normal.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Boots of lightness", - "id": "88", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magic boots that make you lighter than normal.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Boots of lightness", - "id": "89", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's very soft!", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Child's blanket", - "id": "90", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Guam potion.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Guam potion(unf)", - "id": "91", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Guam potion(unf)", - "id": "92", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Marrentill potion.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Marrentill potion(unf)", - "id": "93", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Marrentill potion(unf)", - "id": "94", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Tarromin potion.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Tarromin potion(unf)", - "id": "95", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Tarromin potion(unf)", - "id": "96", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Harralander potion.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Harralander potion(unf)", - "id": "97", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Harralander potion(unf)", - "id": "98", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Ranarr potion.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Ranarr potion(unf)", - "id": "99", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Ranarr potion(unf)", - "id": "100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Irit potion.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Irit potion(unf)", - "id": "101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Irit potion(unf)", - "id": "102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Avantoe potion.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Avantoe potion(unf)", - "id": "103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Avantoe potion(unf)", - "id": "104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Kwuarm potion.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Kwuarm potion(unf)", - "id": "105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Kwuarm potion(unf)", - "id": "106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Cadantine potion.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Cadantine potion(unf)", - "id": "107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Cadantine potion(unf)", - "id": "108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Dwarf Weed potion.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Dwarf weed potion(unf)", - "id": "109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Dwarf weed potion(unf)", - "id": "110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Torstol potion.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Torstol potion(unf)", - "id": "111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Torstol potion(unf)", - "id": "112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strength potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Strength potion(4)", - "id": "113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Strength potion(4)", - "id": "114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strength potion.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Strength potion(3)", - "id": "115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Strength potion(3)", - "id": "116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An strength potion.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Strength potion(2)", - "id": "117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Strength potion(2)", - "id": "118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An strength potion.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Strength potion(1)", - "id": "119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Strength potion(1)", - "id": "120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An attack potion.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Attack potion(3)", - "id": "121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Attack potion(3)", - "id": "122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An attack potion.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Attack potion(2)", - "id": "123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Attack potion(2)", - "id": "124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An attack potion.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Attack potion(1)", - "id": "125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Attack potion(1)", - "id": "126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stat restoration potion.", - "values": [ - { - "lowAlch": "88", - "highAlch": "0", - "shopValue": "88" - } - ], - "name": "Restore potion(3)", - "id": "127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "88", - "highAlch": "0", - "shopValue": "88" - } - ], - "name": "Restore potion(3)", - "id": "128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stat restoration potion.", - "values": [ - { - "lowAlch": "66", - "highAlch": "0", - "shopValue": "66" - } - ], - "name": "Restore potion(2)", - "id": "129", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "66", - "highAlch": "0", - "shopValue": "66" - } - ], - "name": "Restore potion(2)", - "id": "130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stat restoration potion.", - "values": [ - { - "lowAlch": "44", - "highAlch": "0", - "shopValue": "44" - } - ], - "name": "Restore potion(1)", - "id": "131", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "44", - "highAlch": "0", - "shopValue": "44" - } - ], - "name": "Restore potion(1)", - "id": "132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defence potion.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Defence potion(3)", - "id": "133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Defence potion(3)", - "id": "134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defence potion.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Defence potion(2)", - "id": "135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Defence potion(2)", - "id": "136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defence potion.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Defence potion(1)", - "id": "137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Defence potion(1)", - "id": "138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A restore prayer potion.", - "values": [ - { - "lowAlch": "152", - "highAlch": "0", - "shopValue": "152" - } - ], - "name": "Prayer potion(3)", - "id": "139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "152", - "highAlch": "0", - "shopValue": "152" - } - ], - "name": "Prayer potion(3)", - "id": "140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A restore prayer potion.", - "values": [ - { - "lowAlch": "114", - "highAlch": "0", - "shopValue": "114" - } - ], - "name": "Prayer potion(2)", - "id": "141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "114", - "highAlch": "0", - "shopValue": "114" - } - ], - "name": "Prayer potion(2)", - "id": "142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A restore prayer potion.", - "values": [ - { - "lowAlch": "76", - "highAlch": "0", - "shopValue": "76" - } - ], - "name": "Prayer potion(1)", - "id": "143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "76", - "highAlch": "0", - "shopValue": "76" - } - ], - "name": "Prayer potion(1)", - "id": "144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super attack potion.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Super attack(3)", - "id": "145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Super attack(3)", - "id": "146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super attack potion.", - "values": [ - { - "lowAlch": "135", - "highAlch": "0", - "shopValue": "135" - } - ], - "name": "Super attack(2)", - "id": "147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "135", - "highAlch": "0", - "shopValue": "135" - } - ], - "name": "Super attack(2)", - "id": "148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super attack potion.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Super attack(1)", - "id": "149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Super attack(1)", - "id": "150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishing potion.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Fishing potion(3)", - "id": "151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Fishing potion(3)", - "id": "152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishing potion.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Fishing potion(2)", - "id": "153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Fishing potion(2)", - "id": "154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishing potion.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Fishing potion(1)", - "id": "155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Fishing potion(1)", - "id": "156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super strength potion.", - "values": [ - { - "lowAlch": "220", - "highAlch": "0", - "shopValue": "220" - } - ], - "name": "Super strength(3)", - "id": "157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "220", - "highAlch": "0", - "shopValue": "220" - } - ], - "name": "Super strength(3)", - "id": "158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super strength potion.", - "values": [ - { - "lowAlch": "165", - "highAlch": "0", - "shopValue": "165" - } - ], - "name": "Super strength(2)", - "id": "159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "165", - "highAlch": "0", - "shopValue": "165" - } - ], - "name": "Super strength(2)", - "id": "160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super strength potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Super strength(1)", - "id": "161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Super strength(1)", - "id": "162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super defence potion.", - "values": [ - { - "lowAlch": "264", - "highAlch": "0", - "shopValue": "264" - } - ], - "name": "Super defence(3)", - "id": "163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "264", - "highAlch": "0", - "shopValue": "264" - } - ], - "name": "Super defence(3)", - "id": "164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super defence potion.", - "values": [ - { - "lowAlch": "198", - "highAlch": "0", - "shopValue": "198" - } - ], - "name": "Super defence(2)", - "id": "165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "198", - "highAlch": "0", - "shopValue": "198" - } - ], - "name": "Super defence(2)", - "id": "166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super defence potion.", - "values": [ - { - "lowAlch": "132", - "highAlch": "0", - "shopValue": "132" - } - ], - "name": "Super defence(1)", - "id": "167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "132", - "highAlch": "0", - "shopValue": "132" - } - ], - "name": "Super defence(1)", - "id": "168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ranging potion.", - "values": [ - { - "lowAlch": "288", - "highAlch": "0", - "shopValue": "288" - } - ], - "name": "Ranging potion(3)", - "id": "169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "288", - "highAlch": "0", - "shopValue": "288" - } - ], - "name": "Ranging potion(3)", - "id": "170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ranging potion.", - "values": [ - { - "lowAlch": "216", - "highAlch": "0", - "shopValue": "216" - } - ], - "name": "Ranging potion(2)", - "id": "171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "216", - "highAlch": "0", - "shopValue": "216" - } - ], - "name": "Ranging potion(2)", - "id": "172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ranging potion.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Ranging potion(1)", - "id": "173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Ranging potion(1)", - "id": "174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An antipoison potion.", - "values": [ - { - "lowAlch": "288", - "highAlch": "0", - "shopValue": "288" - } - ], - "name": "Antipoison(3)", - "id": "175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "288", - "highAlch": "0", - "shopValue": "288" - } - ], - "name": "Antipoison(3)", - "id": "176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An antipoison potion.", - "values": [ - { - "lowAlch": "216", - "highAlch": "0", - "shopValue": "216" - } - ], - "name": "Antipoison(2)", - "id": "177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "216", - "highAlch": "0", - "shopValue": "216" - } - ], - "name": "Antipoison(2)", - "id": "178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An antipoison potion.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Antipoison(1)", - "id": "179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Antipoison(1)", - "id": "180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super antipoison potion.", - "values": [ - { - "lowAlch": "288", - "highAlch": "0", - "shopValue": "288" - } - ], - "name": "Superantipoison(3)", - "id": "181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "288", - "highAlch": "0", - "shopValue": "288" - } - ], - "name": "Superantipoison(3)", - "id": "182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super antipoison potion.", - "values": [ - { - "lowAlch": "216", - "highAlch": "0", - "shopValue": "216" - } - ], - "name": "Superantipoison(2)", - "id": "183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "216", - "highAlch": "0", - "shopValue": "216" - } - ], - "name": "Superantipoison(2)", - "id": "184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super antipoison potion.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Superantipoison(1)", - "id": "185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Superantipoison(1)", - "id": "186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For use on daggers and projectiles.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Weapon poison", - "id": "187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "144", - "highAlch": "0", - "shopValue": "144" - } - ], - "name": "Weapon poison", - "id": "188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Zamorak Brew.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Zamorak brew(3)", - "id": "189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Zamorak brew(3)", - "id": "190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Zamorak Brew.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Zamorak brew(2)", - "id": "191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Zamorak brew(2)", - "id": "192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Zamorak Brew.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Zamorak brew(1)", - "id": "193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Zamorak brew(1)", - "id": "194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This is meant to be good for spots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potion", - "id": "195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potion", - "id": "196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cup of a strange brew...", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Poison chalice", - "id": "197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Poison chalice", - "id": "198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb", - "id": "220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems to be looking at me.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Eye of newt", - "id": "221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Eye of newt", - "id": "222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ewww!", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Red spiders' eggs", - "id": "223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item' eggs.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Red spiders' eggs", - "id": "224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The root of a limpwurt plant.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Limpwurt root", - "id": "225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Limpwurt root", - "id": "226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass vial containing water.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vial of water", - "id": "227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vial of water", - "id": "228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty glass vial.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vial", - "id": "229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vial", - "id": "230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Strange spiky grass.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Snape grass", - "id": "231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Snape grass", - "id": "232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can grind things for potions in this.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pestle and mortar", - "id": "233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pestle and mortar", - "id": "234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Finely ground horn of Unicorn.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Unicorn horn dust", - "id": "235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Unicorn horn dust", - "id": "236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This horn has restorative properties.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Unicorn horn", - "id": "237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Unicorn horn", - "id": "238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sour berries, used in potions.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "White berries", - "id": "239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "White berries", - "id": "240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Finely ground scale of Dragon.", - "values": [ - { - "lowAlch": "52", - "highAlch": "0", - "shopValue": "52" - } - ], - "name": "Dragon scale dust", - "id": "241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "52", - "highAlch": "0", - "shopValue": "52" - } - ], - "name": "Dragon scale dust", - "id": "242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large shiny scale.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Blue dragon scale", - "id": "243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Blue dragon scale", - "id": "244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An evil wine for an evil god.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wine of zamorak", - "id": "245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wine of zamorak", - "id": "246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They don't look very ripe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jangerberries", - "id": "247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jangerberries", - "id": "248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bitter green herb.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Clean guam", - "id": "249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Clean guam", - "id": "250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A herb used in poison cures.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Clean marrentill", - "id": "251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Clean marrentill", - "id": "252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Clean tarromin", - "id": "253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Clean tarromin", - "id": "254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Clean harralander", - "id": "255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Clean harralander", - "id": "256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Clean ranarr weed", - "id": "257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Clean ranarr weed", - "id": "258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Clean irit leaf", - "id": "259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Clean irit leaf", - "id": "260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Clean avantoe", - "id": "261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Clean avantoe", - "id": "262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Clean kwuarm", - "id": "263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Clean kwuarm", - "id": "264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Clean cadantine", - "id": "265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Clean cadantine", - "id": "266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Clean dwarf weed", - "id": "267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Clean dwarf weed", - "id": "268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Clean torstol", - "id": "269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Clean torstol", - "id": "270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like part of a machine.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pressure gauge", - "id": "271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps your pet fish strong and healthy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fish food", - "id": "272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This stuff looks nasty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Poison", - "id": "273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Doesn't seem very nice to the poor fishes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Poisoned fish food", - "id": "274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slightly smelly key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's slightly charred.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Rubber tube", - "id": "276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's pretty full.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Oil can", - "id": "277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sharp cattleprod.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Cattleprod", - "id": "278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Councillor Halgrive gave me this to kill some sheep.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Sheep feed", - "id": "279", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The suspicious-looking remains of a suspicious-looking sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sheep bones (1)", - "id": "280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The suspicious-looking remains of a suspicious-looking sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sheep bones (2)", - "id": "281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The suspicious-looking remains of a suspicious-looking sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sheep bones (3)", - "id": "282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The suspicious-looking remains of a suspicious-looking sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sheep bones (4)", - "id": "283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This should protect me from the plague, I hope!", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Plague jacket", - "id": "284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These should protect me from the plague, I hope!", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Plague trousers", - "id": "285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Armour designed to fit goblins.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Orange goblin mail", - "id": "286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Armour designed to fit goblins.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Blue goblin mail", - "id": "287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Armour designed to fit goblins.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Goblin mail", - "id": "288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Goblin mail", - "id": "289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This contains some vital research results.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Research package", - "id": "290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems to be written in some kind of code.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Notes", - "id": "291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on elven history in northern RuneScape.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Book on baxtorian", - "id": "292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This will unlock something.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A key", - "id": "293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small pebble with elven inscription.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glarial's pebble", - "id": "294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bright green gem set in a necklace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glarial's amulet", - "id": "295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An urn containing Glarial's ashes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glarial's urn", - "id": "296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty urn made for Glarial's ashes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glarial's urn", - "id": "297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This will unlock something.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A key", - "id": "298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magical seeds in a mithril case.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Mithril seeds", - "id": "299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bit of rat.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Rat's tail", - "id": "300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching lobsters.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lobster pot", - "id": "301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lobster pot", - "id": "302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching small fish.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Small fishing net", - "id": "303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Small fishing net", - "id": "304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching lots of fish.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Big fishing net", - "id": "305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Big fishing net", - "id": "306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching sardine or herring.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Fishing rod", - "id": "307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Fishing rod", - "id": "308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching salmon or trout.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Fly fishing rod", - "id": "309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Fly fishing rod", - "id": "310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching really big fish.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Harpoon", - "id": "311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Harpoon", - "id": "312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For use with a fishing rod.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Fishing bait", - "id": "313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for fly fishing.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Feather", - "id": "314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Shrimps", - "id": "315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Shrimps", - "id": "316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Raw shrimps", - "id": "317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Raw shrimps", - "id": "318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Anchovies", - "id": "319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Anchovies", - "id": "320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Raw anchovies", - "id": "321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Raw anchovies", - "id": "322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Sardine", - "id": "325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Sardine", - "id": "326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Raw sardine", - "id": "327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Raw sardine", - "id": "328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Salmon", - "id": "329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Salmon", - "id": "330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Raw salmon", - "id": "331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Raw salmon", - "id": "332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Trout", - "id": "333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Trout", - "id": "334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Raw trout", - "id": "335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Raw trout", - "id": "336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Giant carp", - "id": "337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Raw giant carp", - "id": "338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Cod", - "id": "339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Cod", - "id": "340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Raw cod", - "id": "341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Raw cod", - "id": "342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Raw herring", - "id": "345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Raw herring", - "id": "346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herring", - "id": "347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herring", - "id": "348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Raw pike", - "id": "349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Raw pike", - "id": "350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked Pike.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Pike", - "id": "351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Pike", - "id": "352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Raw mackerel", - "id": "353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Raw mackerel", - "id": "354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nicely cooked fish.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Mackerel", - "id": "355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Mackerel", - "id": "356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Raw tuna", - "id": "359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Raw tuna", - "id": "360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wow, this is a big fish.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Tuna", - "id": "361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Tuna", - "id": "362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Raw bass", - "id": "363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Raw bass", - "id": "364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wow, this is a big fish.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Bass", - "id": "365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Bass", - "id": "366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fish", - "id": "370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Raw swordfish", - "id": "371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Raw swordfish", - "id": "372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd better be careful eating this!", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Swordfish", - "id": "373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Swordfish", - "id": "374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt swordfish", - "id": "375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt swordfish", - "id": "376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Raw lobster", - "id": "377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Raw lobster", - "id": "378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks tricky to eat.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Lobster", - "id": "379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Lobster", - "id": "380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt lobster", - "id": "381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt lobster", - "id": "382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Raw shark", - "id": "383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Raw shark", - "id": "384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd better be careful eating this.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Shark", - "id": "385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Shark", - "id": "386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt shark", - "id": "387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt shark", - "id": "388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rare catch.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Raw manta ray", - "id": "389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Raw manta ray", - "id": "390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rare catch.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Manta ray", - "id": "391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Manta ray", - "id": "392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt manta ray", - "id": "393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt manta ray", - "id": "394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rare catch.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Raw sea turtle", - "id": "395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Raw sea turtle", - "id": "396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Tasty!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Sea turtle", - "id": "397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Sea turtle", - "id": "398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt sea turtle", - "id": "399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt sea turtle", - "id": "400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Slightly damp seaweed.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Seaweed", - "id": "401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Seaweed", - "id": "402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Slightly damp seaweed.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Edible seaweed", - "id": "403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Edible seaweed", - "id": "404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a rare oyster.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Oyster", - "id": "407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Oyster", - "id": "408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's empty.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Empty oyster", - "id": "409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Empty oyster", - "id": "410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could work wonders with a chisel on this pearl.", - "values": [ - { - "lowAlch": "112", - "highAlch": "0", - "shopValue": "112" - } - ], - "name": "Oyster pearl", - "id": "411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "112", - "highAlch": "0", - "shopValue": "112" - } - ], - "name": "Oyster pearl", - "id": "412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could work wonders with a chisel on these pearls.", - "values": [ - { - "lowAlch": "1400", - "highAlch": "0", - "shopValue": "1400" - } - ], - "name": "Oyster pearls", - "id": "413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1400", - "highAlch": "0", - "shopValue": "1400" - } - ], - "name": "Oyster pearls", - "id": "414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An expensive colourless liquid.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Ethenea", - "id": "415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This isn't worth much.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Liquid honey", - "id": "416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's highly poisonous.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sulphuric broline", - "id": "417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Probably best I don't keep this too long.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plague sample", - "id": "418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A special kind of paper.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Touch paper", - "id": "419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Apparently it distills.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Distillator", - "id": "420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yup. It's an amulet.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Lathas' amulet", - "id": "421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Birds love this stuff!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird feed", - "id": "422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Opens things.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's full of pigeons.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pigeon cage", - "id": "424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's empty...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pigeon cage", - "id": "425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Top half of a priest suit.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Priest gown", - "id": "426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Priest gown", - "id": "427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bottom half of a priest suit.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Priest gown", - "id": "428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Priest gown", - "id": "429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Medical looking.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Doctors' gown", - "id": "430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very strong spirit brewed in Karamja.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Karamjan rum", - "id": "431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to One eyed Hector's chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chest key", - "id": "432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pirates don't have the best handwriting...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pirate message", - "id": "433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some hard dry clay.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clay", - "id": "434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clay", - "id": "435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Copper ore", - "id": "436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Copper ore", - "id": "437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Tin ore", - "id": "438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Tin ore", - "id": "439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Iron ore", - "id": "440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Iron ore", - "id": "441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Silver ore", - "id": "442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Silver ore", - "id": "443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Gold ore", - "id": "444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Gold ore", - "id": "445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "'perfect' gold ore", - "id": "446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "162", - "highAlch": "0", - "shopValue": "162" - } - ], - "name": "Mithril ore", - "id": "447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "162", - "highAlch": "0", - "shopValue": "162" - } - ], - "name": "Mithril ore", - "id": "448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Adamantite ore", - "id": "449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Adamantite ore", - "id": "450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "0", - "shopValue": "3200" - } - ], - "name": "Runite ore", - "id": "451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "0", - "shopValue": "3200" - } - ], - "name": "Runite ore", - "id": "452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hmm a non-renewable energy source!", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Coal", - "id": "453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Coal", - "id": "454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The official Alfred Grimhand bar crawl card.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Barcrawl card", - "id": "455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's empty!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is 1 scorpion inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 2 scorpions inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 2 scorpions inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is 1 scorpion inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 2 scorpions inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is 1 scorpion inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 3 scorpions inside.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scorpion cage", - "id": "463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what this tastes like?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange fruit", - "id": "464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange fruit", - "id": "465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useless without the head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pickaxe handle", - "id": "466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pickaxe handle", - "id": "467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nurmof can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken pickaxe", - "id": "468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken pickaxe", - "id": "469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nurmof can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken pickaxe", - "id": "470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken pickaxe", - "id": "471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nurmof can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Broken pickaxe", - "id": "472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Broken pickaxe", - "id": "473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nurmof can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "43" - } - ], - "name": "Broken pickaxe", - "id": "474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "43" - } - ], - "name": "Broken pickaxe", - "id": "475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nurmof can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "107" - } - ], - "name": "Broken pickaxe", - "id": "476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "107" - } - ], - "name": "Broken pickaxe", - "id": "477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nurmof can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "660" - } - ], - "name": "Broken pickaxe", - "id": "478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "660" - } - ], - "name": "Broken pickaxe", - "id": "479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze pick head", - "id": "480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze pick head", - "id": "481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "139", - "highAlch": "0", - "shopValue": "139" - } - ], - "name": "Iron pick head", - "id": "482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "139", - "highAlch": "0", - "shopValue": "139" - } - ], - "name": "Iron pick head", - "id": "483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "499", - "highAlch": "0", - "shopValue": "499" - } - ], - "name": "Steel pick head", - "id": "484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "499", - "highAlch": "0", - "shopValue": "499" - } - ], - "name": "Steel pick head", - "id": "485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "1299", - "highAlch": "0", - "shopValue": "1299" - } - ], - "name": "Mithril pick head", - "id": "486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1299", - "highAlch": "0", - "shopValue": "1299" - } - ], - "name": "Mithril pick head", - "id": "487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "3199", - "highAlch": "0", - "shopValue": "3199" - } - ], - "name": "Adamant pick head", - "id": "488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3199", - "highAlch": "0", - "shopValue": "3199" - } - ], - "name": "Adamant pick head", - "id": "489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "19199" - } - ], - "name": "Rune pick head", - "id": "490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "19199" - } - ], - "name": "Rune pick head", - "id": "491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useless without the head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axe handle", - "id": "492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axe handle", - "id": "493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken axe", - "id": "494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken axe", - "id": "495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken axe", - "id": "496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken axe", - "id": "497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken axe", - "id": "498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken axe", - "id": "499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Broken axe", - "id": "500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Broken axe", - "id": "501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Broken axe", - "id": "502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Broken axe", - "id": "503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "43", - "highAlch": "0", - "shopValue": "43" - } - ], - "name": "Broken axe", - "id": "504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "43", - "highAlch": "0", - "shopValue": "43" - } - ], - "name": "Broken axe", - "id": "505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "427", - "highAlch": "0", - "shopValue": "427" - } - ], - "name": "Broken axe", - "id": "506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "427", - "highAlch": "0", - "shopValue": "427" - } - ], - "name": "Broken axe", - "id": "507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Bronze axe head", - "id": "508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Bronze axe head", - "id": "509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "55", - "highAlch": "0", - "shopValue": "55" - } - ], - "name": "Iron axe head", - "id": "510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "55", - "highAlch": "0", - "shopValue": "55" - } - ], - "name": "Iron axe head", - "id": "511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "199", - "highAlch": "0", - "shopValue": "199" - } - ], - "name": "Steel axe head", - "id": "512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "199", - "highAlch": "0", - "shopValue": "199" - } - ], - "name": "Steel axe head", - "id": "513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "383", - "highAlch": "0", - "shopValue": "383" - } - ], - "name": "Black axe head", - "id": "514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "383", - "highAlch": "0", - "shopValue": "383" - } - ], - "name": "Black axe head", - "id": "515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "519", - "highAlch": "0", - "shopValue": "519" - } - ], - "name": "Mithril axe head", - "id": "516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "519", - "highAlch": "0", - "shopValue": "519" - } - ], - "name": "Mithril axe head", - "id": "517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "1279", - "highAlch": "0", - "shopValue": "1279" - } - ], - "name": "Adamant axe head", - "id": "518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1279", - "highAlch": "0", - "shopValue": "1279" - } - ], - "name": "Adamant axe head", - "id": "519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7679" - } - ], - "name": "Rune axe head", - "id": "520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7679" - } - ], - "name": "Rune axe head", - "id": "521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't fancy eating this now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted beef", - "id": "522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't fancy eating this now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted rat", - "id": "523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't fancy eating this now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted bear", - "id": "524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't fancy eating this now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted chicken", - "id": "525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bones are for burying!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones", - "id": "526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones", - "id": "527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bones are for burying!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt bones", - "id": "528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt bones", - "id": "529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bones are for burying!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bat bones", - "id": "530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bat bones", - "id": "531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ew it's a pile of bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big bones", - "id": "532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big bones", - "id": "533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ew it's a pile of bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Babydragon bones", - "id": "534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Babydragon bones", - "id": "535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These would feed a dog for months!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bones", - "id": "536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bones", - "id": "537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps a druid's knees nice and warm.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Druid's robe", - "id": "538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Druid's robe", - "id": "539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I feel closer to the gods when I am wearing this.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Druid's robe", - "id": "540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Druid's robe", - "id": "541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps a monk's knees nice and warm.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Monk's bottoms", - "id": "542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Monk's robe", - "id": "543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I feel closer to the gods when I am wearing this.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Monk's robetop", - "id": "544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Monk's robe", - "id": "545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I feel closer to the gods when I am wearing this.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Shade robe", - "id": "546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Shade robe", - "id": "547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "If a shade had knees, this would keep them nice and warm.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Shade robe", - "id": "548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Shade robe", - "id": "549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Issued by RuneScape Council to all new citizens.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Newcomer map", - "id": "550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Newcomer map", - "id": "551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It lets me talk to ghosts.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Ghostspeak amulet", - "id": "552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooooh spooky!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skull", - "id": "553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Fire rune", - "id": "554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Water rune", - "id": "555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Air rune", - "id": "556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Earth rune", - "id": "557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for basic level missile spells.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Mind rune", - "id": "558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for curse spells.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Body rune", - "id": "559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for medium level missile spells.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Death rune", - "id": "560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for alchemy spells.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Nature rune", - "id": "561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for low level missile spells.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Chaos rune", - "id": "562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for teleport spells.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Law rune", - "id": "563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for enchant spells.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Cosmic rune", - "id": "564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for high level missile spells.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Blood rune", - "id": "565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for high level curse spells.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Soul rune", - "id": "566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd prefer it if it was powered.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Unpowered orb", - "id": "567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Unpowered orb", - "id": "568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic glowing orb.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Fire orb", - "id": "569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Fire orb", - "id": "570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic glowing orb.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Water orb", - "id": "571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Water orb", - "id": "572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic glowing orb.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Air orb", - "id": "573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Air orb", - "id": "574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic glowing orb.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Earth orb", - "id": "575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Earth orb", - "id": "576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can do magic better in this.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wizard robe", - "id": "577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wizard robe", - "id": "578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat", - "id": "579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat", - "id": "580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can do magic better in this.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Black robe", - "id": "581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Black robe", - "id": "582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bailing bucket.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bailing bucket", - "id": "583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bailing bucket", - "id": "584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bailing bucket full of salty water.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bailing bucket", - "id": "585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bailing bucket", - "id": "586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strange glowing green orb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orb of protection", - "id": "587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Two strange glowing green orbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orbs of protection", - "id": "588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an amulet of protection given to me by the gnomes.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome amulet", - "id": "589", - "bonuses": [ - { - "defenceCrush": 13, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 13, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for lighting a fire.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tinderbox", - "id": "590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tinderbox", - "id": "591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heap of ashes.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ashes", - "id": "592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ashes", - "id": "593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lit home-made torch.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Torch", - "id": "594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lit home-made torch.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Torch", - "id": "595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unlit home-made torch.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Torch", - "id": "596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Torch", - "id": "597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with bronze heads and oil soaked cloth.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze fire arrows", - "id": "598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Who says it's just manners that maketh man?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Double helix", - "id": "599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on the history of Astrology in RuneScape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Astrology book", - "id": "600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small key for a jail door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Keep key", - "id": "601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unusual clay mould in the shape of a disc.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lens mould", - "id": "602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A perfectly circular disc of glass.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lens", - "id": "603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slender bone shard given to you by Zadimus.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone shard", - "id": "604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bone key fashioned from a shard of bone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone key", - "id": "605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stone plaque with carved letters in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone-plaque", - "id": "606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient tattered scroll.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tattered scroll", - "id": "607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient crumpled scroll.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crumpled scroll", - "id": "608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of the Zombie Queen.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rashiliyia corpse", - "id": "609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of Zadimus.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zadimus corpse", - "id": "610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical crystal sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locating crystal", - "id": "611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical crystal sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locating crystal", - "id": "612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical crystal sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locating crystal", - "id": "613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical crystal sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locating crystal", - "id": "614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical crystal sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locating crystal", - "id": "615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A curious looking neck ornament.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beads of the dead", - "id": "616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lovely money!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coins", - "id": "617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Beads carved out of a bone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone beads", - "id": "618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows you to rest in the luxurious Paramayer Inn.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Paramaya ticket", - "id": "619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Paramaya ticket", - "id": "620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows you passage on the 'Lady of the waves' ship.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ship ticket", - "id": "621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ship ticket", - "id": "622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ivory sword pommel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sword pommel", - "id": "623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Notes taken from the tomb of Bervirius.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bervirius notes", - "id": "624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A decorated belt used to trade information between distant villages.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Wampum belt", - "id": "625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're soft and silky.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "626", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're soft and silky.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "628", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're soft and silky.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "630", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're soft and silky.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "632", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're soft and silky.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "634", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Boots", - "id": "635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The ultimate in gnome design.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "636", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The ultimate in gnome design.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "638", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The ultimate in gnome design.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "640", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The ultimate in gnome design.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "642", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The ultimate in gnome design.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "644", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe top", - "id": "645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by Tree Gnomes.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by Tree Gnomes.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by Tree Gnomes.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by Tree Gnomes.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by Tree Gnomes.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Robe bottoms", - "id": "655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Hat", - "id": "665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Picture of a posing Paladin.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Portrait", - "id": "666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Faladian Knight's sword.", - "values": [ - { - "lowAlch": "200", - "highAlch": "9", - "shopValue": "200" - } - ], - "name": "Blurite sword", - "id": "667", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 10, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Definitely blue.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Blurite ore", - "id": "668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A receptacle for specimens!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Specimen jar", - "id": "669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small brush used to clean rock samples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Specimen brush", - "id": "670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A carefully-kept-safe rock sample.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock sample 1", - "id": "671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A carefully-kept-safe rock sample.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock sample 2", - "id": "672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A carefully-kept-safe rock sample.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock sample 3", - "id": "673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rough shaped piece of rock.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock sample", - "id": "674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small pick for cracking rock samples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock pick", - "id": "675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for digging!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trowel", - "id": "676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty tray for panning.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Panning tray", - "id": "677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This tray contains gold.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Panning tray", - "id": "678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This tray contains mud.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Panning tray", - "id": "679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pure, lovely gold!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nuggets", - "id": "680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unusual symbol of a lesser-known god.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zaros talisman", - "id": "681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scroll waiting to be stamped.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unstamped letter", - "id": "682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stamped scroll of recommendation.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stamped letter", - "id": "683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to hold up trousers!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Belt buckle", - "id": "684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Phew!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Old boot", - "id": "685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A decent enough weapon gone rusty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rusty sword", - "id": "686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This must have been shot at high speed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken arrow", - "id": "687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not Dick Whittington's helper at all!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Buttons", - "id": "688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I pity the poor person beaten with this!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken staff", - "id": "689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Watch those feet!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken glass", - "id": "690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The owner has passed the Earth Sciences level 1 exam.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Level 1 certificate", - "id": "691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The owner has passed Earth Sciences level 2 exam.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Level 2 certificate", - "id": "692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The owner has passed Earth Sciences level 3 exam.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Level 3 certificate", - "id": "693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Smashing!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ceramic remains", - "id": "694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Now if I can just find a tooth fairy to sell this to...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Old tooth", - "id": "695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A letter inviting me to use the private digshafts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Invitation letter", - "id": "696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Beyond repair.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Damaged armour", - "id": "697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "No use to me...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken armour", - "id": "698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old stone slab with writing on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone tablet", - "id": "699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An acrid chemical.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chemical powder", - "id": "700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An acrid chemical.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ammonium nitrate", - "id": "701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong chemical.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unidentified liquid", - "id": "702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong chemical.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nitroglycerin", - "id": "703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Charcoal, crushed to small pieces!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground charcoal", - "id": "704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of strong chemicals.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed chemicals", - "id": "705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of strong chemicals.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed chemicals", - "id": "706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of strong chemicals.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chemical compound", - "id": "707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The root of an Arcenia plant.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Arcenia root", - "id": "708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This fits a chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chest key", - "id": "709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vessel for holding plants.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vase", - "id": "710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's about chemicals, judging from its cover.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book on chemicals", - "id": "711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A refreshing cuppa.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cup of tea", - "id": "712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Truly fun to have around.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enjifern", - "id": "713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Notes given to you by Radimus Erkle, it includes a partially completed map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Radimus notes", - "id": "714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Notes given to you by Radimus Erkle, it includes a partially completed map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Radimus notes", - "id": "715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It makes a loud but interesting sound when swung in the air.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bull roarer", - "id": "716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scrawled note with spidery writing on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrawled note", - "id": "717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scrawled note with spidery writing on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A scribbled note", - "id": "718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scrawled note with spidery writing on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrumpled note", - "id": "719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rough sketch of a bowl shaped vessel given to you by Gujuo.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Sketch", - "id": "720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A specially made bowl constructed out of pure gold.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Gold bowl", - "id": "721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A specially made bowl constructed out of pure gold and blessed.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Blessed gold bowl", - "id": "722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A specially made golden bowl with water.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Golden bowl", - "id": "723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A specially made bowl constructed out of pure gold. It has pure water in it.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Golden bowl", - "id": "724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed golden bowl. It has water in it.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Golden bowl", - "id": "725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed golden bowl. It has pure sacred water in it.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Golden bowl", - "id": "726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of nature's pipes.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Hollow reed", - "id": "727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Hollow reed", - "id": "728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like the Shamans personal notes...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shamans tome", - "id": "729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient tome on Demonology.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book of binding", - "id": "730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted empty glass vial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted vial", - "id": "731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of holy water, good against certain demons.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Holy water", - "id": "732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fragments of a broken container.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Smashed glass", - "id": "733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Smashed glass", - "id": "734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These need to be germinated before they can be used.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yommi tree seeds", - "id": "735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are germinated and ready to be planted in fertile soil.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yommi tree seeds", - "id": "736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a mixture of Snakeweed and water. Needs another ingredient.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snakeweed mixture", - "id": "737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a mixture of Ardrigal and water. Needs another ingredient.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ardrigal mixture", - "id": "738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bravery potion for which Gujuo gave you the details, let's hope it works.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bravery potion", - "id": "739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strange blue wizards hat.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue hat", - "id": "740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like it's been snapped off of something.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chunk of crystal", - "id": "741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like it's been snapped off of something.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hunk of crystal", - "id": "742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like it's been snapped off of something.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lump of crystal", - "id": "743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heart shaped crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Heart crystal", - "id": "744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heart shaped crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Heart crystal", - "id": "745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black obsidian dagger, it has a strange aura about it.", - "values": [ - { - "lowAlch": "1", - "highAlch": "5", - "shopValue": "1" - } - ], - "name": "Dark dagger", - "id": "746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 3, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black obsidian dagger, it has a strange aura about it - it seems to be glowing.", - "values": [ - { - "lowAlch": "1", - "highAlch": "5", - "shopValue": "1" - } - ], - "name": "Glowing dagger", - "id": "747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 3, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful spell for good.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Holy force", - "id": "748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A well carved totem pole made from the trunk of a Yommi tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yommi totem", - "id": "749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A gilded totem pole from the Kharazi tribe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded totem", - "id": "750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ball used in Gnomeball.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnomeball", - "id": "751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnomeball", - "id": "752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Poisonous berries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cadava berries", - "id": "753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cadava berries", - "id": "754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A message from Juliet to Romeo.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Message", - "id": "755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'm meant to give this to Juliet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cadava potion", - "id": "756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Shield of Arrav by A R Wright.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book", - "id": "757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to get into the Phoenix Gang HQ.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to the Phoenix Gang's weapons store.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An intelligence report.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Intel report", - "id": "761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Scroll", - "id": "762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of the Shield of Arrav.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken shield", - "id": "763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken shield", - "id": "764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of the Shield of Arrav.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken shield", - "id": "765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken shield", - "id": "766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Former property of the Phoenix Gang.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Phoenix crossbow", - "id": "767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 6, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Phoenix crossbow", - "id": "768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this to claim a reward from the King.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Certificate", - "id": "769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Certificate", - "id": "770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A limb of the fabled Dramen tree.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Dramen branch", - "id": "771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Crafted from a Dramen tree branch.", - "values": [ - { - "lowAlch": "15", - "highAlch": "-1", - "shopValue": "15" - } - ], - "name": "Dramen staff", - "id": "772", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 10, - "defenceRange": 0, - "attackStab": -1, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "A perfect ruby ring.", - "values": [ - { - "lowAlch": "1000000", - "highAlch": "0", - "shopValue": "1000000" - } - ], - "name": "'perfect' ring", - "id": "773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A perfect ruby necklace.", - "values": [ - { - "lowAlch": "2175", - "highAlch": "0", - "shopValue": "2175" - } - ], - "name": "'perfect' necklace", - "id": "774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These gauntlets empower with a greater ability to cook fish.", - "values": [ - { - "lowAlch": "1", - "highAlch": "2", - "shopValue": "1" - } - ], - "name": "Cooking gauntlets", - "id": "775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 2, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These gauntlets empower the bearer whilst making gold.", - "values": [ - { - "lowAlch": "1", - "highAlch": "2", - "shopValue": "1" - } - ], - "name": "Goldsmith gauntlet", - "id": "776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 2, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These gauntlets empower spell casters.", - "values": [ - { - "lowAlch": "1", - "highAlch": "2", - "shopValue": "1" - } - ], - "name": "Chaos gauntlets", - "id": "777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 2, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "My reward for assisting the Fitzharmon family.", - "values": [ - { - "lowAlch": "1", - "highAlch": "2", - "shopValue": "1" - } - ], - "name": "Steel gauntlets", - "id": "778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 2, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fragment of the Fitzharmon family crest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crest part", - "id": "779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fragment of the Fitzharmon family crest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crest part", - "id": "780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fragment of the Fitzharmon family crest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crest part", - "id": "781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Fitzharmon family crest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Family crest", - "id": "782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sample of the bark from the Grand Tree.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Bark sample", - "id": "783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book to translate the ancient gnome language into English.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Translation book", - "id": "784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps I should read it and see what Glough is up to!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Glough's journal", - "id": "785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hazelmere wrote something down on this scroll.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Hazelmere's scroll", - "id": "786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An order from the Karamja shipyard.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lumber order", - "id": "787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to Glough's chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glough's key", - "id": "788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Twigs bound together in the shape of a T.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Twigs", - "id": "789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Twigs bound together in the shape of a U.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Twigs", - "id": "790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Twigs bound together in the shape of a Z.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Twigs", - "id": "791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Twigs bound together in the shape of a O.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Twigs", - "id": "792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient rock with strange magical properties.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Daconia rock", - "id": "793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are plans for an invasion!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Invasion plans", - "id": "794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A model of a Karamja warship.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "War ship", - "id": "795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An exploding vial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Exploding vial", - "id": "796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of herbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herb bowl", - "id": "797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A grinder.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grinder", - "id": "798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing axe.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Bronze thrownaxe", - "id": "800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing axe.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Iron thrownaxe", - "id": "801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing axe.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Steel thrownaxe", - "id": "802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing axe.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Mithril thrownaxe", - "id": "803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 12, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing axe.", - "values": [ - { - "lowAlch": "176", - "highAlch": "0", - "shopValue": "176" - } - ], - "name": "Adamnt thrownaxe", - "id": "804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing axe.", - "values": [ - { - "lowAlch": "440", - "highAlch": "0", - "shopValue": "440" - } - ], - "name": "Rune thrownaxe", - "id": "805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 26, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with a bronze tip.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze dart", - "id": "806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with an iron tip.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iron dart", - "id": "807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with a steel tip.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel dart", - "id": "808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with a mithril tip.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Mithril dart", - "id": "809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with an adamantite tip.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Adamant dart", - "id": "810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with a rune tip.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Rune dart", - "id": "811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a bronze tip.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze dart(p)", - "id": "812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with an iron tip.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iron dart(p)", - "id": "813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a steel tip.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel dart(p)", - "id": "814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a mithril tip.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Mithril dart(p)", - "id": "815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with an adamantite tip.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Adamant dart(p)", - "id": "816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a rune tip.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Rune dart(p)", - "id": "817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 18, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with a poisoned tip.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Poisoned dart(p)", - "id": "818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly looking dart tip made of bronze - needs feathers for flight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze dart tip", - "id": "819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly looking dart tip made of iron - needs feathers for flight.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron dart tip", - "id": "820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly looking dart tip made of steel - needs feathers for flight.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Steel dart tip", - "id": "821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly looking dart tip made of mithril - needs feathers for flight.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Mithril dart tip", - "id": "822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly looking dart tip made of adamantite - needs feathers for flight.", - "values": [ - { - "lowAlch": "36", - "highAlch": "0", - "shopValue": "36" - } - ], - "name": "Adamant dart tip", - "id": "823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly looking dart tip made of runite - needs feathers for flight.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Rune dart tip", - "id": "824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze tipped javelin.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bronze javelin", - "id": "825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron tipped javelin.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Iron javelin", - "id": "826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel tipped javelin.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Steel javelin", - "id": "827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 12, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril tipped javelin.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Mithril javelin", - "id": "828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamantite tipped javelin.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Adamant javelin", - "id": "829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 24, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune tipped javelin.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune javelin", - "id": "830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 38, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze tipped javelin.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bronze javelin(p)", - "id": "831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron tipped javelin.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Iron javelin(p)", - "id": "832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel tipped javelin.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Steel javelin(p)", - "id": "833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 12, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril tipped javelin.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Mithril javelin(p)", - "id": "834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamantite tipped javelin.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Adamant javelin(p)", - "id": "835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 24, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune tipped javelin.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune javelin(p)", - "id": "836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 38, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This fires crossbow bolts.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Crossbow", - "id": "837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 6, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Crossbow", - "id": "838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy bow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Longbow", - "id": "839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Longbow", - "id": "840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Short but effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Shortbow", - "id": "841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Shortbow", - "id": "842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shortbow made out of oak, still effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Oak shortbow", - "id": "843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 14, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Oak shortbow", - "id": "844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy bow made out of oak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Oak longbow", - "id": "845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 14, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Oak longbow", - "id": "846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy bow made out of willow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "192" - } - ], - "name": "Willow longbow", - "id": "847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 20, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "192" - } - ], - "name": "Willow longbow", - "id": "848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shortbow made out of willow, still effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Willow shortbow", - "id": "849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 20, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Willow shortbow", - "id": "850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy bow made out of Maple.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "384" - } - ], - "name": "Maple longbow", - "id": "851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 29, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "384" - } - ], - "name": "Maple longbow", - "id": "852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shortbow made out of Maple, still effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Maple shortbow", - "id": "853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 29, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Maple shortbow", - "id": "854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy bow made out of yew.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "768" - } - ], - "name": "Yew longbow", - "id": "855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 47, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "768" - } - ], - "name": "Yew longbow", - "id": "856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 47, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shortbow made out of yew, still effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "480" - } - ], - "name": "Yew shortbow", - "id": "857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 47, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "480" - } - ], - "name": "Yew shortbow", - "id": "858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1536" - } - ], - "name": "Magic longbow", - "id": "859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 69, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1536" - } - ], - "name": "Magic longbow", - "id": "860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Short and magical, but still effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "960" - } - ], - "name": "Magic shortbow", - "id": "861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 69, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "960" - } - ], - "name": "Magic shortbow", - "id": "862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron knife", - "id": "863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze knife", - "id": "864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Steel knife", - "id": "865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Mithril knife", - "id": "866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "66", - "highAlch": "0", - "shopValue": "66" - } - ], - "name": "Adamant knife", - "id": "867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "167", - "highAlch": "0", - "shopValue": "167" - } - ], - "name": "Rune knife", - "id": "868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 25, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "19", - "highAlch": "0", - "shopValue": "19" - } - ], - "name": "Black knife", - "id": "869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze knife(p)", - "id": "870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron knife(p)", - "id": "871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel knife(p)", - "id": "872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Mithril knife(p)", - "id": "873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black knife(p)", - "id": "874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "66", - "highAlch": "0", - "shopValue": "66" - } - ], - "name": "Adamant knife(p)", - "id": "875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 25, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "166", - "highAlch": "0", - "shopValue": "166" - } - ], - "name": "Rune knife(p)", - "id": "876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good if you have a crossbow!", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Bolts", - "id": "877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vicious poisoned bolts.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Bolts(p)", - "id": "878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Great if you have a crossbow!", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Opal bolts", - "id": "879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful if you have a crossbow!", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Pearl bolts", - "id": "880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Great if you have a crossbow!", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Barbed bolts", - "id": "881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with bronze heads.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze arrow", - "id": "882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze arrow(p)", - "id": "883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 7, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with iron heads.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron arrow", - "id": "884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron arrow(p)", - "id": "885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with steel heads.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Steel arrow", - "id": "886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 16, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Steel arrow(p)", - "id": "887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 16, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with mithril heads.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Mithril arrow", - "id": "888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 22, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Mithril arrow(p)", - "id": "889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 22, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with adamantite heads.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Adamant arrow", - "id": "890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 31, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Adamant arrow(p)", - "id": "891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 31, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with rune heads.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune arrow", - "id": "892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 49, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune arrow(p)", - "id": "893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 49, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These bronze headed arrows are ablaze with fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze fire arrows", - "id": "942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ugh! It's wriggling!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm", - "id": "943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm", - "id": "944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rope.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Throwing rope", - "id": "945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dangerous looking knife.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Knife", - "id": "946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Knife", - "id": "947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would make warm clothing.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bear fur", - "id": "948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bear fur", - "id": "949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sheet of silk.", - "values": [ - { - "lowAlch": "4000", - "highAlch": "0", - "shopValue": "4000" - } - ], - "name": "Silk", - "id": "950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4000", - "highAlch": "0", - "shopValue": "4000" - } - ], - "name": "Silk", - "id": "951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slightly muddy spade.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Spade", - "id": "952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Spade", - "id": "953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A coil of rope.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Rope", - "id": "954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Rope", - "id": "955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Get your axes from Bob's Axes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flier", - "id": "956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flier", - "id": "957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would make warm clothing.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Grey wolf fur", - "id": "958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Grey wolf fur", - "id": "959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plank of wood!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plank", - "id": "960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plank", - "id": "961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to pull this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Christmas cracker", - "id": "962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Christmas cracker", - "id": "963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooooh spooky!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skull", - "id": "964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skull", - "id": "965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fraction of a roof.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tile", - "id": "966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tile", - "id": "967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rock", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for making notes.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Papyrus", - "id": "970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Papyrus", - "id": "971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used papyrus, it has squiggles all over it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Papyrus", - "id": "972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lump of charcoal.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Charcoal", - "id": "973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Charcoal", - "id": "974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jungle specific slashing device.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Machete", - "id": "975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 6, - "strengthBonus": 5, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cooking pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking pot", - "id": "977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking pot", - "id": "978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to get out of Thordur's blackhole.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Disk of returning", - "id": "981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Disk of returning", - "id": "982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Opens a door that leads into a dungeon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brass key", - "id": "983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brass key", - "id": "984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The tooth end of the mysterious Crystal Key. Can you find the other half?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tooth half of a key", - "id": "985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tooth half of a key", - "id": "986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The loop end of the mysterious Crystal Key. Can you find the other half?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Loop half of a key", - "id": "987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Loop half of a key", - "id": "988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very rare and mysterious key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal key", - "id": "989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal key", - "id": "990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like the key to a chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Muddy key", - "id": "991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Muddy key", - "id": "992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You get a sense of dread from this key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sinister key", - "id": "993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sinister key", - "id": "994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lovely money!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coins", - "id": "995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mostly clean apron.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "White apron", - "id": "1005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "White apron", - "id": "1006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bright red cape.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cape", - "id": "1007", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cape", - "id": "1008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd prefer a gold one.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Brass necklace", - "id": "1009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Brass necklace", - "id": "1010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Leg covering favoured by women and wizards.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue skirt", - "id": "1011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue skirt", - "id": "1012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ladies skirt.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Pink skirt", - "id": "1013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Pink skirt", - "id": "1014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Clothing favoured by women and dark wizards.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Black skirt", - "id": "1015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Black skirt", - "id": "1016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat", - "id": "1017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat", - "id": "1018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warm black cape.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Cape", - "id": "1019", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Cape", - "id": "1020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick blue cape.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1021", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick yellow cape.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1023", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black piece of cloth on a string.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Eye patch", - "id": "1025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Eye patch", - "id": "1026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick green cape.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1027", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick purple cape.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1029", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick orange cape.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1031", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Cape", - "id": "1032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A robe worn by worshippers of Zamorak.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Zamorak robe", - "id": "1033", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Zamorak robe", - "id": "1034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A robe worn by worshippers of Zamorak.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Zamorak robe", - "id": "1035", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Zamorak robe", - "id": "1036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rabbit-like adornment.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bunny ears", - "id": "1037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red partyhat", - "id": "1038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red partyhat", - "id": "1039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow partyhat", - "id": "1040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow partyhat", - "id": "1041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue partyhat", - "id": "1042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue partyhat", - "id": "1043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green partyhat", - "id": "1044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green partyhat", - "id": "1045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple partyhat", - "id": "1046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple partyhat", - "id": "1047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White partyhat", - "id": "1048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White partyhat", - "id": "1049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a Santa hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Santa hat", - "id": "1050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Santa hat", - "id": "1051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by members of the Legends Guild.", - "values": [ - { - "lowAlch": "450", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Cape of legends", - "id": "1052", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 7, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": 7 - } - ] - }, - { - "examine": "Aaaarrrghhh ... I'm a monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green h'ween mask", - "id": "1053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green h'ween mask", - "id": "1054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Aaaarrrghhh ... I'm a monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue h'ween mask", - "id": "1055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue h'ween mask", - "id": "1056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Aaaarrrghhh ... I'm a monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red h'ween mask", - "id": "1057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red h'ween mask", - "id": "1058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Leather gloves", - "id": "1059", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Leather gloves", - "id": "1060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Comfortable leather boots.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Leather boots", - "id": "1061", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Leather boots", - "id": "1062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Better than no armour!", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Leather vambraces", - "id": "1063", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Leather vambraces", - "id": "1064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vambraces made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Green d'hide vamb", - "id": "1065", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 3, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Green d'hide vamb", - "id": "1066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Iron platelegs", - "id": "1067", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 11, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Iron platelegs", - "id": "1068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Steel platelegs", - "id": "1069", - "bonuses": [ - { - "defenceCrush": 15, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 16, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 16, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Steel platelegs", - "id": "1070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Mithril platelegs", - "id": "1071", - "bonuses": [ - { - "defenceCrush": 20, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 22, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 24, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Mithril platelegs", - "id": "1072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adamant platelegs", - "id": "1073", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adamant platelegs", - "id": "1074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Bronze platelegs", - "id": "1075", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 7, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Bronze platelegs", - "id": "1076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Big, black and heavy looking.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black platelegs", - "id": "1077", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black platelegs", - "id": "1078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune platelegs", - "id": "1079", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune platelegs", - "id": "1080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Designer leg protection.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Iron plateskirt", - "id": "1081", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 11, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Iron plateskirt", - "id": "1082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Designer leg protection.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Steel plateskirt", - "id": "1083", - "bonuses": [ - { - "defenceCrush": 15, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 16, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 16, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Steel plateskirt", - "id": "1084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Designer leg protection.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Mithril plateskirt", - "id": "1085", - "bonuses": [ - { - "defenceCrush": 20, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 22, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 24, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Mithril plateskirt", - "id": "1086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Designer leg protection.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Bronze plateskirt", - "id": "1087", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 7, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Bronze plateskirt", - "id": "1088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Big, black and heavy looking.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black plateskirt", - "id": "1089", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black plateskirt", - "id": "1090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Designer leg protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adamant plateskirt", - "id": "1091", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adamant plateskirt", - "id": "1092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Designer leg protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune plateskirt", - "id": "1093", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune plateskirt", - "id": "1094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Better than no armour!", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Leather chaps", - "id": "1095", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Leather chaps", - "id": "1096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Those studs should provide a bit more protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Studded chaps", - "id": "1097", - "bonuses": [ - { - "defenceCrush": 17, - "attackRange": 6, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 14, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 16, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Studded chaps", - "id": "1098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "Green d'hide chaps", - "id": "1099", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 25, - "defenceMagic": 14 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "Green d'hide chaps", - "id": "1100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "126" - } - ], - "name": "Iron chainbody", - "id": "1101", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "126" - } - ], - "name": "Iron chainbody", - "id": "1102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Bronze chainbody", - "id": "1103", - "bonuses": [ - { - "defenceCrush": 13, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 11, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": -9 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Bronze chainbody", - "id": "1104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Steel chainbody", - "id": "1105", - "bonuses": [ - { - "defenceCrush": 30, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Steel chainbody", - "id": "1106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "864" - } - ], - "name": "Black chainbody", - "id": "1107", - "bonuses": [ - { - "defenceCrush": 39, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 24, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "864" - } - ], - "name": "Black chainbody", - "id": "1108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1170" - } - ], - "name": "Mithril chainbody", - "id": "1109", - "bonuses": [ - { - "defenceCrush": 42, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 35, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 19, - "attackStab": 0, - "defenceStab": 25, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1170" - } - ], - "name": "Mithril chainbody", - "id": "1110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2880" - } - ], - "name": "Adamant chainbody", - "id": "1111", - "bonuses": [ - { - "defenceCrush": 61, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 50, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 38, - "attackStab": 0, - "defenceStab": 36, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2880" - } - ], - "name": "Adamant chainbody", - "id": "1112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Rune chainbody", - "id": "1113", - "bonuses": [ - { - "defenceCrush": 78, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 65, - "attackStab": 0, - "defenceStab": 63, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Rune chainbody", - "id": "1114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "336" - } - ], - "name": "Iron platebody", - "id": "1115", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "336" - } - ], - "name": "Iron platebody", - "id": "1116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Bronze platebody", - "id": "1117", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 14, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 14, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Bronze platebody", - "id": "1118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Steel platebody", - "id": "1119", - "bonuses": [ - { - "defenceCrush": 24, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 32, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Steel platebody", - "id": "1120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3120" - } - ], - "name": "Mithril platebody", - "id": "1121", - "bonuses": [ - { - "defenceCrush": 38, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 44, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 44, - "attackStab": 0, - "defenceStab": 46, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3120" - } - ], - "name": "Mithril platebody", - "id": "1122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Adamant platebody", - "id": "1123", - "bonuses": [ - { - "defenceCrush": 55, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 63, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 63, - "attackStab": 0, - "defenceStab": 65, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Adamant platebody", - "id": "1124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Black platebody", - "id": "1125", - "bonuses": [ - { - "defenceCrush": 30, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 40, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 41, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Black platebody", - "id": "1126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rune platebody", - "id": "1127", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rune platebody", - "id": "1128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Better than no armour!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leather body", - "id": "1129", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": 2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leather body", - "id": "1130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Harder than normal leather.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "102" - } - ], - "name": "Hardleather body", - "id": "1131", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 15, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "102" - } - ], - "name": "Hardleather body", - "id": "1132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Those studs should provide a bit more protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "510" - } - ], - "name": "Studded body", - "id": "1133", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 18, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "510" - } - ], - "name": "Studded body", - "id": "1134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4680" - } - ], - "name": "Green d'hide body", - "id": "1135", - "bonuses": [ - { - "defenceCrush": 45, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -18, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 40, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4680" - } - ], - "name": "Green d'hide body", - "id": "1136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "34" - } - ], - "name": "Iron med helm", - "id": "1137", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": -3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 4, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "34" - } - ], - "name": "Iron med helm", - "id": "1138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Bronze med helm", - "id": "1139", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 4, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 3, - "attackStab": 0, - "defenceStab": 3, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Bronze med helm", - "id": "1140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Steel med helm", - "id": "1141", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 8, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 7, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Steel med helm", - "id": "1142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "468" - } - ], - "name": "Mithril med helm", - "id": "1143", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "468" - } - ], - "name": "Mithril med helm", - "id": "1144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Adamant med helm", - "id": "1145", - "bonuses": [ - { - "defenceCrush": 13, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 14, - "attackStab": 0, - "defenceStab": 14, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Adamant med helm", - "id": "1146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "11520" - } - ], - "name": "Rune med helm", - "id": "1147", - "bonuses": [ - { - "defenceCrush": 21, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 23, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "11520" - } - ], - "name": "Rune med helm", - "id": "1148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes the wearer pretty intimidating.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Dragon med helm", - "id": "1149", - "bonuses": [ - { - "defenceCrush": 32, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 35, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 38, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Dragon med helm", - "id": "1150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "Black med helm", - "id": "1151", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "Black med helm", - "id": "1152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "154", - "highAlch": "0", - "shopValue": "154" - } - ], - "name": "Iron full helm", - "id": "1153", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 6, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "154", - "highAlch": "0", - "shopValue": "154" - } - ], - "name": "Iron full helm", - "id": "1154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "44", - "highAlch": "0", - "shopValue": "44" - } - ], - "name": "Bronze full helm", - "id": "1155", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 4, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "44", - "highAlch": "0", - "shopValue": "44" - } - ], - "name": "Bronze full helm", - "id": "1156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "Steel full helm", - "id": "1157", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "Steel full helm", - "id": "1158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "1430", - "highAlch": "0", - "shopValue": "1430" - } - ], - "name": "Mithril full helm", - "id": "1159", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 14, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 13, - "attackStab": 0, - "defenceStab": 13, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1430", - "highAlch": "0", - "shopValue": "1430" - } - ], - "name": "Mithril full helm", - "id": "1160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2112" - } - ], - "name": "Adamant full helm", - "id": "1161", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 21, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 19, - "attackStab": 0, - "defenceStab": 19, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2112" - } - ], - "name": "Adamant full helm", - "id": "1162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune full helm", - "id": "1163", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune full helm", - "id": "1164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "Black full helm", - "id": "1165", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "Black full helm", - "id": "1166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Better than no armour!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Leather cowl", - "id": "1167", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 3, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Leather cowl", - "id": "1168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Light weight head protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Coif", - "id": "1169", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": 2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 6, - "attackMagic": -1, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 4, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Coif", - "id": "1170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A solid wooden shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Wooden shield", - "id": "1171", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 4, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Wooden shield", - "id": "1172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Bronze sq shield", - "id": "1173", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 6, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 5, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Bronze sq shield", - "id": "1174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "101" - } - ], - "name": "Iron sq shield", - "id": "1175", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 8, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "101" - } - ], - "name": "Iron sq shield", - "id": "1176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Steel sq shield", - "id": "1177", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Steel sq shield", - "id": "1178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "691" - } - ], - "name": "Black sq shield", - "id": "1179", - "bonuses": [ - { - "defenceCrush": 14, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 16, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 15, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "691" - } - ], - "name": "Black sq shield", - "id": "1180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "936" - } - ], - "name": "Mithril sq shield", - "id": "1181", - "bonuses": [ - { - "defenceCrush": 15, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 17, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "936" - } - ], - "name": "Mithril sq shield", - "id": "1182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Adamant sq shield", - "id": "1183", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 26, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 24, - "attackStab": 0, - "defenceStab": 24, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Adamant sq shield", - "id": "1184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "23040" - } - ], - "name": "Rune sq shield", - "id": "1185", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 40, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 38, - "attackStab": 0, - "defenceStab": 38, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "23040" - } - ], - "name": "Rune sq shield", - "id": "1186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient and powerful looking Dragon Square shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "300000" - } - ], - "name": "Dragon sq shield", - "id": "1187", - "bonuses": [ - { - "defenceCrush": 48, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 52, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 50, - "attackStab": 0, - "defenceStab": 50, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "300000" - } - ], - "name": "Dragon sq shield", - "id": "1188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "41" - } - ], - "name": "Bronze kiteshield", - "id": "1189", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 6, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "41" - } - ], - "name": "Bronze kiteshield", - "id": "1190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "143" - } - ], - "name": "Iron kiteshield", - "id": "1191", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "143" - } - ], - "name": "Iron kiteshield", - "id": "1192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "510" - } - ], - "name": "Steel kiteshield", - "id": "1193", - "bonuses": [ - { - "defenceCrush": 14, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 14, - "attackStab": 0, - "defenceStab": 13, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "510" - } - ], - "name": "Steel kiteshield", - "id": "1194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield", - "id": "1195", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield", - "id": "1196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1326" - } - ], - "name": "Mithril kiteshield", - "id": "1197", - "bonuses": [ - { - "defenceCrush": 20, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 22, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 18, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1326" - } - ], - "name": "Mithril kiteshield", - "id": "1198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adamant kiteshield", - "id": "1199", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 27, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adamant kiteshield", - "id": "1200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield", - "id": "1201", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield", - "id": "1202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Short but pointy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "5", - "shopValue": "21" - } - ], - "name": "Iron dagger", - "id": "1203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 3, - "strengthBonus": 4, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21" - } - ], - "name": "Iron dagger", - "id": "1204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Short but pointy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "4", - "shopValue": "21" - } - ], - "name": "Bronze dagger", - "id": "1205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 3, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bronze dagger", - "id": "1206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Short but pointy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "8", - "shopValue": "75" - } - ], - "name": "Steel dagger", - "id": "1207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 4, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Steel dagger", - "id": "1208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dangerous dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "11", - "shopValue": "195" - } - ], - "name": "Mithril dagger", - "id": "1209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 10, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 11, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "195" - } - ], - "name": "Mithril dagger", - "id": "1210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Short and deadly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "15", - "shopValue": "480" - } - ], - "name": "Adamant dagger", - "id": "1211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 15, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "480" - } - ], - "name": "Adamant dagger", - "id": "1212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "25", - "shopValue": "4800" - } - ], - "name": "Rune dagger", - "id": "1213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 12, - "strengthBonus": 24, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 25, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4800" - } - ], - "name": "Rune dagger", - "id": "1214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "40", - "shopValue": "18000" - } - ], - "name": "Dragon dagger", - "id": "1215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 25, - "strengthBonus": 40, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 40, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "18000" - } - ], - "name": "Dragon dagger", - "id": "1216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious black dagger.", - "values": [ - { - "lowAlch": "240", - "highAlch": "10", - "shopValue": "240" - } - ], - "name": "Black dagger", - "id": "1217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Black dagger", - "id": "1218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with poison.", - "values": [ - { - "lowAlch": "35", - "highAlch": "5", - "shopValue": "35" - } - ], - "name": "Iron dagger(p)", - "id": "1219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 3, - "strengthBonus": 4, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Iron dagger(p)", - "id": "1220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "10", - "highAlch": "4", - "shopValue": "10" - } - ], - "name": "Bronze dagger(p)", - "id": "1221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 3, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze dagger(p)", - "id": "1222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade has been poisoned.", - "values": [ - { - "lowAlch": "125", - "highAlch": "8", - "shopValue": "125" - } - ], - "name": "Steel dagger(p)", - "id": "1223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 4, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Steel dagger(p)", - "id": "1224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned Mithril dagger.", - "values": [ - { - "lowAlch": "325", - "highAlch": "11", - "shopValue": "325" - } - ], - "name": "Mithril dagger(p)", - "id": "1225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 10, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 11, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Mithril dagger(p)", - "id": "1226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very dangerous poisoned dagger.", - "values": [ - { - "lowAlch": "800", - "highAlch": "15", - "shopValue": "800" - } - ], - "name": "Adamant dagger(p)", - "id": "1227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 15, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Adamant dagger(p)", - "id": "1228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with a nasty poison.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "25", - "shopValue": "8000" - } - ], - "name": "Rune dagger(p)", - "id": "1229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 12, - "strengthBonus": 24, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 25, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Rune dagger(p)", - "id": "1230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "24000", - "highAlch": "40", - "shopValue": "24000" - } - ], - "name": "Dragon dagger(p)", - "id": "1231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 25, - "strengthBonus": 40, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 40, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "24000", - "highAlch": "0", - "shopValue": "24000" - } - ], - "name": "Dragon dagger(p)", - "id": "1232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "240", - "highAlch": "10", - "shopValue": "240" - } - ], - "name": "Black dagger(p)", - "id": "1233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Black dagger(p)", - "id": "1234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with poison.", - "values": [ - { - "lowAlch": "565", - "highAlch": "0", - "shopValue": "565" - } - ], - "name": "Poisoned dagger(p)", - "id": "1235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "565", - "highAlch": "0", - "shopValue": "565" - } - ], - "name": "Poisoned dagger(p)", - "id": "1236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "5", - "shopValue": "15" - } - ], - "name": "Bronze spear", - "id": "1237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Bronze spear", - "id": "1238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "8", - "shopValue": "540" - } - ], - "name": "Iron spear", - "id": "1239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 10, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 8, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "540" - } - ], - "name": "Iron spear", - "id": "1240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "195" - } - ], - "name": "Steel spear", - "id": "1241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 12, - "strengthBonus": 12, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 12, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "195" - } - ], - "name": "Steel spear", - "id": "1242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "17", - "shopValue": "557" - } - ], - "name": "Mithril spear", - "id": "1243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 17, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 18, - "attackCrush": 17, - "defenceRange": 0, - "attackStab": 17, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "557" - } - ], - "name": "Mithril spear", - "id": "1244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamantite tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "24", - "shopValue": "1248" - } - ], - "name": "Adamant spear", - "id": "1245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 24, - "strengthBonus": 28, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 24, - "defenceRange": 0, - "attackStab": 24, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1248" - } - ], - "name": "Adamant spear", - "id": "1246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "36", - "shopValue": "12480" - } - ], - "name": "Rune spear", - "id": "1247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 36, - "strengthBonus": 42, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 36, - "defenceRange": 0, - "attackStab": 36, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "12480" - } - ], - "name": "Rune spear", - "id": "1248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dragon tipped spear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "55", - "shopValue": "37440" - } - ], - "name": "Dragon spear", - "id": "1249", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 55, - "strengthBonus": 60, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 55, - "defenceRange": 5, - "attackStab": 55, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "37440" - } - ], - "name": "Dragon spear", - "id": "1250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned bronze tipped spear.", - "values": [ - { - "lowAlch": "26", - "highAlch": "5", - "shopValue": "26" - } - ], - "name": "Bronze spear(p)", - "id": "1251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Bronze spear(p)", - "id": "1252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned iron tipped spear.", - "values": [ - { - "lowAlch": "91", - "highAlch": "8", - "shopValue": "91" - } - ], - "name": "Iron spear(p)", - "id": "1253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 10, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 8, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Iron spear(p)", - "id": "1254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned steel tipped spear.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Steel spear(p)", - "id": "1255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Steel spear(p)", - "id": "1256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned mithril tipped spear.", - "values": [ - { - "lowAlch": "845", - "highAlch": "17", - "shopValue": "845" - } - ], - "name": "Mithril spear(p)", - "id": "1257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 17, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 18, - "attackCrush": 17, - "defenceRange": 0, - "attackStab": 17, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "845", - "highAlch": "0", - "shopValue": "845" - } - ], - "name": "Mithril spear(p)", - "id": "1258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned adamantite tipped spear.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "24", - "shopValue": "2080" - } - ], - "name": "Adamant spear(p)", - "id": "1259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 24, - "strengthBonus": 28, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 24, - "defenceRange": 0, - "attackStab": 24, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "0", - "shopValue": "2080" - } - ], - "name": "Adamant spear(p)", - "id": "1260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned rune tipped spear.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "36", - "shopValue": "20800" - } - ], - "name": "Rune spear(p)", - "id": "1261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 36, - "strengthBonus": 42, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 36, - "defenceRange": 0, - "attackStab": 36, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "0", - "shopValue": "20800" - } - ], - "name": "Rune spear(p)", - "id": "1262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned dragon tipped spear.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "55", - "shopValue": "62400" - } - ], - "name": "Dragon spear(p)", - "id": "1263", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 55, - "strengthBonus": 60, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 55, - "defenceRange": 5, - "attackStab": 55, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "0", - "shopValue": "62400" - } - ], - "name": "Dragon spear(p)", - "id": "1264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "4", - "shopValue": "1" - } - ], - "name": "Bronze pickaxe", - "id": "1265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 5, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze pickaxe", - "id": "1266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "5", - "shopValue": "84" - } - ], - "name": "Iron pickaxe", - "id": "1267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 7, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 3, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "84" - } - ], - "name": "Iron pickaxe", - "id": "1268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "8", - "shopValue": "300" - } - ], - "name": "Steel pickaxe", - "id": "1269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 9, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 6, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Steel pickaxe", - "id": "1270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "17", - "shopValue": "1920" - } - ], - "name": "Adamant pickaxe", - "id": "1271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 19, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 15, - "defenceRange": 0, - "attackStab": 17, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1920" - } - ], - "name": "Adamant pickaxe", - "id": "1272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "870" - } - ], - "name": "Mithril pickaxe", - "id": "1273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 13, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 10, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "870" - } - ], - "name": "Mithril pickaxe", - "id": "1274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "26", - "shopValue": "19200" - } - ], - "name": "Rune pickaxe", - "id": "1275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 29, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 24, - "defenceRange": 0, - "attackStab": 26, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "19200" - } - ], - "name": "Rune pickaxe", - "id": "1276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "4", - "shopValue": "26" - } - ], - "name": "Bronze sword", - "id": "1277", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 3, - "strengthBonus": 5, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Bronze sword", - "id": "1278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "6", - "shopValue": "64" - } - ], - "name": "Iron sword", - "id": "1279", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": -1, - "attackSlash": 4, - "strengthBonus": 7, - "defenceSlash": 2, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": -1, - "attackStab": 6, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Iron sword", - "id": "1280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "11", - "shopValue": "221" - } - ], - "name": "Steel sword", - "id": "1281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": -1, - "attackSlash": 8, - "strengthBonus": 12, - "defenceSlash": 1, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 11, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "221" - } - ], - "name": "Steel sword", - "id": "1282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "14", - "shopValue": "461" - } - ], - "name": "Black sword", - "id": "1283", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 10, - "strengthBonus": 12, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 14, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "461" - } - ], - "name": "Black sword", - "id": "1284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "16", - "shopValue": "845" - } - ], - "name": "Mithril sword", - "id": "1285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 11, - "strengthBonus": 17, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 16, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "845" - } - ], - "name": "Mithril sword", - "id": "1286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "23", - "shopValue": "2080" - } - ], - "name": "Adamant sword", - "id": "1287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 18, - "strengthBonus": 24, - "defenceSlash": 1, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 23, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "0", - "shopValue": "2080" - } - ], - "name": "Adamant sword", - "id": "1288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "38", - "shopValue": "7800" - } - ], - "name": "Rune sword", - "id": "1289", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 26, - "strengthBonus": 39, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 38, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Rune sword", - "id": "1290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "40", - "highAlch": "4", - "shopValue": "45" - } - ], - "name": "Bronze longsword", - "id": "1291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 2, - "strengthBonus": 7, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 3, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Bronze longsword", - "id": "1292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "6", - "shopValue": "140" - } - ], - "name": "Iron longsword", - "id": "1293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": -1, - "attackSlash": 4, - "strengthBonus": 10, - "defenceSlash": 2, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 6, - "defenceStab": 3, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "140" - } - ], - "name": "Iron longsword", - "id": "1294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "9", - "shopValue": "300" - } - ], - "name": "Steel longsword", - "id": "1295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 15, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": 3, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Steel longsword", - "id": "1296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "13", - "shopValue": "960" - } - ], - "name": "Black longsword", - "id": "1297", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 18, - "strengthBonus": 16, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 13, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "960" - } - ], - "name": "Black longsword", - "id": "1298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "1300", - "highAlch": "15", - "shopValue": "1300" - } - ], - "name": "Mithril longsword", - "id": "1299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 22, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 15, - "defenceStab": 3, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1300", - "highAlch": "0", - "shopValue": "1300" - } - ], - "name": "Mithril longsword", - "id": "1300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "20", - "shopValue": "3200" - } - ], - "name": "Adamant longsword", - "id": "1301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 29, - "strengthBonus": 31, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 20, - "defenceStab": 3, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "0", - "shopValue": "3200" - } - ], - "name": "Adamant longsword", - "id": "1302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "38", - "shopValue": "19200" - } - ], - "name": "Rune longsword", - "id": "1303", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 47, - "strengthBonus": 49, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 38, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "19200" - } - ], - "name": "Rune longsword", - "id": "1304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very powerful sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "58", - "shopValue": "60000" - } - ], - "name": "Dragon longsword", - "id": "1305", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 69, - "strengthBonus": 71, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 58, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Dragon longsword", - "id": "1306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "80", - "highAlch": "-4", - "shopValue": "80" - } - ], - "name": "Bronze 2h sword", - "id": "1307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 9, - "strengthBonus": 10, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 8, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Bronze 2h sword", - "id": "1308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "280", - "highAlch": "-4", - "shopValue": "280" - } - ], - "name": "Iron 2h sword", - "id": "1309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 13, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 10, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Iron 2h sword", - "id": "1310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "-4", - "shopValue": "1000" - } - ], - "name": "Steel 2h sword", - "id": "1311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 21, - "strengthBonus": 22, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 16, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Steel 2h sword", - "id": "1312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "1152" - } - ], - "name": "Black 2h sword", - "id": "1313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 27, - "strengthBonus": 28, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 21, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black 2h sword", - "id": "1314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "-4", - "shopValue": "2600" - } - ], - "name": "Mithril 2h sword", - "id": "1315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 30, - "strengthBonus": 31, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 24, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Mithril 2h sword", - "id": "1316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "6400", - "highAlch": "-4", - "shopValue": "6400" - } - ], - "name": "Adamant 2h sword", - "id": "1317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 43, - "strengthBonus": 44, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 30, - "defenceRange": 1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6400", - "highAlch": "0", - "shopValue": "6400" - } - ], - "name": "Adamant 2h sword", - "id": "1318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "64000", - "highAlch": "-4", - "shopValue": "44000" - } - ], - "name": "Rune 2h sword", - "id": "1319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 69, - "strengthBonus": 70, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 50, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "64000", - "highAlch": "0", - "shopValue": "44000" - } - ], - "name": "Rune 2h sword", - "id": "1320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "32", - "highAlch": "1", - "shopValue": "32" - } - ], - "name": "Bronze scimitar", - "id": "1321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 7, - "strengthBonus": 6, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 1, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Bronze scimitar", - "id": "1322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "112", - "highAlch": "2", - "shopValue": "112" - } - ], - "name": "Iron scimitar", - "id": "1323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 10, - "strengthBonus": 9, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "112", - "highAlch": "0", - "shopValue": "112" - } - ], - "name": "Iron scimitar", - "id": "1324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "400", - "highAlch": "3", - "shopValue": "400" - } - ], - "name": "Steel scimitar", - "id": "1325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 15, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 3, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Steel scimitar", - "id": "1326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "768", - "highAlch": "4", - "shopValue": "768" - } - ], - "name": "Black scimitar", - "id": "1327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 19, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "768", - "highAlch": "0", - "shopValue": "768" - } - ], - "name": "Black scimitar", - "id": "1328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "1040", - "highAlch": "5", - "shopValue": "1040" - } - ], - "name": "Mithril scimitar", - "id": "1329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 21, - "strengthBonus": 20, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1040", - "highAlch": "0", - "shopValue": "1040" - } - ], - "name": "Mithril scimitar", - "id": "1330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "2560", - "highAlch": "6", - "shopValue": "2560" - } - ], - "name": "Adamant scimitar", - "id": "1331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 29, - "strengthBonus": 28, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 6, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2560", - "highAlch": "0", - "shopValue": "2560" - } - ], - "name": "Adamant scimitar", - "id": "1332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "7", - "shopValue": "15360" - } - ], - "name": "Rune scimitar", - "id": "1333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 45, - "strengthBonus": 44, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "15360" - } - ], - "name": "Rune scimitar", - "id": "1334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "173", - "highAlch": "-4", - "shopValue": "173" - } - ], - "name": "Iron warhammer", - "id": "1335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 9, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 11, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "173", - "highAlch": "0", - "shopValue": "173" - } - ], - "name": "Iron warhammer", - "id": "1336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "47", - "highAlch": "-4", - "shopValue": "47" - } - ], - "name": "Bronze warhammer", - "id": "1337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 8, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 10, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "47", - "highAlch": "0", - "shopValue": "47" - } - ], - "name": "Bronze warhammer", - "id": "1338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "640", - "highAlch": "-4", - "shopValue": "640" - } - ], - "name": "Steel warhammer", - "id": "1339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 16, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 18, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "640", - "highAlch": "0", - "shopValue": "640" - } - ], - "name": "Steel warhammer", - "id": "1340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "980", - "highAlch": "-4", - "shopValue": "980" - } - ], - "name": "Black warhammer", - "id": "1341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 19, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 22, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "980", - "highAlch": "0", - "shopValue": "980" - } - ], - "name": "Black warhammer", - "id": "1342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "1660", - "highAlch": "-4", - "shopValue": "1660" - } - ], - "name": "Mithril warhammer", - "id": "1343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 20, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 25, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1660", - "highAlch": "0", - "shopValue": "1660" - } - ], - "name": "Mithril warhammer", - "id": "1344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "4120", - "highAlch": "-4", - "shopValue": "4120" - } - ], - "name": "Addy warhammer", - "id": "1345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 31, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 33, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4120", - "highAlch": "0", - "shopValue": "4120" - } - ], - "name": "Addy warhammer", - "id": "1346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "24900" - } - ], - "name": "Rune warhammer", - "id": "1347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 48, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 53, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "24900" - } - ], - "name": "Rune warhammer", - "id": "1348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful axe.", - "values": [ - { - "lowAlch": "56", - "highAlch": "-2", - "shopValue": "56" - } - ], - "name": "Iron axe", - "id": "1349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 3, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "56", - "highAlch": "0", - "shopValue": "56" - } - ], - "name": "Iron axe", - "id": "1350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful axe.", - "values": [ - { - "lowAlch": "16", - "highAlch": "2", - "shopValue": "16" - } - ], - "name": "Bronze axe", - "id": "1351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 4, - "strengthBonus": 5, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Bronze axe", - "id": "1352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful axe.", - "values": [ - { - "lowAlch": "200", - "highAlch": "-2", - "shopValue": "200" - } - ], - "name": "Steel axe", - "id": "1353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 9, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 6, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Steel axe", - "id": "1354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful axe.", - "values": [ - { - "lowAlch": "520", - "highAlch": "-2", - "shopValue": "520" - } - ], - "name": "Mithril axe", - "id": "1355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 12, - "strengthBonus": 10, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 10, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "520", - "highAlch": "0", - "shopValue": "520" - } - ], - "name": "Mithril axe", - "id": "1356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful axe.", - "values": [ - { - "lowAlch": "1280", - "highAlch": "-2", - "shopValue": "1280" - } - ], - "name": "Adamant axe", - "id": "1357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 17, - "strengthBonus": 19, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 15, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1280", - "highAlch": "0", - "shopValue": "1280" - } - ], - "name": "Adamant axe", - "id": "1358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful axe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-2", - "shopValue": "7680" - } - ], - "name": "Rune axe", - "id": "1359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 26, - "strengthBonus": 29, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 24, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7680" - } - ], - "name": "Rune axe", - "id": "1360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sinister looking axe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-2", - "shopValue": "384" - } - ], - "name": "Black axe", - "id": "1361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 10, - "strengthBonus": 12, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 8, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "384", - "highAlch": "0", - "shopValue": "384" - } - ], - "name": "Black axe", - "id": "1362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "182", - "highAlch": "-2", - "shopValue": "182" - } - ], - "name": "Iron battleaxe", - "id": "1363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 13, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "182", - "highAlch": "0", - "shopValue": "182" - } - ], - "name": "Iron battleaxe", - "id": "1364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "650", - "highAlch": "-2", - "shopValue": "650" - } - ], - "name": "Steel battleaxe", - "id": "1365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 16, - "strengthBonus": 20, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 11, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Steel battleaxe", - "id": "1366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "1248", - "highAlch": "-2", - "shopValue": "1248" - } - ], - "name": "Black battleaxe", - "id": "1367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 24, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 15, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1248", - "highAlch": "0", - "shopValue": "1248" - } - ], - "name": "Black battleaxe", - "id": "1368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "1690", - "highAlch": "-2", - "shopValue": "1690" - } - ], - "name": "Mithril battleaxe", - "id": "1369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 22, - "strengthBonus": 29, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 17, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1690", - "highAlch": "0", - "shopValue": "1690" - } - ], - "name": "Mithril battleaxe", - "id": "1370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "4160", - "highAlch": "-2", - "shopValue": "4160" - } - ], - "name": "Adamant battleaxe", - "id": "1371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 31, - "strengthBonus": 41, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 26, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4160", - "highAlch": "0", - "shopValue": "4160" - } - ], - "name": "Adamant battleaxe", - "id": "1372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-2", - "shopValue": "24960" - } - ], - "name": "Rune battleaxe", - "id": "1373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 48, - "strengthBonus": 64, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 43, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "24960" - } - ], - "name": "Rune battleaxe", - "id": "1374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "52", - "highAlch": "-2", - "shopValue": "52" - } - ], - "name": "Bronze battleaxe", - "id": "1375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 6, - "strengthBonus": 9, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 3, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "52", - "highAlch": "0", - "shopValue": "52" - } - ], - "name": "Bronze battleaxe", - "id": "1376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-2", - "shopValue": "120000" - } - ], - "name": "Dragon battleaxe", - "id": "1377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 70, - "strengthBonus": 85, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 65, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120000" - } - ], - "name": "Dragon battleaxe", - "id": "1378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Staff", - "id": "1379", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Staff", - "id": "1380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Magical staff.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "3", - "shopValue": "1500" - } - ], - "name": "Staff of air", - "id": "1381", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 9, - "defenceRange": 0, - "attackStab": 3, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Staff of air", - "id": "1382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Magical staff.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "3", - "shopValue": "1500" - } - ], - "name": "Staff of water", - "id": "1383", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 9, - "defenceRange": 0, - "attackStab": 3, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Staff of water", - "id": "1384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Magical staff.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "3", - "shopValue": "1500" - } - ], - "name": "Staff of earth", - "id": "1385", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 9, - "defenceRange": 0, - "attackStab": 3, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Staff of earth", - "id": "1386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Magical staff.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "3", - "shopValue": "1500" - } - ], - "name": "Staff of fire", - "id": "1387", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 9, - "defenceRange": 0, - "attackStab": 3, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Staff of fire", - "id": "1388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Magical staff.", - "values": [ - { - "lowAlch": "200", - "highAlch": "2", - "shopValue": "200" - } - ], - "name": "Magic staff", - "id": "1389", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 7, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 10, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Magic staff", - "id": "1390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "7000", - "highAlch": "7", - "shopValue": "7000" - } - ], - "name": "Battlestaff", - "id": "1391", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 32, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 25, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7000", - "highAlch": "0", - "shopValue": "7000" - } - ], - "name": "Battlestaff", - "id": "1392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "7", - "shopValue": "15500" - } - ], - "name": "Fire battlestaff", - "id": "1393", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 28, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "0", - "shopValue": "15500" - } - ], - "name": "Fire battlestaff", - "id": "1394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "7", - "shopValue": "15500" - } - ], - "name": "Water battlestaff", - "id": "1395", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 28, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "0", - "shopValue": "15500" - } - ], - "name": "Water battlestaff", - "id": "1396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "7", - "shopValue": "15500" - } - ], - "name": "Air battlestaff", - "id": "1397", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 28, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "0", - "shopValue": "15500" - } - ], - "name": "Air battlestaff", - "id": "1398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "7", - "shopValue": "15500" - } - ], - "name": "Earth battlestaff", - "id": "1399", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 28, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15500", - "highAlch": "0", - "shopValue": "15500" - } - ], - "name": "Earth battlestaff", - "id": "1400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "10", - "shopValue": "42500" - } - ], - "name": "Mystic fire staff", - "id": "1401", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 50, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "0", - "shopValue": "42500" - } - ], - "name": "Mystic fire staff", - "id": "1402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "10", - "shopValue": "42500" - } - ], - "name": "Mystic water staff", - "id": "1403", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 50, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "0", - "shopValue": "42500" - } - ], - "name": "Mystic water staff", - "id": "1404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "10", - "shopValue": "42500" - } - ], - "name": "Mystic air staff", - "id": "1405", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 50, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "0", - "shopValue": "42500" - } - ], - "name": "Mystic air staff", - "id": "1406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "10", - "shopValue": "42500" - } - ], - "name": "Mystic earth staff", - "id": "1407", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 50, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "0", - "shopValue": "42500" - } - ], - "name": "Mystic earth staff", - "id": "1408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient staff, formerly the property of Iban.", - "values": [ - { - "lowAlch": "42500", - "highAlch": "10", - "shopValue": "42500" - } - ], - "name": "Iban's staff", - "id": "1409", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 50, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "I'll need to get this repaired before I can use it.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Iban's staff", - "id": "1410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A farmer's fork.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farmer's fork", - "id": "1411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farmer's fork", - "id": "1412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A halberd.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Halberd", - "id": "1413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Halberd", - "id": "1414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warhammer.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Warhammer", - "id": "1415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Warhammer", - "id": "1416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A javelin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Javelin", - "id": "1417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Javelin", - "id": "1418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a Scythe.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Scythe", - "id": "1419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 1, - "attackSlash": 0, - "strengthBonus": 10, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "63", - "highAlch": "4", - "shopValue": "63" - } - ], - "name": "Iron mace", - "id": "1420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 9, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": -2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "63", - "highAlch": "0", - "shopValue": "63" - } - ], - "name": "Iron mace", - "id": "1421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "18", - "highAlch": "2", - "shopValue": "18" - } - ], - "name": "Bronze mace", - "id": "1422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 5, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 6, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Bronze mace", - "id": "1423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "225", - "highAlch": "7", - "shopValue": "225" - } - ], - "name": "Steel mace", - "id": "1424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 11, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 2, - "attackCrush": 13, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Steel mace", - "id": "1425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "8", - "shopValue": "432" - } - ], - "name": "Black mace", - "id": "1426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 13, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 2, - "attackCrush": 16, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "432" - } - ], - "name": "Black mace", - "id": "1427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "11", - "shopValue": "585" - } - ], - "name": "Mithril mace", - "id": "1428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 16, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 3, - "attackCrush": 11, - "defenceRange": 0, - "attackStab": 11, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "585" - } - ], - "name": "Mithril mace", - "id": "1429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "13", - "shopValue": "1440" - } - ], - "name": "Adamant mace", - "id": "1430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 23, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 3, - "attackCrush": 25, - "defenceRange": 0, - "attackStab": 13, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1440" - } - ], - "name": "Adamant mace", - "id": "1431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "20", - "shopValue": "3602" - } - ], - "name": "Rune mace", - "id": "1432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 36, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 39, - "defenceRange": 0, - "attackStab": 20, - "defenceStab": -2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3602" - } - ], - "name": "Rune mace", - "id": "1433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "40", - "shopValue": "30000" - } - ], - "name": "Dragon mace", - "id": "1434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 55, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 60, - "defenceRange": 0, - "attackStab": 40, - "defenceStab": -2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Dragon mace", - "id": "1435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An uncharged Rune Stone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Rune essence", - "id": "1436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Rune essence", - "id": "1437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Air talisman", - "id": "1438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Air talisman", - "id": "1439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Earth talisman", - "id": "1440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Earth talisman", - "id": "1441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Fire talisman", - "id": "1442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Fire talisman", - "id": "1443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Water talisman", - "id": "1444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Water talisman", - "id": "1445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Body talisman", - "id": "1446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Body talisman", - "id": "1447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Mind talisman", - "id": "1448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Mind talisman", - "id": "1449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Blood talisman", - "id": "1450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Blood talisman", - "id": "1451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Chaos talisman", - "id": "1452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Chaos talisman", - "id": "1453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cosmic talisman", - "id": "1454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cosmic talisman", - "id": "1455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Death talisman", - "id": "1456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Death talisman", - "id": "1457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Law talisman", - "id": "1458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For catching rotten fish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten net", - "id": "1459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Soul talisman", - "id": "1460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Soul talisman", - "id": "1461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nature talisman", - "id": "1462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nature talisman", - "id": "1463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can exchange this for equipment.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Archery ticket", - "id": "1464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For use on daggers and projectiles.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Weapon poison", - "id": "1465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rather nasty looking crustacean.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Sea slug", - "id": "1466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some damp wooden sticks.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Damp sticks", - "id": "1467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some dry wooden sticks.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dry sticks", - "id": "1468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Smashed glass.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken glass", - "id": "1469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small round red bead.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Red bead", - "id": "1470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Red bead", - "id": "1471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small round yellow bead.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Yellow bead", - "id": "1472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Yellow bead", - "id": "1473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small round black bead.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Black bead", - "id": "1474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Black bead", - "id": "1475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small round white bead.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "White bead", - "id": "1476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "White bead", - "id": "1477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It increases my aim.", - "values": [ - { - "lowAlch": "100", - "highAlch": "4", - "shopValue": "100" - } - ], - "name": "Amulet of accuracy", - "id": "1478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 4, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 4, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Amulet of accuracy", - "id": "1479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A chunk of rock.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "1480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical sphere that glimmers within.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Orb of light", - "id": "1481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical sphere that glimmers within.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Orb of light", - "id": "1482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical sphere that glimmers within.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Orb of light", - "id": "1483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical sphere that glimmers within.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Orb of light", - "id": "1484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A damp, wet cloth.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Damp cloth", - "id": "1485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A broken piece of railing.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Piece of railing", - "id": "1486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A withered unicorn horn.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Unicorn horn", - "id": "1487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A coat of arms of the Ardougne Paladins.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Paladin's badge", - "id": "1488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A coat of arms of the Ardougne Paladins.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Paladin's badge", - "id": "1489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A coat of arms of the Ardougne Paladins.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Paladin's badge", - "id": "1490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Witch's cat", - "id": "1491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A simple doll with Iban's likeness.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Doll of iban", - "id": "1492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An account of the last times of someone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Old journal", - "id": "1493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The tale of Iban.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "History of iban", - "id": "1494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Strong dwarvish gloves.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Klank's gauntlets", - "id": "1495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I thought you only saw these in pairs?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iban's dove", - "id": "1496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mystical demonic amulet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Amulet of othanian", - "id": "1497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mystical demonic amulet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Amulet of doomion", - "id": "1498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mystical demonic amulet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Amulet of holthion", - "id": "1499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strange dark liquid.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iban's shadow", - "id": "1500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Smells stronger than most spirits.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dwarf brew", - "id": "1501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The burnt remains of Iban.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iban's ashes", - "id": "1502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A search warrant for a house in Ardougne.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Warrant", - "id": "1503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It doesn't look very tasty.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Hangover cure", - "id": "1504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Maybe I should read it...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A magic scroll", - "id": "1505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stops me from breathing nasty stuff!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gas mask", - "id": "1506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Quite a small key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A small key", - "id": "1507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems to say \"hongorer lure\"...", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "A scruffy note", - "id": "1508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Turnip growing for beginners.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book", - "id": "1509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A picture of a lady called Elena.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Picture", - "id": "1510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A number of wooden logs.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Logs", - "id": "1511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Logs", - "id": "1512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Logs cut from a magic tree.", - "values": [ - { - "lowAlch": "320", - "highAlch": "0", - "shopValue": "320" - } - ], - "name": "Magic logs", - "id": "1513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "320", - "highAlch": "0", - "shopValue": "320" - } - ], - "name": "Magic logs", - "id": "1514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Logs cut from a yew tree.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Yew logs", - "id": "1515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Yew logs", - "id": "1516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Logs cut from a maple tree.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Maple logs", - "id": "1517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Maple logs", - "id": "1518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Logs cut from a willow tree.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Willow logs", - "id": "1519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Willow logs", - "id": "1520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Logs cut from an oak tree.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Oak logs", - "id": "1521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Oak logs", - "id": "1522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For picking tough locks.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lockpick", - "id": "1523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lockpick", - "id": "1524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy snake weed", - "id": "1525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Clean snake weed", - "id": "1526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy ardrigal", - "id": "1527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Clean ardrigal", - "id": "1528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy sito foil", - "id": "1529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Clan sito foil", - "id": "1530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy volencia moss", - "id": "1531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Clean volencia moss", - "id": "1532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy rogue's purse", - "id": "1533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Rogue's purse", - "id": "1534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of a map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Map part", - "id": "1535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of a map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Map part", - "id": "1536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of a map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Map part", - "id": "1537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A map of the route to Crandor.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crandor map", - "id": "1538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Steel nails", - "id": "1539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This provides partial protection from dragon-breath attacks.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Anti-dragon shield", - "id": "1540", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 8, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Anti-dragon shield", - "id": "1541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to Melzar's Maze.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maze key", - "id": "1542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "1543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An orange key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "1544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yellow key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "1545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blue key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "1546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magenta key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "1547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A green key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "1548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very pointy stick.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Stake", - "id": "1549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clove of garlic.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Garlic", - "id": "1550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Garlic", - "id": "1551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sardine flavoured with doogle leaves.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Seasoned sardine", - "id": "1552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Seasoned sardine", - "id": "1553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like it's lost.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fluffs' kitten", - "id": "1554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This kitten seems to like you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet kitten", - "id": "1555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This kitten seems to like you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet kitten", - "id": "1556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This kitten seems to like you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet kitten", - "id": "1557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This kitten seems to like you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet kitten", - "id": "1558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This kitten seems to like you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet kitten", - "id": "1559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This kitten seems to like you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet kitten", - "id": "1560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat definitely likes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat definitely likes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat definitely likes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat definitely likes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat definitely likes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat definitely likes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat is so well fed it can hardly move.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat is so well fed it can hardly move.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat is so well fed it can hardly move.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat is so well fed it can hardly move.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat is so well fed it can hardly move.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cat is so well fed it can hardly move.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet cat", - "id": "1572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tasty herb good for seasoning.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Doogle leaves", - "id": "1573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Doogle leaves", - "id": "1574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For feline training expertise.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Cat training medal", - "id": "1575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Cat training medal", - "id": "1576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Scarface Pete's Candlestick.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Pete's candlestick", - "id": "1577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Pete's candlestick", - "id": "1578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This denotes a Master Thief.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Thieves' armband", - "id": "1579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands cold!", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Ice gloves", - "id": "1580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yuck.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Blamish snail slime", - "id": "1581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from the finest snail slime.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Blamish oil", - "id": "1582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Firebird feather.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Fire feather", - "id": "1583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Apparently my name is Hartigen.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Id papers", - "id": "1584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching lava eels.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Oily fishing rod", - "id": "1585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what this unlocks?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Miscellaneous key", - "id": "1586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Miscellaneous key", - "id": "1587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some keys on a keyring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grips' keyring", - "id": "1588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "To be handled with caution.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pretty girl", - "id": "1589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what this unlocks?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dusty key", - "id": "1590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Key to a cell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jail key", - "id": "1591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make gold rings.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ring mould", - "id": "1592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ring mould", - "id": "1593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make unholy symbols.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unholy mould", - "id": "1594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make gold amulets", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Amulet mould", - "id": "1595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Amulet mould", - "id": "1596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make gold necklaces.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Necklace mould", - "id": "1597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Necklace mould", - "id": "1598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make Holy Symbols of Saradomin.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Holy mould", - "id": "1599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Holy mould", - "id": "1600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Diamond", - "id": "1601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Diamond", - "id": "1602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Ruby", - "id": "1603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Ruby", - "id": "1604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Emerald", - "id": "1605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Emerald", - "id": "1606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Sapphire", - "id": "1607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Sapphire", - "id": "1608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A semi precious stone.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Opal", - "id": "1609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Opal", - "id": "1610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A semi precious stone.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Jade", - "id": "1611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Jade", - "id": "1612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A semi precious stone.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Red topaz", - "id": "1613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Red topaz", - "id": "1614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Dragonstone", - "id": "1615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Dragonstone", - "id": "1616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Uncut diamond", - "id": "1617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Uncut diamond", - "id": "1618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Uncut ruby", - "id": "1619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Uncut ruby", - "id": "1620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Uncut emerald", - "id": "1621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Uncut emerald", - "id": "1622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Uncut sapphire", - "id": "1623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Uncut sapphire", - "id": "1624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Uncut opal", - "id": "1625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Uncut opal", - "id": "1626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Uncut jade", - "id": "1627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Uncut jade", - "id": "1628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Uncut red topaz", - "id": "1629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Uncut red topaz", - "id": "1630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Uncut dragonstone", - "id": "1631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Uncut dragonstone", - "id": "1632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A gemstone that has been smashed.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Crushed gemstone", - "id": "1633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Crushed gemstone", - "id": "1634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "6000", - "highAlch": "0", - "shopValue": "6000" - } - ], - "name": "Gold ring", - "id": "1635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6000", - "highAlch": "0", - "shopValue": "6000" - } - ], - "name": "Gold ring", - "id": "1636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Sapphire ring", - "id": "1637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Sapphire ring", - "id": "1638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Emerald ring", - "id": "1639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Emerald ring", - "id": "1640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ruby ring", - "id": "1641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ruby ring", - "id": "1642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Diamond ring", - "id": "1643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Diamond ring", - "id": "1644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Dragonstone ring", - "id": "1645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Dragonstone ring", - "id": "1646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "1648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sapphire ring", - "id": "1649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald ring", - "id": "1650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruby ring", - "id": "1651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond ring", - "id": "1652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragonstone ring", - "id": "1653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "450", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Gold necklace", - "id": "1654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "450", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Gold necklace", - "id": "1655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Sapphire necklace", - "id": "1656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Sapphire necklace", - "id": "1657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "1425", - "highAlch": "0", - "shopValue": "1425" - } - ], - "name": "Emerald necklace", - "id": "1658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1425", - "highAlch": "0", - "shopValue": "1425" - } - ], - "name": "Emerald necklace", - "id": "1659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "2175", - "highAlch": "0", - "shopValue": "2175" - } - ], - "name": "Ruby necklace", - "id": "1660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2175", - "highAlch": "0", - "shopValue": "2175" - } - ], - "name": "Ruby necklace", - "id": "1661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "3675", - "highAlch": "0", - "shopValue": "3675" - } - ], - "name": "Diamond necklace", - "id": "1662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3675", - "highAlch": "0", - "shopValue": "3675" - } - ], - "name": "Diamond necklace", - "id": "1663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "18375", - "highAlch": "0", - "shopValue": "18375" - } - ], - "name": "Dragon necklace", - "id": "1664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "18375", - "highAlch": "0", - "shopValue": "18375" - } - ], - "name": "Dragon necklace", - "id": "1665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "1667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sapphire necklace", - "id": "1668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald necklace", - "id": "1669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruby necklace", - "id": "1670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond necklace", - "id": "1671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon necklace", - "id": "1672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Gold amulet", - "id": "1673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Gold amulet", - "id": "1674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Sapphire amulet", - "id": "1675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Sapphire amulet", - "id": "1676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Emerald amulet", - "id": "1677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Emerald amulet", - "id": "1678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ruby amulet", - "id": "1679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ruby amulet", - "id": "1680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Diamond amulet", - "id": "1681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Diamond amulet", - "id": "1682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Dragonstone ammy", - "id": "1683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Dragonstone ammy", - "id": "1684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "1686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sapphire amulet", - "id": "1687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald amulet", - "id": "1688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruby amulet", - "id": "1689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond amulet", - "id": "1690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragonstone ammy", - "id": "1691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plain gold amulet.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Gold amulet", - "id": "1692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Gold amulet", - "id": "1693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if I can get this enchanted.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Sapphire amulet", - "id": "1694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Sapphire amulet", - "id": "1695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if I can get this enchanted.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Emerald amulet", - "id": "1696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Emerald amulet", - "id": "1697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if I can get this enchanted.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ruby amulet", - "id": "1698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ruby amulet", - "id": "1699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if I can get this enchanted.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Diamond amulet", - "id": "1700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Diamond amulet", - "id": "1701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if I can get this enchanted.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Dragonstone ammy", - "id": "1702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Dragonstone ammy", - "id": "1703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very powerful dragonstone amulet.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "10", - "shopValue": "17625" - } - ], - "name": "Amulet of glory", - "id": "1704", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 10, - "attackSlash": 10, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 3, - "attackCrush": 10, - "defenceRange": 3, - "attackStab": 10, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Amulet of glory", - "id": "1705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dragonstone amulet with 1 magic charge.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "10", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(1)", - "id": "1706", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 10, - "attackSlash": 10, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 3, - "attackCrush": 10, - "defenceRange": 3, - "attackStab": 10, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(1)", - "id": "1707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dragonstone amulet with 2 magic charges.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "10", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(2)", - "id": "1708", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 10, - "attackSlash": 10, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 3, - "attackCrush": 10, - "defenceRange": 3, - "attackStab": 10, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(2)", - "id": "1709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dragonstone amulet with 3 magic charges.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "10", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(3)", - "id": "1710", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 10, - "attackSlash": 10, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 3, - "attackCrush": 10, - "defenceRange": 3, - "attackStab": 10, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(3)", - "id": "1711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dragonstone amulet with 4 magic charges.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "10", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(4)", - "id": "1712", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 10, - "attackSlash": 10, - "strengthBonus": 6, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 3, - "attackCrush": 10, - "defenceRange": 3, - "attackStab": 10, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Amulet of glory(4)", - "id": "1713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unstrung symbol", - "id": "1714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unstrung symbol", - "id": "1715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of Saradomin.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unblessed symbol", - "id": "1716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unblessed symbol", - "id": "1717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed holy symbol of Saradomin.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Holy symbol", - "id": "1718", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 8, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Holy symbol", - "id": "1719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unstrung emblem", - "id": "1720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unstrung emblem", - "id": "1721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unblessed symbol of Zamorak.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unpowered symbol", - "id": "1722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unpowered symbol", - "id": "1723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unholy symbol of Zamorak.", - "values": [ - { - "lowAlch": "200", - "highAlch": "2", - "shopValue": "200" - } - ], - "name": "Unholy symbol", - "id": "1724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 2, - "attackSlash": 2, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 8, - "attackCrush": 2, - "defenceRange": 0, - "attackStab": 2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ruby amulet.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Amulet of strength", - "id": "1725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 10, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Amulet of strength", - "id": "1726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted sapphire amulet of magic.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Amulet of magic", - "id": "1727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Amulet of magic", - "id": "1728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted emerald amulet of protection.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Amulet of defence", - "id": "1729", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 7, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": 7 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Amulet of defence", - "id": "1730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted diamond amulet of power.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "6", - "shopValue": "3525" - } - ], - "name": "Amulet of power", - "id": "1731", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": 6, - "attackSlash": 6, - "strengthBonus": 4, - "defenceSlash": 6, - "attackMagic": 6, - "prayerBonus": 1, - "attackCrush": 6, - "defenceRange": 6, - "attackStab": 6, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Amulet of power", - "id": "1732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used with a thread to make clothes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Needle", - "id": "1733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used with a needle to make clothes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thread", - "id": "1734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For shearing sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shears", - "id": "1735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shears", - "id": "1736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I think this came from a sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wool", - "id": "1737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wool", - "id": "1738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should take this to the tannery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cowhide", - "id": "1739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cowhide", - "id": "1740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of leather.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leather", - "id": "1741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leather", - "id": "1742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of hard leather.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hard leather", - "id": "1743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hard leather", - "id": "1744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of prepared green dragonhide.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Green d-leather", - "id": "1745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item-leather.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Green d-leather", - "id": "1746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The scaly rough hide from a Black Dragon.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Black dragonhide", - "id": "1747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Black dragonhide", - "id": "1748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The scaly rough hide from a Red Dragon.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Red dragonhide", - "id": "1749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Red dragonhide", - "id": "1750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The scaly rough hide from a Blue Dragon.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Blue dragonhide", - "id": "1751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Blue dragonhide", - "id": "1752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The scaly rough hide from a Green Dragon.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Green dragonhide", - "id": "1753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Green dragonhide", - "id": "1754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for detailed crafting.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chisel", - "id": "1755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chisel", - "id": "1756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mostly clean apron.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Brown apron", - "id": "1757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Brown apron", - "id": "1758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Spun from sheeps' wool.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ball of wool", - "id": "1759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ball of wool", - "id": "1760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Clay soft enough to mould.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Soft clay", - "id": "1761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Soft clay", - "id": "1762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little bottle of red dye.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Red dye", - "id": "1763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Red dye", - "id": "1764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little bottle of yellow dye.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Yellow dye", - "id": "1765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Yellow dye", - "id": "1766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little bottle of blue dye.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Blue dye", - "id": "1767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Blue dye", - "id": "1768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little bottle of orange dye.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Orange dye", - "id": "1769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Orange dye", - "id": "1770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little bottle of green dye.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Green dye", - "id": "1771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Green dye", - "id": "1772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little bottle of purple dye.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Purple dye", - "id": "1773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Purple dye", - "id": "1774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hot glass ready to be blown into useful objects.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Molten glass", - "id": "1775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Molten glass", - "id": "1776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need a bow stave to attach this to.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bow string", - "id": "1777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bow string", - "id": "1778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should use this with a spinning wheel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Flax", - "id": "1779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Flax", - "id": "1780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the ingredients for making glass.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Soda ash", - "id": "1781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Soda ash", - "id": "1782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the ingredients for making glass.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Bucket of sand", - "id": "1783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Bucket of sand", - "id": "1784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to form molten glass into useful items.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Glassblowing pipe", - "id": "1785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Glassblowing pipe", - "id": "1786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to put this in a pottery oven.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfired pot", - "id": "1787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfired pot", - "id": "1788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to put this in a pottery oven.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Unfired pie dish", - "id": "1789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Unfired pie dish", - "id": "1790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to put this in a pottery oven.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfired bowl", - "id": "1791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfired bowl", - "id": "1792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slightly bluish leaf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woad leaf", - "id": "1793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for crafting items.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Bronze wire", - "id": "1794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Bronze wire", - "id": "1795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Anna's shiny silver coated necklace.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver necklace", - "id": "1796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Anna's shiny silver coated necklace coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver necklace", - "id": "1797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob's shiny silver coated tea cup.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver cup", - "id": "1798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob's shiny silver coated tea cup coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver cup", - "id": "1799", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Carol's shiny silver coated bottle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bottle", - "id": "1800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Carol's shiny silver coated bottle coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bottle", - "id": "1801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "David's shiny silver coated book.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver book", - "id": "1802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "David's shiny silver coated book coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver book", - "id": "1803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Elizabeth's shiny silver coated needle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver needle", - "id": "1804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Elizabeth's shiny silver coated needle coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver needle", - "id": "1805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Frank's shiny silver coated pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver pot", - "id": "1806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Frank's shiny silver coated pot coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver pot", - "id": "1807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some red thread found at the murder scene.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Criminal's thread", - "id": "1808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some green thread found at the murder scene.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Criminal's thread", - "id": "1809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some blue thread found at the murder scene.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Criminal's thread", - "id": "1810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of fly paper. It's sticky.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flypaper", - "id": "1811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot found at the murder scene, with a sickly odour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pungent pot", - "id": "1812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A flimsy-looking dagger found at the crime scene.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Criminal's dagger", - "id": "1813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A flimsy-looking dagger found at the crime scene coated with a thin layer of flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Criminal's dagger", - "id": "1814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The fingerprints of the murderer.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Killer's print", - "id": "1815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of Anna's fingerprint.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Anna's print", - "id": "1816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of Bob's fingerprint.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bob's print", - "id": "1817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of Carol's fingerprint.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carol's print", - "id": "1818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of David's fingerprint.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "David's print", - "id": "1819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of Elizabeth's fingerprint.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elizabeth's print", - "id": "1820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of Frank's fingerprint.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frank's print", - "id": "1821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unidentified fingerprint taken from the murder weapon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unknown print", - "id": "1822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full waterskin with four portions of water.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Waterskin(4)", - "id": "1823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Waterskin(4)", - "id": "1824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nearly full waterskin with three portions of water.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Waterskin(3)", - "id": "1825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Waterskin(3)", - "id": "1826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A half empty waterskin with two portions of water.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Waterskin(2)", - "id": "1827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Waterskin(2)", - "id": "1828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nearly empty waterskin with one portion of water.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Waterskin(1)", - "id": "1829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Waterskin(1)", - "id": "1830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A completely empty waterskin - you'll need to fill it up.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Waterskin(0)", - "id": "1831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Waterskin(0)", - "id": "1832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool, light desert shirt.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Desert shirt", - "id": "1833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Desert shirt", - "id": "1834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool, light desert robe.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Desert robe", - "id": "1835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Desert robe", - "id": "1836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Comfortable desert shoes.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Desert boots", - "id": "1837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Desert boots", - "id": "1838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metal key, it's very crudely constructed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Metal key", - "id": "1839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metallic key, usually used by prison guards.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cell door key", - "id": "1840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty mining barrel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel", - "id": "1841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mining barrel with Ana in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ana in a barrel", - "id": "1842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This key unlocks a very sturdy gate of some sort.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wrought iron key", - "id": "1843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A filthy, smelly, flea infested shirt.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Slave shirt", - "id": "1844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A filthy, smelly, flea infested robe.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Slave robe", - "id": "1845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of filthy, smelly, flea infested desert slave boots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slave boots", - "id": "1846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of paper with barely legible writing - looks like a recipe!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Scrumpled paper", - "id": "1847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very important information.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shantay disclaimer", - "id": "1848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A prototype throwing dart.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Prototype dart", - "id": "1849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plans of a technical nature.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Technical plans", - "id": "1850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The most delicious of pineapples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tenti pineapple", - "id": "1851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to the chest in Captain Siad's room.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bedabin key", - "id": "1852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A prototype dart tip - it looks deadly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prototype dart tip", - "id": "1853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows you to pass through the Shantay pass into the Kharid Desert.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Shantay pass", - "id": "1854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like a plain rock, must have some ore in it?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "1855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "'A Tourists Guide To Ardougne'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guide book", - "id": "1856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Rantuki tribes' totem.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Totem", - "id": "1857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It says 'To Lord Handelmort, Handelmort Mansion'.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Address label", - "id": "1858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Raw ugthanki meat", - "id": "1859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Raw ugthanki meat", - "id": "1860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Freshly cooked ugthanki meat.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ugthanki meat", - "id": "1861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ugthanki meat", - "id": "1862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pitta dough", - "id": "1863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pitta dough", - "id": "1864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nicely baked pitta bread. Needs more ingredients to make a kebab.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pitta bread", - "id": "1865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pitta bread", - "id": "1866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's all burnt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt pitta bread", - "id": "1867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt pitta bread", - "id": "1868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of tomatoes in a bowl.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Chopped tomato", - "id": "1869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Chopped tomato", - "id": "1870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of onions in a bowl.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Chopped onion", - "id": "1871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Chopped onion", - "id": "1872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Strips of ugthanki meat in a bowl.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Chopped ugthanki", - "id": "1873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Chopped ugthanki", - "id": "1874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of chopped onions and tomatoes in a bowl.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Onion & tomato", - "id": "1875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Onion & tomato", - "id": "1876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of chopped onions and ugthanki meat in a bowl.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Ugthanki & onion", - "id": "1877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Ugthanki & onion", - "id": "1878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of chopped tomatoes and ugthanki meat in a bowl.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Ugthanki & tomato", - "id": "1879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Ugthanki & tomato", - "id": "1880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of chopped tomatoes, onions and ugthanki meat in a bowl.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Kebab mix", - "id": "1881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Kebab mix", - "id": "1882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strange smelling kebab made from ugthanki meat.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Ugthanki kebab", - "id": "1883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Ugthanki kebab", - "id": "1884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh kebab made from ugthanki meat.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Ugthanki kebab", - "id": "1885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Ugthanki kebab", - "id": "1886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for baking cakes.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cake tin", - "id": "1887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cake tin", - "id": "1888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Now all I need to do is cook it.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Uncooked cake", - "id": "1889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Uncooked cake", - "id": "1890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plain sponge cake.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Cake", - "id": "1891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Cake", - "id": "1892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Someone has eaten a big chunk of this cake.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "2/3 cake", - "id": "1893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "2/3 cake", - "id": "1894", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd rather have a whole cake.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Slice of cake", - "id": "1895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Slice of cake", - "id": "1896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks very tasty.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Chocolate cake", - "id": "1897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Chocolate cake", - "id": "1898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Someone has eaten a big chunk of this cake.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "2/3 chocolate cake", - "id": "1899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "2/3 chocolate cake", - "id": "1900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd rather have a whole cake.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Chocolate slice", - "id": "1901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Chocolate slice", - "id": "1902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Argh what a mess!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt cake", - "id": "1903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt cake", - "id": "1904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Probably the finest ale in Asgarnia.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale", - "id": "1905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale", - "id": "1906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's got strange bubbles in it.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard's mind bomb", - "id": "1907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard's mind bomb", - "id": "1908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of frothy ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Greenman's ale", - "id": "1909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Greenman's ale", - "id": "1910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of bitter.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dragon bitter", - "id": "1911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dragon bitter", - "id": "1912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pint of thick dark beer.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dwarven stout", - "id": "1913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dwarven stout", - "id": "1914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A murky glass of some sort of drink.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Grog", - "id": "1915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Grog", - "id": "1916", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of frothy ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer", - "id": "1917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer", - "id": "1918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to fill this with beer.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer glass", - "id": "1919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer glass", - "id": "1920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bowl of water.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bowl of water", - "id": "1921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bowl of water", - "id": "1922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for mixing things.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bowl", - "id": "1923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bowl", - "id": "1924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a wooden bucket.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Bucket", - "id": "1925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Bucket", - "id": "1926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of milk.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of milk", - "id": "1927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of milk", - "id": "1928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of water.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of water", - "id": "1929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of water", - "id": "1930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This pot is empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot", - "id": "1931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot", - "id": "1932", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is flour in this pot.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pot of flour", - "id": "1933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pot of flour", - "id": "1934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This jug is empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug", - "id": "1935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug", - "id": "1936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's full of water.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of water", - "id": "1937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of water", - "id": "1938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A foul smelling thick tar-like substance.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Swamp tar", - "id": "1939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick tar-like substance mixed with flour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw swamp paste", - "id": "1940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tar-like substance mixed with flour and warmed.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Swamp paste", - "id": "1941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This could be used to make a good stew.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potato", - "id": "1942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potato", - "id": "1943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice fresh egg.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Egg", - "id": "1944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Egg", - "id": "1945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little heap of flour.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Flour", - "id": "1946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some wheat heads.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Grain", - "id": "1947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Grain", - "id": "1948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "What a silly hat.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's hat", - "id": "1949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's hat", - "id": "1950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very bright red berries.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Redberries", - "id": "1951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Redberries", - "id": "1952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Potentially pastry.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pastry dough", - "id": "1953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pastry dough", - "id": "1954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps the doctor away.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking apple", - "id": "1955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking apple", - "id": "1956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong smelling onion.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Onion", - "id": "1957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Onion", - "id": "1958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Happy Halloween.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Pumpkin", - "id": "1959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Pumpkin", - "id": "1960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Happy Easter.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Easter egg", - "id": "1961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Easter egg", - "id": "1962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm this looks tasty.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Banana", - "id": "1963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Banana", - "id": "1964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yuck I don't like cabbage.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbage", - "id": "1965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbage", - "id": "1966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yuck I don't like cabbage.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbage", - "id": "1967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbage", - "id": "1968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A home made spinach thing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spinach roll", - "id": "1969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spinach roll", - "id": "1970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A meaty kebab.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Kebab", - "id": "1971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Kebab", - "id": "1972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmmmmmm chocolate.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Chocolate bar", - "id": "1973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Chocolate bar", - "id": "1974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's ground up chocolate.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocolate dust", - "id": "1975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocolate dust", - "id": "1976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Milk with chocolate in it.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocolatey milk", - "id": "1977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice cup of tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "1978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "1979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty cup.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Empty cup", - "id": "1980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Empty cup", - "id": "1981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would make good ketchup.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Tomato", - "id": "1982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Tomato", - "id": "1983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rotten to the core!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten apple", - "id": "1984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's got holes in it.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cheese", - "id": "1985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cheese", - "id": "1986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good grapes for wine making.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grapes", - "id": "1987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grapes", - "id": "1988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An optimist would say it's half full.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half full wine jug", - "id": "1989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half full wine jug", - "id": "1990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oh dear, this wine is terrible!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of bad wine", - "id": "1991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of bad wine", - "id": "1992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's full of wine.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of wine", - "id": "1993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of wine", - "id": "1994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This wine needs to ferment before it can be drunk.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Unfermented wine", - "id": "1995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Unfermented wine", - "id": "1996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to add some meat too.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Incomplete stew", - "id": "1997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Incomplete stew", - "id": "1998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to add some potato too.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Incomplete stew", - "id": "1999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Incomplete stew", - "id": "2000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Uncooked stew", - "id": "2001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Uncooked stew", - "id": "2002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a meat and potato stew.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Stew", - "id": "2003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Stew", - "id": "2004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Eew, it's horribly burnt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt stew", - "id": "2005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt stew", - "id": "2006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This could liven up an otherwise bland stew.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Spice", - "id": "2007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Spice", - "id": "2008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Uncooked curry", - "id": "2009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Uncooked curry", - "id": "2010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a spicy hot curry.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Curry", - "id": "2011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Curry", - "id": "2012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Eew, it's horribly burnt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt curry", - "id": "2013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt curry", - "id": "2014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong spirit.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Vodka", - "id": "2015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Vodka", - "id": "2016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bottle of Draynor Malt.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Whisky", - "id": "2017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Whisky", - "id": "2018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong spirit.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Gin", - "id": "2019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Gin", - "id": "2020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong spirit.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Brandy", - "id": "2021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Brandy", - "id": "2022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on tree gnome cocktails.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cocktail guide", - "id": "2023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cocktail guide", - "id": "2024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for mixing cocktails.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cocktail shaker", - "id": "2025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For sipping cocktails.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cocktail glass", - "id": "2026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cocktail glass", - "id": "2027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks good... smells strong.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Blurberry special", - "id": "2028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Blurberry special", - "id": "2029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warm creamy alcoholic beverage.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Choc saturday", - "id": "2030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Choc saturday", - "id": "2031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warm creamy alcoholic beverage.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Drunk dragon", - "id": "2032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Drunk dragon", - "id": "2033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool refreshing fruit mix.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Fruit blast", - "id": "2034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Fruit blast", - "id": "2035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh healthy fruit mix.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Pineapple punch", - "id": "2036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Pineapple punch", - "id": "2037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Short Green Guy... looks good.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Short green guy", - "id": "2038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Short green guy", - "id": "2039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks like a strange mix.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Wizard blizzard", - "id": "2040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Wizard blizzard", - "id": "2041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh healthy fruit mix.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Pineapple punch", - "id": "2048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Pineapple punch", - "id": "2049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks like a strange mix.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Wizard blizzard", - "id": "2054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Wizard blizzard", - "id": "2055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2063", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks good... smells strong.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Blurberry special", - "id": "2064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Blurberry special", - "id": "2065", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2069", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2071", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2073", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warm creamy alcoholic beverage.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Choc saturday", - "id": "2074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Choc saturday", - "id": "2075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2079", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Short Green Guy... looks good.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Short green guy", - "id": "2080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Short green guy", - "id": "2081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool refreshing fruit mix.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Fruit blast", - "id": "2084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Fruit blast", - "id": "2085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2087", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cocktail is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Unfinished cocktail", - "id": "2091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warm creamy alcoholic beverage.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Drunk dragon", - "id": "2092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Drunk dragon", - "id": "2093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'm not completely sure what this contains.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'm not completely sure what this contains.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2097", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'm not completely sure what this contains.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2099", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'm not completely sure what this contains.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd cocktail", - "id": "2101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh lemon.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lemon", - "id": "2102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lemon", - "id": "2103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh chunks of lemon.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lemon chunks", - "id": "2104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lemon chunks", - "id": "2105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh lemon slices.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lemon slices", - "id": "2106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lemon slices", - "id": "2107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh orange.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Orange", - "id": "2108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Orange", - "id": "2109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh chunks of orange.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Orange chunks", - "id": "2110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Orange chunks", - "id": "2111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh orange slices.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Orange slices", - "id": "2112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Orange slices", - "id": "2113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It can be cut up into something more manageable with a knife.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple", - "id": "2114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple", - "id": "2115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh chunks of pineapple.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple chunks", - "id": "2116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple chunks", - "id": "2117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Exotic fruit.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple ring", - "id": "2118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple ring", - "id": "2119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh lime.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lime", - "id": "2120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lime", - "id": "2121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh chunks of lime.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lime chunks", - "id": "2122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lime chunks", - "id": "2123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh lime slices.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lime slices", - "id": "2124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Lime slices", - "id": "2125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some rather pretty blue berries.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Dwellberries", - "id": "2126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Dwellberries", - "id": "2127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Small sweet smelling leaves.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Equa leaves", - "id": "2128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Equa leaves", - "id": "2129", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh cream.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Pot of cream", - "id": "2130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Pot of cream", - "id": "2131", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw beef", - "id": "2132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw beef", - "id": "2133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw rat meat", - "id": "2134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw rat meat", - "id": "2135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw bear meat", - "id": "2136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw bear meat", - "id": "2137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw chicken", - "id": "2138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw chicken", - "id": "2139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm this looks tasty.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked chicken", - "id": "2140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked chicken", - "id": "2141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm this looks tasty.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked meat", - "id": "2142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked meat", - "id": "2143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oh dear, it's totally burnt!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt chicken", - "id": "2144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt chicken", - "id": "2145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oh dear, it's totally burnt!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt meat", - "id": "2146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt meat", - "id": "2147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very strange eel.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Raw lava eel", - "id": "2148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Strange, it looks cooler now it's been cooked.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Lava eel", - "id": "2149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slippery little blighter.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Swamp toad", - "id": "2150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Swamp toad", - "id": "2151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're a gnome delicacy apparently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toad's legs", - "id": "2152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toad's legs", - "id": "2153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're a gnome delicacy apparently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Equa toad's legs", - "id": "2154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Equa toad's legs", - "id": "2155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're a gnome delicacy apparently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Spicy toad's legs", - "id": "2156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Spicy toad's legs", - "id": "2157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're a gnome delicacy apparently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Seasoned legs", - "id": "2158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Seasoned legs", - "id": "2159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're a gnome delicacy apparently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Spicy worm", - "id": "2160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Spicy worm", - "id": "2161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're a gnome delicacy apparently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "King worm", - "id": "2162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "King worm", - "id": "2163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deep tin used for baking gnome battas in.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "2164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shallow tray used for baking crunchies in.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crunchy tray", - "id": "2165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large ovenproof bowl.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnomebowl mould", - "id": "2166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Aluft Gianne's favorite dishes.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gianne's cook book", - "id": "2167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gianne's cook book", - "id": "2168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's Aluft Gianne's secret mix of spices.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gnome spice", - "id": "2169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gnome spice", - "id": "2170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's made from a secret recipe.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gianne dough", - "id": "2171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Gianne dough", - "id": "2172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This gnome bowl doesn't look very appetising.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd gnomebowl", - "id": "2173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd gnomebowl", - "id": "2174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This gnome bowl has been burnt to a cinder.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt gnomebowl", - "id": "2175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt gnomebowl", - "id": "2176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This gnome bowl is in the early stages of preparation.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Half baked bowl", - "id": "2177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This gnome bowl needs cooking.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Raw gnomebowl", - "id": "2178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dish is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dish is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dish is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks great!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocolate bomb", - "id": "2185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocolate bomb", - "id": "2186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Tangled toad's legs", - "id": "2187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item's legs.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Tangled toad's legs", - "id": "2188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dish is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Worm hole", - "id": "2191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Worm hole", - "id": "2192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dish is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "2194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks pretty healthy.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Veg ball", - "id": "2195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Veg ball", - "id": "2196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies don't look very appetising.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd crunchies", - "id": "2197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd crunchies", - "id": "2198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies have been burnt to a cinder.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt crunchies", - "id": "2199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt crunchies", - "id": "2200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This crunchy is in the early stages of preparation.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Half baked crunchy", - "id": "2201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies need cooking.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Raw crunchies", - "id": "2202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies are just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Worm crunchies", - "id": "2205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Worm crunchies", - "id": "2206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies are just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yum... smells good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocchip crunchies", - "id": "2209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chocchip crunchies", - "id": "2210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies are just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yum... smells good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Spicy crunchies", - "id": "2213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Spicy crunchies", - "id": "2214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These crunchies are just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "2216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toad crunchies", - "id": "2217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toad crunchies", - "id": "2218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Worm batta", - "id": "2219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Worm batta", - "id": "2220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Toad batta", - "id": "2221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Toad batta", - "id": "2222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This smells really good.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Cheese+tom batta", - "id": "2223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Cheese+tom batta", - "id": "2224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Fruit batta", - "id": "2225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Fruit batta", - "id": "2226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Well... it looks healthy.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Vegetable batta", - "id": "2227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Vegetable batta", - "id": "2228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks great!", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Chocolate bomb", - "id": "2229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Chocolate bomb", - "id": "2230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Tangled toad's legs", - "id": "2231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Tangled toad's legs", - "id": "2232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Worm hole", - "id": "2233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Worm hole", - "id": "2234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks pretty healthy.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Veg ball", - "id": "2235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Veg ball", - "id": "2236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Worm crunchies", - "id": "2237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Worm crunchies", - "id": "2238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yum... smells good.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Chocchip crunchies", - "id": "2239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Chocchip crunchies", - "id": "2240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yum... smells good.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Spicy crunchies", - "id": "2241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Spicy crunchies", - "id": "2242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Toad crunchies", - "id": "2243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Toad crunchies", - "id": "2244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta doesn't look very appetising.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd batta", - "id": "2245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Odd batta", - "id": "2246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta has been burnt to a cinder.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt batta", - "id": "2247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt batta", - "id": "2248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This gnome batta is in the early stages of preparation.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Half baked batta", - "id": "2249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This gnome batta needs cooking.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Raw batta", - "id": "2250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm batta", - "id": "2253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm batta", - "id": "2254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toad batta", - "id": "2255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toad batta", - "id": "2256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This smells really good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cheese+tom batta", - "id": "2259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cheese+tom batta", - "id": "2260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It actually smells quite good.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Fruit batta", - "id": "2277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Fruit batta", - "id": "2278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This batta is just missing those little finishing touches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2279", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "2280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Well... it looks healthy.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vegetable batta", - "id": "2281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vegetable batta", - "id": "2282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to add some tomato next.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pizza base", - "id": "2283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pizza base", - "id": "2284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to add some cheese next.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Incomplete pizza", - "id": "2285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Incomplete pizza", - "id": "2286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs cooking.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Uncooked pizza", - "id": "2287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Uncooked pizza", - "id": "2288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cheese and tomato pizza.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Plain pizza", - "id": "2289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Plain pizza", - "id": "2290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of this pizza has been eaten.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "1/2 plain pizza", - "id": "2291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "1/2 plain pizza", - "id": "2292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pizza with bits of meat on it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Meat pizza", - "id": "2293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Meat pizza", - "id": "2294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of this pizza has been eaten.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "1/2 meat pizza", - "id": "2295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "1/2 meat pizza", - "id": "2296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pizza with anchovies.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Anchovy pizza", - "id": "2297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Anchovy pizza", - "id": "2298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of this pizza has been eaten.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "1/2 anchovy pizza", - "id": "2299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "1/2 anchovy pizza", - "id": "2300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tropicana pizza.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pineapple pizza", - "id": "2301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pineapple pizza", - "id": "2302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of this pizza has been eaten.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "1/2pineapple pizza", - "id": "2303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "1/2pineapple pizza", - "id": "2304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oh dear!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt pizza", - "id": "2305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt pizza", - "id": "2306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some uncooked dough.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bread dough", - "id": "2307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bread dough", - "id": "2308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice crispy bread.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Bread", - "id": "2309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Bread", - "id": "2310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice crispy bread. Possibly too crispy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt bread", - "id": "2311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt bread", - "id": "2312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Deceptively pie shaped.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Pie dish", - "id": "2313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Pie dish", - "id": "2314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to find a filling for this pie.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pie shell", - "id": "2315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pie shell", - "id": "2316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be much tastier cooked.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Uncooked apple pie", - "id": "2317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Uncooked apple pie", - "id": "2318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be much healthier cooked.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Uncooked meat pie", - "id": "2319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Uncooked meat pie", - "id": "2320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would be much more appetising cooked.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Uncooked berry pie", - "id": "2321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Uncooked berry pie", - "id": "2322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm Apple pie.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Apple pie", - "id": "2323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Apple pie", - "id": "2324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks tasty.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Redberry pie", - "id": "2325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Redberry pie", - "id": "2326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not for vegetarians.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Meat pie", - "id": "2327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Meat pie", - "id": "2328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I think I left it on the stove too long.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt pie", - "id": "2329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt pie", - "id": "2330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Half of it is suitable for vegetarians.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Half a meat pie", - "id": "2331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Half a meat pie", - "id": "2332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "So tasty I kept some for later.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Half a redberry pie", - "id": "2333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Half a redberry pie", - "id": "2334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm half an apple pie.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Half an apple pie", - "id": "2335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Half an apple pie", - "id": "2336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Raw meat from the oomlie bird.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Raw oomlie", - "id": "2337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Raw oomlie", - "id": "2338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick green palm leaf used by natives to cook meat in.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Palm leaf", - "id": "2339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Palm leaf", - "id": "2340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oomlie meat in a palm leaf pouch. It just needs to be cooked.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Wrapped oomlie", - "id": "2341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Wrapped oomlie", - "id": "2342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Deliciously cooked oomlie meat in a palm leaf pouch.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Cooked oomlie wrap", - "id": "2343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Cooked oomlie wrap", - "id": "2344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Burnt oomlie meat in a palm leaf pouch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt oomlie wrap", - "id": "2345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt oomlie wrap", - "id": "2346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for hitting things!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hammer", - "id": "2347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hammer", - "id": "2348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of bronze.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Bronze bar", - "id": "2349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Bronze bar", - "id": "2350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of iron.", - "values": [ - { - "lowAlch": "28", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Iron bar", - "id": "2351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "28", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Iron bar", - "id": "2352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of steel.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Steel bar", - "id": "2353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Steel bar", - "id": "2354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of silver.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Silver bar", - "id": "2355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Silver bar", - "id": "2356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Gold bar", - "id": "2357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Gold bar", - "id": "2358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of mithril.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Mithril bar", - "id": "2359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Mithril bar", - "id": "2360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of adamantite.", - "values": [ - { - "lowAlch": "640", - "highAlch": "0", - "shopValue": "640" - } - ], - "name": "Adamantite bar", - "id": "2361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "640", - "highAlch": "0", - "shopValue": "640" - } - ], - "name": "Adamantite bar", - "id": "2362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of runite.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Runite bar", - "id": "2363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Runite bar", - "id": "2364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of 'perfect' gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "'perfect' gold bar", - "id": "2365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The left half of a dragon square shield.", - "values": [ - { - "lowAlch": "110000", - "highAlch": "0", - "shopValue": "110000" - } - ], - "name": "Shield left half", - "id": "2366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "110000", - "highAlch": "0", - "shopValue": "110000" - } - ], - "name": "Shield left half", - "id": "2367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The right half of a dragon square shield.", - "values": [ - { - "lowAlch": "500000", - "highAlch": "0", - "shopValue": "500000" - } - ], - "name": "Shield right half", - "id": "2368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500000", - "highAlch": "0", - "shopValue": "500000" - } - ], - "name": "Shield right half", - "id": "2369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of studs for leather armour.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Steel studs", - "id": "2370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Steel studs", - "id": "2371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old statue of an ogre warrior.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre relic", - "id": "2372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of an ogre relic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Relic part 1", - "id": "2373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of an ogre relic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Relic part 2", - "id": "2374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of an ogre relic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Relic part 3", - "id": "2375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skavid map", - "id": "2376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very tooth like.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre tooth", - "id": "2377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Formerly the property of Toban the ogre.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toban's key", - "id": "2378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Handy if you want to break all your teeth.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock cake", - "id": "2379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Powers the Watchtower in Yanille.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal", - "id": "2380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Powers the Watchtower in Yanille.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal", - "id": "2381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Powers the Watchtower in Yanille.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal", - "id": "2382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Powers the Watchtower in Yanille.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal", - "id": "2383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Eeeeyeeew!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Finger nails", - "id": "2384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can't wear this old thing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Old robe", - "id": "2385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks kind of useless...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unusual armour", - "id": "2386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pointy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Damaged dagger", - "id": "2387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useless as an eyepatch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tattered eye patch", - "id": "2388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An infusion of water and jangerberries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vial", - "id": "2389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of jangerberries and guam leaves in a vial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vial", - "id": "2390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Let's see it fly now!", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Ground bat bones", - "id": "2391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Ground bat bones", - "id": "2392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a stolen bar of gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Gold", - "id": "2393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strange brew.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Potion", - "id": "2394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dangerous magical liquid.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Magic ogre potion", - "id": "2395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spell is written on this parchment.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Spell scroll", - "id": "2396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tattered old robe.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Shaman robe", - "id": "2397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Deadly!", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Nightshade", - "id": "2398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key given to me by Wizard Traiborn.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key given to me by Captain Rovin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key I found in a drain.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The magical sword 'Silverlight'.", - "values": [ - { - "lowAlch": "50", - "highAlch": "9", - "shopValue": "50" - } - ], - "name": "Silverlight", - "id": "2402", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 12, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Scroll containing a powerful enchantment of restoration.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hazeel scroll", - "id": "2403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This key opens a chest in the Carnillean household.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chest key", - "id": "2404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Decorative armour; an heirloom of the Carnillean family.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Carnillean armour", - "id": "2405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sign of my commitment to Hazeel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hazeel's mark", - "id": "2406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A child's ball.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ball", - "id": "2407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A daily journal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diary", - "id": "2408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to the Witch's house's front door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Door key", - "id": "2409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very attractive magnet.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Magnet", - "id": "2410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to the Witch's shed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cape from the almighty god Saradomin.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Saradomin cape", - "id": "2412", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 10 - } - ] - }, - { - "examine": "A cape from the almighty god Guthix.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Guthix cape", - "id": "2413", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 10 - } - ] - }, - { - "examine": "A cape from the almighty god Zamorak.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Zamorak cape", - "id": "2414", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 10 - } - ] - }, - { - "examine": "A magical staff imbued with the power of Saradomin.", - "values": [ - { - "lowAlch": "80000", - "highAlch": "-1", - "shopValue": "80000" - } - ], - "name": "Saradomin staff", - "id": "2415", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 6, - "prayerBonus": 20, - "attackCrush": 6, - "defenceRange": 0, - "attackStab": -1, - "defenceStab": 2, - "defenceMagic": 6 - } - ] - }, - { - "examine": "A magical staff imbued with the power of Guthix.", - "values": [ - { - "lowAlch": "80000", - "highAlch": "-1", - "shopValue": "80000" - } - ], - "name": "Guthix staff", - "id": "2416", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 6, - "prayerBonus": 20, - "attackCrush": 6, - "defenceRange": 0, - "attackStab": -1, - "defenceStab": 2, - "defenceMagic": 6 - } - ] - }, - { - "examine": "A magical staff imbued with the power of Zamorak.", - "values": [ - { - "lowAlch": "80000", - "highAlch": "-1", - "shopValue": "80000" - } - ], - "name": "Zamorak staff", - "id": "2417", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 6, - "prayerBonus": 20, - "attackCrush": 6, - "defenceRange": 0, - "attackStab": -1, - "defenceStab": 2, - "defenceMagic": 6 - } - ] - }, - { - "examine": "A heavy key made of bronze.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze key", - "id": "2418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wig that has been dyed slightly blonde.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wig", - "id": "2419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Suffers in cold weather.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brass monkey", - "id": "2420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A grey woollen wig.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wig", - "id": "2421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice hat from a cracker.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue partyhat", - "id": "2422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An imprint of a key in a lump of clay.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key print", - "id": "2423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bottle of skin coloured paste.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Paste", - "id": "2424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "On average, it's accurate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orbital knife", - "id": "2425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oh dear, it's totally burnt!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt oomlie", - "id": "2426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt oomlie", - "id": "2427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An attack potion.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Attack potion(4)", - "id": "2428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Attack potion(4)", - "id": "2429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stat restoration potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Restore potion(4)", - "id": "2430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Restore potion(4)", - "id": "2431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defence potion.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Defence potion(4)", - "id": "2432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Defence potion(4)", - "id": "2433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A restore prayer potion.", - "values": [ - { - "lowAlch": "190", - "highAlch": "0", - "shopValue": "190" - } - ], - "name": "Prayer potion(4)", - "id": "2434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "190", - "highAlch": "0", - "shopValue": "190" - } - ], - "name": "Prayer potion(4)", - "id": "2435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super attack potion.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Super attack(4)", - "id": "2436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Super attack(4)", - "id": "2437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishing potion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fishing potion(4)", - "id": "2438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fishing potion(4)", - "id": "2439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super strength potion.", - "values": [ - { - "lowAlch": "275", - "highAlch": "0", - "shopValue": "275" - } - ], - "name": "Super strength(4)", - "id": "2440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "275", - "highAlch": "0", - "shopValue": "275" - } - ], - "name": "Super strength(4)", - "id": "2441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super defence potion.", - "values": [ - { - "lowAlch": "330", - "highAlch": "0", - "shopValue": "330" - } - ], - "name": "Super defence(4)", - "id": "2442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "330", - "highAlch": "0", - "shopValue": "330" - } - ], - "name": "Super defence(4)", - "id": "2443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ranging potion.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Ranging potion(4)", - "id": "2444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Ranging potion(4)", - "id": "2445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An antipoison potion.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Antipoison(4)", - "id": "2446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Antipoison(4)", - "id": "2447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super antipoison potion.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Superantipoison(4)", - "id": "2448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Superantipoison(4)", - "id": "2449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Zamorak Brew.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Zamorak brew(4)", - "id": "2450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Zamorak brew(4)", - "id": "2451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An anti-firebreath potion.", - "values": [ - { - "lowAlch": "330", - "highAlch": "0", - "shopValue": "330" - } - ], - "name": "Antifire potion(4)", - "id": "2452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "330", - "highAlch": "0", - "shopValue": "330" - } - ], - "name": "Antifire potion(4)", - "id": "2453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An anti-firebreath potion.", - "values": [ - { - "lowAlch": "264", - "highAlch": "0", - "shopValue": "264" - } - ], - "name": "Antifire potion(3)", - "id": "2454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "264", - "highAlch": "0", - "shopValue": "264" - } - ], - "name": "Antifire potion(3)", - "id": "2455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An anti-firebreath potion.", - "values": [ - { - "lowAlch": "198", - "highAlch": "0", - "shopValue": "198" - } - ], - "name": "Antifire potion(2)", - "id": "2456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "198", - "highAlch": "0", - "shopValue": "198" - } - ], - "name": "Antifire potion(2)", - "id": "2457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An anti-firebreath potion.", - "values": [ - { - "lowAlch": "132", - "highAlch": "0", - "shopValue": "132" - } - ], - "name": "Antifire potion(1)", - "id": "2458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "132", - "highAlch": "0", - "shopValue": "132" - } - ], - "name": "Antifire potion(1)", - "id": "2459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A posy of flowers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Flowers", - "id": "2477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fish food", - "id": "2478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Poison", - "id": "2479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Distorted.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firestarter", - "id": "2480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "68", - "highAlch": "0", - "shopValue": "68" - } - ], - "name": "Clean lantadyme", - "id": "2481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "68", - "highAlch": "0", - "shopValue": "68" - } - ], - "name": "Clean lantadyme", - "id": "2482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Lantadyme potion.", - "values": [ - { - "lowAlch": "68", - "highAlch": "0", - "shopValue": "68" - } - ], - "name": "Lantadyme potion(unf)", - "id": "2483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "68", - "highAlch": "0", - "shopValue": "68" - } - ], - "name": "Lantadyme potion(unf)", - "id": "2484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy lantadyme", - "id": "2485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy lantadyme", - "id": "2486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vambraces made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1800" - } - ], - "name": "Blue d'hide vamb", - "id": "2487", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 9, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1800" - } - ], - "name": "Blue d'hide vamb", - "id": "2488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vambraces made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2160" - } - ], - "name": "Red d'hide vamb", - "id": "2489", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": 10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 4, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2160" - } - ], - "name": "Red d'hide vamb", - "id": "2490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vambraces made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "Black d'hide vamb", - "id": "2491", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "Black d'hide vamb", - "id": "2492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "Blue d'hide chaps", - "id": "2493", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 25, - "defenceMagic": 14 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "Blue d'hide chaps", - "id": "2494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3108" - } - ], - "name": "Red d'hide chaps", - "id": "2495", - "bonuses": [ - { - "defenceCrush": 30, - "attackRange": 14, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 22, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 28, - "attackStab": 0, - "defenceStab": 28, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3108" - } - ], - "name": "Red d'hide chaps", - "id": "2496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3732" - } - ], - "name": "Black d'hide chaps", - "id": "2497", - "bonuses": [ - { - "defenceCrush": 33, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 31, - "defenceMagic": 28 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3732" - } - ], - "name": "Black d'hide chaps", - "id": "2498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "5616" - } - ], - "name": "Blue d'hide body", - "id": "2499", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 20, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 45, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "5616" - } - ], - "name": "Blue d'hide body", - "id": "2500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6738" - } - ], - "name": "Red d'hide body", - "id": "2501", - "bonuses": [ - { - "defenceCrush": 55, - "attackRange": 25, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 50, - "attackStab": 0, - "defenceStab": 50, - "defenceMagic": 40 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6738" - } - ], - "name": "Red d'hide body", - "id": "2502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "8088" - } - ], - "name": "Black d'hide body", - "id": "2503", - "bonuses": [ - { - "defenceCrush": 60, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 47, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 55, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 50 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "8088" - } - ], - "name": "Black d'hide body", - "id": "2504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of prepared blue dragonhide.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Blue d-leather", - "id": "2505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Blue d-leather", - "id": "2506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of prepared red dragonhide.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Red dragon leather", - "id": "2507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Red dragon leather", - "id": "2508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of prepared black dragonhide.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Black d-leather", - "id": "2509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent itemleather.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Black d-leather", - "id": "2510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A number of wooden logs.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Logs", - "id": "2511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "What could be in here?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box of delights", - "id": "2512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Gets rid of all that nasty kitchen waste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Waste disposal", - "id": "2513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Raw shrimps", - "id": "2514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Raw shrimps", - "id": "2515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is flour in this pot.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pot of flour", - "id": "2516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pot of flour", - "id": "2517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pretty smelly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten tomato", - "id": "2518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten tomato", - "id": "2519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brown toy horse.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A white toy horse.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black toy horse.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A grey toy horse.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Toy horsey", - "id": "2527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wonder what happens if I rub it...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lamp", - "id": "2528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical sphere that glimmers within.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orb of light", - "id": "2529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bones are for burying!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones", - "id": "2530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones", - "id": "2531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with iron heads and oil soaked cloth.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron fire arrows", - "id": "2532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These iron headed arrows are ablaze with fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Iron fire arrows", - "id": "2533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with steel heads and oil soaked cloth.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Steel fire arrows", - "id": "2534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These steel headed arrows are ablaze with fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel fire arrows", - "id": "2535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with mithril heads and oil soaked cloth.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Mithril fire arrows", - "id": "2536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These mithril headed arrows are ablaze with fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Mithril fire arrows", - "id": "2537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with adamant heads and oil soaked cloth.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Addy fire arrows", - "id": "2538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These adamant headed arrows are ablaze with fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Addy fire arrows", - "id": "2539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with rune heads and oil soaked cloth.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Rune fire arrows", - "id": "2540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These rune headed arrows are ablaze with fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Rune fire arrows", - "id": "2541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Ring of recoil", - "id": "2550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "900", - "highAlch": "0", - "shopValue": "900" - } - ], - "name": "Ring of recoil", - "id": "2551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(8)", - "id": "2552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(8)", - "id": "2553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(7)", - "id": "2554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(7)", - "id": "2555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(6)", - "id": "2556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(6)", - "id": "2557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(5)", - "id": "2558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(5)", - "id": "2559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(4)", - "id": "2560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(4)", - "id": "2561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(3)", - "id": "2562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(3)", - "id": "2563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(2)", - "id": "2564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(2)", - "id": "2565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(1)", - "id": "2566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1275", - "highAlch": "0", - "shopValue": "1275" - } - ], - "name": "Ring of dueling(1)", - "id": "2567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ring of forging", - "id": "2568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2025", - "highAlch": "0", - "shopValue": "2025" - } - ], - "name": "Ring of forging", - "id": "2569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Ring of life", - "id": "2570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3525", - "highAlch": "0", - "shopValue": "3525" - } - ], - "name": "Ring of life", - "id": "2571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Ring of wealth", - "id": "2572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17625", - "highAlch": "0", - "shopValue": "17625" - } - ], - "name": "Ring of wealth", - "id": "2573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used by navigators to find their position in RuneScape.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Sextant", - "id": "2574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fine looking time piece.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Watch", - "id": "2575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A navigator's chart of RuneScape.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chart", - "id": "2576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lightweight boots ideal for rangers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Ranger boots", - "id": "2577", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Ranger boots", - "id": "2578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Slightly magical boots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Wizard boots", - "id": "2579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Wizard boots", - "id": "2580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Endorsed by Robin Hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "270" - } - ], - "name": "Robin hood hat", - "id": "2581", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 6, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 4, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "270" - } - ], - "name": "Robin hood hat", - "id": "2582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black plate body with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Black platebody (t)", - "id": "2583", - "bonuses": [ - { - "defenceCrush": 30, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 40, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 41, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Black platebody (t)", - "id": "2584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black platelegs with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black platelegs (t)", - "id": "2585", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black platelegs (t)", - "id": "2586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black full helm with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "Black full helm(t)", - "id": "2587", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "Black full helm (t)", - "id": "2588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black kiteshield with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield (t)", - "id": "2589", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield (t)", - "id": "2590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black platebody with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Black platebody (g)", - "id": "2591", - "bonuses": [ - { - "defenceCrush": 30, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 40, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 41, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "Black platebody (g)", - "id": "2592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black platelegs with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black platelegs (g)", - "id": "2593", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black platelegs (g)", - "id": "2594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black full helm with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "Black full helm(g)", - "id": "2595", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "Black full helm (g)", - "id": "2596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black kiteshield with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield (g)", - "id": "2597", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield (g)", - "id": "2598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant platebody with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Adam platebody (t)", - "id": "2599", - "bonuses": [ - { - "defenceCrush": 55, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 63, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 63, - "attackStab": 0, - "defenceStab": 65, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Adam platebody (t)", - "id": "2600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant platelegs with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam platelegs (t)", - "id": "2601", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam platelegs (t)", - "id": "2602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant kiteshield with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield (t)", - "id": "2603", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 27, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield (t)", - "id": "2604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant full helm with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2112" - } - ], - "name": "Adam full helm(t)", - "id": "2605", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 21, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 19, - "attackStab": 0, - "defenceStab": 19, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2112" - } - ], - "name": "Adam full helm (t)", - "id": "2606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant platebody with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Adam platebody (g)", - "id": "2607", - "bonuses": [ - { - "defenceCrush": 55, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 63, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 63, - "attackStab": 0, - "defenceStab": 65, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Adam platebody (g)", - "id": "2608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant platelegs with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam platelegs (g)", - "id": "2609", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam platelegs (g)", - "id": "2610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant kiteshield with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield (g)", - "id": "2611", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 27, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield (g)", - "id": "2612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant full helm with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2112" - } - ], - "name": "Adam full helm(g)", - "id": "2613", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 21, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 19, - "attackStab": 0, - "defenceStab": 19, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2112" - } - ], - "name": "Adam full helm (g)", - "id": "2614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune plate body with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rune platebody (g)", - "id": "2615", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rune platebody (g)", - "id": "2616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platelegs with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune platelegs (g)", - "id": "2617", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune platelegs (g)", - "id": "2618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune full helm with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune full helm(g)", - "id": "2619", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune full helm (g)", - "id": "2620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune kiteshield with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield (g)", - "id": "2621", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield (g)", - "id": "2622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platebody with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rune platebody (t)", - "id": "2623", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rune platebody (t)", - "id": "2624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platelegs with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune platelegs (t)", - "id": "2625", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune platelegs (t)", - "id": "2626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune full helm with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune full helm (t)", - "id": "2627", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune full helm (t)", - "id": "2628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune kiteshield with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield (t)", - "id": "2629", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield (t)", - "id": "2630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Your money or your life!", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Highwayman mask", - "id": "2631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Highwayman mask", - "id": "2632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Parlez-vous francais?", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Blue beret", - "id": "2633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Blue beret", - "id": "2634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Parlez-vous francais?", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Black beret", - "id": "2635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Black beret", - "id": "2636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Parlez-vous francais?", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "White beret", - "id": "2637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "White beret", - "id": "2638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All for one and one for all!", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Tan cavalier", - "id": "2639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Tan cavalier", - "id": "2640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All for one and one for all!", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Dark cavalier", - "id": "2641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Dark cavalier", - "id": "2642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All for one and one for all!", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Black cavalier", - "id": "2643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Black cavalier", - "id": "2644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A minimalist's hat.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Red headband", - "id": "2645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Red headband", - "id": "2646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A minimalist's hat.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Black headband", - "id": "2647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Black headband", - "id": "2648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A minimalist's hat.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Brown headband", - "id": "2649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Brown headband", - "id": "2650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Shiver me timbers!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "108" - } - ], - "name": "Pirate's hat", - "id": "2651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item's hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "108" - } - ], - "name": "Pirate's hat", - "id": "2652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platebody in the colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Zamorak platebody", - "id": "2653", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Zamorak platebody", - "id": "2654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platelegs in the colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Zamorak platelegs", - "id": "2655", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Zamorak platelegs", - "id": "2656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune full helm in the colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Zamorak full helm", - "id": "2657", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Zamorak full helm", - "id": "2658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune kiteshield in the colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Zamorak kiteshield", - "id": "2659", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Zamorak kiteshield", - "id": "2660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platebody in the colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Saradomin plate", - "id": "2661", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Saradomin plate", - "id": "2662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platelegs in the colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Saradomin legs", - "id": "2663", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Saradomin legs", - "id": "2664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune full helm in the colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Saradomin full", - "id": "2665", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Saradomin full helm", - "id": "2666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune kiteshield in the colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Saradomin kite", - "id": "2667", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Saradomin kite", - "id": "2668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune plate body in the colours of Guthix.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Guthix platebody", - "id": "2669", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Guthix platebody", - "id": "2670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune plate legs in the colours of Guthix.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Guthix platelegs", - "id": "2671", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Guthix platelegs", - "id": "2672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune full face helmet in the colours of Guthix.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Guthix full helm", - "id": "2673", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Guthix full helm", - "id": "2674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune kiteshield in the colours of Guthix.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Guthix kiteshield", - "id": "2675", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Guthix kiteshield", - "id": "2676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "2772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "2795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "2798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2799", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "2800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "2830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to unlock a treasure chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to a chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "2840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "2842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "2844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "2846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "2850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "2852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "2854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "2858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bones of a recently slain wolf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wolf bones", - "id": "2859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wolf bones", - "id": "2860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can make an ogre arrow with these.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Wolfbone arrowtips", - "id": "2861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These logs are longer than normal.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Achey tree logs", - "id": "2862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Achey tree logs", - "id": "2863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden arrow shaft.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre arrow shaft", - "id": "2864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden arrow shaft with four flights attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flighted ogre arrow", - "id": "2865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large ogre arrow with a bone tip.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Ogre arrow", - "id": "2866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre bellows", - "id": "2871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows, it has three loads of swamp gas in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre bellows (3)", - "id": "2872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows, it has two loads of swamp gas in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre bellows (2)", - "id": "2873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows, it has one load of swamp gas in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre bellows (1)", - "id": "2874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An inflated toad.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bloated toad", - "id": "2875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Raw chompy", - "id": "2876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Raw chompy", - "id": "2877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It might look delicious to an ogre.", - "values": [ - { - "lowAlch": "130", - "highAlch": "0", - "shopValue": "130" - } - ], - "name": "Cooked chompy", - "id": "2878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "130", - "highAlch": "0", - "shopValue": "130" - } - ], - "name": "Cooked chompy", - "id": "2879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's really burnt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruined chompy", - "id": "2880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruined chompy", - "id": "2881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It has been deliciously seasoned to taste wonderful for ogres.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Seasoned chompy", - "id": "2882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "More powerful than a normal bow, useful against large game birds.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Ogre bow", - "id": "2883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "2885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very thickly bound book.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Battered book", - "id": "2886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old battered key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Battered key", - "id": "2887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This is an empty stone bowl.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A stone bowl", - "id": "2888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This is a stone bowl full of lava.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A stone bowl", - "id": "2889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic shield.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Elemental shield", - "id": "2890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Elemental shield", - "id": "2891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Elemental ore", - "id": "2892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of refined elemental ore.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Elemental metal", - "id": "2893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very stylish!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2894", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some fine werewolf clothing.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2896", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by werewolves for werewolves.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2902", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very stylish!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2904", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some fine werewolf clothing.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2906", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by werewolves for werewolves.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2912", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very stylish!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2914", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some fine werewolf clothing.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2916", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by werewolves for werewolves.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2922", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very stylish!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2924", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some fine werewolf clothing.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2926", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by werewolves for werewolves.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2932", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very stylish!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2934", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Boots", - "id": "2935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some fine werewolf clothing.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2936", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item top.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe top", - "id": "2937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made by werewolves for werewolves.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item bottoms.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Robe bottoms", - "id": "2939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Hat", - "id": "2941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2942", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "2943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica key made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden key", - "id": "2944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key made of solid Iron.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iron key", - "id": "2945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica tinderbox made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden tinderbox", - "id": "2946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica candle made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden candle", - "id": "2947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica pot made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden pot", - "id": "2948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica hammer made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden hammer", - "id": "2949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica feather made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden feather", - "id": "2950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A replica needle made of solid gold.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Golden needle", - "id": "2951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver dagger that can prevent werewolves changing form.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Wolfbane", - "id": "2952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of murky water.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of water", - "id": "2953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of blessed water.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Bucket of water", - "id": "2954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A foul smelling brew.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Moonlight mead", - "id": "2955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Moonlight mead", - "id": "2956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty druid pouch.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Druid pouch", - "id": "2957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A druid pouch.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Druid pouch", - "id": "2958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Erhhh! It stinks.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten food", - "id": "2959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten food", - "id": "2960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a silver sickle.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Silver sickle", - "id": "2961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 1, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Silver sickle", - "id": "2962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a blessed silver sickle.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Silver sickle(b)", - "id": "2963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 1, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for washing your face, amongst other things.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Washing bowl", - "id": "2964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Washing bowl", - "id": "2965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small mirror, probably used for grooming.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mirror", - "id": "2966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This must be Filliman Tarlocks personal journal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Journal", - "id": "2967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A druidic spell given to you freely by the spirit of Filliman Tarlock.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Druidic spell", - "id": "2968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A used druidic spell given to you freely by the spirit of Filliman Tarlock.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A used spell", - "id": "2969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mushroom from the swamps of Mort Myre.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mort myre fungi", - "id": "2970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mort myre fungi", - "id": "2971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cutting from a budding branch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mort myre stem", - "id": "2972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mort myre stem", - "id": "2973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pear picked from a dying bush in Mort Myre.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mort myre pear", - "id": "2974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mort myre pear", - "id": "2975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used to make sickles.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Sickle mould", - "id": "2976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Sickle mould", - "id": "2977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A symbol of your chompy bird hunting prowess.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chompy bird hat", - "id": "2995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can exchange these for further experience or items.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility arena ticket", - "id": "2996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You should see the shark...", - "values": [ - { - "lowAlch": "89", - "highAlch": "0", - "shopValue": "89" - } - ], - "name": "Pirate's hook", - "id": "2997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Clean toadflax", - "id": "2998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Clean toadflax", - "id": "2999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fresh herb.", - "values": [ - { - "lowAlch": "59", - "highAlch": "0", - "shopValue": "59" - } - ], - "name": "Clean snapdragon", - "id": "3000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "59", - "highAlch": "0", - "shopValue": "59" - } - ], - "name": "Clean snapdragon", - "id": "3001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Toadflax potion.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Toadflax potion(unf)", - "id": "3002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Toadflax potion(unf)", - "id": "3003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Snapdragon potion.", - "values": [ - { - "lowAlch": "59", - "highAlch": "0", - "shopValue": "59" - } - ], - "name": "Snapdragon potion(unf)", - "id": "3004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "59", - "highAlch": "0", - "shopValue": "59" - } - ], - "name": "Snapdragon potion(unf)", - "id": "3005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A firework potion, this'll look pretty!", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Firework", - "id": "3006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Firework", - "id": "3007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An energy potion.", - "values": [ - { - "lowAlch": "146", - "highAlch": "0", - "shopValue": "146" - } - ], - "name": "Energy potion(4)", - "id": "3008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "146", - "highAlch": "0", - "shopValue": "146" - } - ], - "name": "Energy potion(4)", - "id": "3009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An energy potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Energy potion(3)", - "id": "3010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Energy potion(3)", - "id": "3011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An energy potion.", - "values": [ - { - "lowAlch": "72", - "highAlch": "0", - "shopValue": "72" - } - ], - "name": "Energy potion(2)", - "id": "3012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "72", - "highAlch": "0", - "shopValue": "72" - } - ], - "name": "Energy potion(2)", - "id": "3013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An energy potion.", - "values": [ - { - "lowAlch": "36", - "highAlch": "0", - "shopValue": "36" - } - ], - "name": "Energy potion(1)", - "id": "3014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "36", - "highAlch": "0", - "shopValue": "36" - } - ], - "name": "Energy potion(1)", - "id": "3015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super energy potion.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Super energy(4)", - "id": "3016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Super energy(4)", - "id": "3017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super energy potion.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Super energy(3)", - "id": "3018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Super energy(3)", - "id": "3019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super energy potion.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Super energy(2)", - "id": "3020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Super energy(2)", - "id": "3021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super energy potion.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Super energy(1)", - "id": "3022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Super energy(1)", - "id": "3023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super restore potion.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Super restore(4)", - "id": "3024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Super restore(4)", - "id": "3025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super restore potion.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Super restore(3)", - "id": "3026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Super restore(3)", - "id": "3027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super restore potion.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Super restore(2)", - "id": "3028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Super restore(2)", - "id": "3029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super restore potion.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Super restore(1)", - "id": "3030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Super restore(1)", - "id": "3031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An agility potion.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Agility potion(4)", - "id": "3032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Agility potion(4)", - "id": "3033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An agility potion.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Agility potion(3)", - "id": "3034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Agility potion(3)", - "id": "3035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An agility potion.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Agility potion(2)", - "id": "3036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Agility potion(2)", - "id": "3037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An agility potion.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Agility potion(1)", - "id": "3038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Agility potion(1)", - "id": "3039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic potion.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Magic potion(4)", - "id": "3040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Magic potion(4)", - "id": "3041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic potion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Magic potion(3)", - "id": "3042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Magic potion(3)", - "id": "3043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic potion.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Magic potion(2)", - "id": "3044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Magic potion(2)", - "id": "3045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic potion.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Magic potion(1)", - "id": "3046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Magic potion(1)", - "id": "3047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "89", - "highAlch": "0", - "shopValue": "89" - } - ], - "name": "Pirate's hook", - "id": "3048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy toadflax", - "id": "3049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy toadflax", - "id": "3050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to clean this herb before I can use it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy snapdragon", - "id": "3051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grimy snapdragon", - "id": "3052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "17000", - "highAlch": "7", - "shopValue": "17000" - } - ], - "name": "Lava battlestaff", - "id": "3053", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 28, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "7", - "shopValue": "45000" - } - ], - "name": "Mystic lava staff", - "id": "3054", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 28, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17000", - "highAlch": "0", - "shopValue": "17000" - } - ], - "name": "Lava battlestaff", - "id": "3055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Mystic lava staff", - "id": "3056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mime would wear this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mime mask", - "id": "3057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mime would wear this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mime top", - "id": "3058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mime would wear these.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mime legs", - "id": "3059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mime would wear these.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mime gloves", - "id": "3060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mime would wear these.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mime boots", - "id": "3061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems to be humming...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange box", - "id": "3062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly throwing dart with a black tip.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black dart", - "id": "3093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a black tip.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black dart(p)", - "id": "3094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "15", - "highAlch": "3", - "shopValue": "15" - } - ], - "name": "Bronze claws", - "id": "3095", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 4, - "strengthBonus": 5, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 3, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "50", - "highAlch": "4", - "shopValue": "50" - } - ], - "name": "Iron claws", - "id": "3096", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 6, - "strengthBonus": 7, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "175", - "highAlch": "8", - "shopValue": "175" - } - ], - "name": "Steel claws", - "id": "3097", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 11, - "strengthBonus": 12, - "defenceSlash": 6, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 3, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "360", - "highAlch": "10", - "shopValue": "360" - } - ], - "name": "Black claws", - "id": "3098", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 14, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 4, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "475", - "highAlch": "11", - "shopValue": "475" - } - ], - "name": "Mithril claws", - "id": "3099", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 16, - "strengthBonus": 17, - "defenceSlash": 8, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 11, - "defenceStab": 4, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "18", - "shopValue": "1200" - } - ], - "name": "Adamant claws", - "id": "3100", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 23, - "strengthBonus": 24, - "defenceSlash": 12, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 18, - "defenceStab": 6, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The combination to Burthorpe Castle's equipment room.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combination", - "id": "3102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The guard wrote the IOU on the back of some paper.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iou", - "id": "3103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This map shows the secret way up to Death Plateau.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Secret way map", - "id": "3104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Boots made for climbing.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Climbing boots", - "id": "3105", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 2, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Climbing boots", - "id": "3106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Climbing boots with spikes.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Spiked boots", - "id": "3107", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 2, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Spiked boots", - "id": "3108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Place on the stone mechanism in the right order to open the door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone ball", - "id": "3109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Place on the stone mechanism in the right order to open the door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone ball", - "id": "3110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Place on the stone mechanism in the right order to open the door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone ball", - "id": "3111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Place on the stone mechanism in the right order to open the door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone ball", - "id": "3112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Place on the stone mechanism in the right order to open the door.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone ball", - "id": "3113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Entrance certificate to the Imperial Guard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Certificate", - "id": "3114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Bronze claws", - "id": "3115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Iron claws", - "id": "3116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Steel claws", - "id": "3117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Black claws", - "id": "3118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "475", - "highAlch": "0", - "shopValue": "475" - } - ], - "name": "Mithril claws", - "id": "3119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Adamant claws", - "id": "3120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12000", - "highAlch": "0", - "shopValue": "12000" - } - ], - "name": "Rune claws", - "id": "3121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A solid stone shield.", - "values": [ - { - "lowAlch": "56000", - "highAlch": "0", - "shopValue": "56000" - } - ], - "name": "Granite shield", - "id": "3122", - "bonuses": [ - { - "defenceCrush": 38, - "attackRange": -8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -12, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 65, - "attackStab": 0, - "defenceStab": 40, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Large glistening bones which glow with a pale yellow aura.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shaikahan bones", - "id": "3123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shaikahan bones", - "id": "3124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fairly big bones which smell distinctly of Jogre.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jogre bones", - "id": "3125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jogre bones", - "id": "3126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These blackened Jogre bones have been somehow burnt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt jogre bones", - "id": "3127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Burnt Jogre bones smothered with raw Karambwanji Paste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pasty jogre bones", - "id": "3128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Burnt Jogre bones smothered with cooked Karambwanji paste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pasty jogre bones", - "id": "3129", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Burnt Jogre bones marinated in a lovely Karambwanji sauce. Perfect.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marinated j' bones", - "id": "3130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Jogre bones smothered with raw Karambwanji paste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pasty jogre bones", - "id": "3131", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Jogre bones smothered with cooked Karambwanji paste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pasty jogre bones", - "id": "3132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Jogre Bones marinated in Karambwanji sauce. Not quite right.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marinated j' bones", - "id": "3133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "56000", - "highAlch": "0", - "shopValue": "56000" - } - ], - "name": "Granite shield", - "id": "3134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to the troll prison.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prison key", - "id": "3135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to Godric's cell in the troll prison.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cell key 1", - "id": "3136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to Mad Eadgar's cell in the troll prison.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cell key 2", - "id": "3137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "How am I supposed to eat that?!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potato cactus", - "id": "3138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potato cactus", - "id": "3139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "150000" - } - ], - "name": "Dragon chainbody", - "id": "3140", - "bonuses": [ - { - "defenceCrush": 98, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 93, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "150000" - } - ], - "name": "Dragon chainbody", - "id": "3141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A raw green octopus.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Raw karambwan", - "id": "3142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Raw karambwan", - "id": "3143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Cooked octopus. It looks very nutritious.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Cooked karambwan", - "id": "3144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Cooked karambwan", - "id": "3145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Cooked octopus. It looks a little suspect.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Cooked karambwan", - "id": "3146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Cooked karambwan", - "id": "3147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Burnt octopus.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt karambwan", - "id": "3148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt karambwan", - "id": "3149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Small brightly coloured tropical fish.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Raw karambwanji", - "id": "3150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Small brightly coloured tropical fish. Looks tasty.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Karambwanji", - "id": "3151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Freshly made octopus paste.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Karambwan paste", - "id": "3152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Freshly made octopus paste. This smells quite nauseating.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Karambwan paste", - "id": "3153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Freshly made octopus paste.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Karambwan paste", - "id": "3154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This paste smells of raw fish.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Karambwanji paste", - "id": "3155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This paste smells of cooked fish.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Karambwanji paste", - "id": "3156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wide bodied and thin necked vessel, encrusted with sea salt.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Karambwan vessel", - "id": "3157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Karambwan vessel", - "id": "3158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This Karambwan Vessel is loaded with Karambwanji.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Karambwan vessel", - "id": "3159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Karambwan vessel", - "id": "3160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of instructions explaining how to construct a Karambwan vessel.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Crafting manual", - "id": "3161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You swear you had more than three slices before.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Sliced banana", - "id": "3162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Sliced banana", - "id": "3163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Karamjan rum has slices of banana floating in it.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Karamjan rum", - "id": "3164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A banana has been stuffed into the neck of this bottle.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Karamjan rum", - "id": "3165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's the body of a dead monkey.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey corpse", - "id": "3166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's the skin of a (hopefully) dead monkey.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Monkey skin", - "id": "3167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A 'Seaweed in Monkey Skin' sandwich. Perfect for statue repair.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Seaweed sandwich", - "id": "3168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A body of a dead monkey, tastefully stuffed with seaweed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stuffed monkey", - "id": "3169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned bronze tipped spear.", - "values": [ - { - "lowAlch": "26", - "highAlch": "5", - "shopValue": "26" - } - ], - "name": "Bronze spear(kp)", - "id": "3170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": 0, - "attackStab": 5, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned iron tipped spear.", - "values": [ - { - "lowAlch": "91", - "highAlch": "8", - "shopValue": "91" - } - ], - "name": "Iron spear(kp)", - "id": "3171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 10, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 8, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned steel tipped spear.", - "values": [ - { - "lowAlch": "325", - "highAlch": "12", - "shopValue": "325" - } - ], - "name": "Steel spear(kp)", - "id": "3172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 12, - "strengthBonus": 12, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 12, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned mithril tipped spear.", - "values": [ - { - "lowAlch": "845", - "highAlch": "17", - "shopValue": "845" - } - ], - "name": "Mithril spear(kp)", - "id": "3173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 17, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 18, - "attackCrush": 17, - "defenceRange": 0, - "attackStab": 17, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned adamantite tipped spear.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "24", - "shopValue": "2080" - } - ], - "name": "Adamant spear(kp)", - "id": "3174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 24, - "strengthBonus": 28, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 24, - "defenceRange": 0, - "attackStab": 24, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned rune tipped spear.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "36", - "shopValue": "20800" - } - ], - "name": "Rune spear(kp)", - "id": "3175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 36, - "strengthBonus": 42, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 36, - "defenceRange": 0, - "attackStab": 36, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned dragon tipped spear.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "55", - "shopValue": "62400" - } - ], - "name": "Dragon spear(kp)", - "id": "3176", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 55, - "strengthBonus": 60, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 55, - "defenceRange": 5, - "attackStab": 55, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Mmm this looks tasty.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Banana left", - "id": "3177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Banana left", - "id": "3178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are smallish monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are medium sized monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are quite large monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are quite large monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are small monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are smallish monkey bones. They smell extremely nauseating.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are smallish monkey bones. They smell extremely nauseating.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey bones", - "id": "3186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They seem to shake slightly... It might be a good idea to bury them.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones", - "id": "3187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spirit soaked piece of silk which can be used to remove poison.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Cleaning cloth", - "id": "3188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Cleaning cloth", - "id": "3189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze halberd.", - "values": [ - { - "lowAlch": "80", - "highAlch": "7", - "shopValue": "80" - } - ], - "name": "Bronze halberd", - "id": "3190", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 8, - "strengthBonus": 8, - "defenceSlash": 1, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Bronze halberd", - "id": "3191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron halberd.", - "values": [ - { - "lowAlch": "280", - "highAlch": "9", - "shopValue": "280" - } - ], - "name": "Iron halberd", - "id": "3192", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 12, - "strengthBonus": 12, - "defenceSlash": 1, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Iron halberd", - "id": "3193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel halberd.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "14", - "shopValue": "1000" - } - ], - "name": "Steel halberd", - "id": "3194", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 19, - "strengthBonus": 20, - "defenceSlash": 1, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 14, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Steel halberd", - "id": "3195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black halberd.", - "values": [ - { - "lowAlch": "1920", - "highAlch": "19", - "shopValue": "1920" - } - ], - "name": "Black halberd", - "id": "3196", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 25, - "strengthBonus": 24, - "defenceSlash": 2, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 19, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1920", - "highAlch": "0", - "shopValue": "1920" - } - ], - "name": "Black halberd", - "id": "3197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril halberd.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "22", - "shopValue": "2600" - } - ], - "name": "Mithril halberd", - "id": "3198", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 0, - "attackSlash": 28, - "strengthBonus": 29, - "defenceSlash": 2, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 22, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Mithril halberd", - "id": "3199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamant halberd.", - "values": [ - { - "lowAlch": "6400", - "highAlch": "28", - "shopValue": "6400" - } - ], - "name": "Adamant halberd", - "id": "3200", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 0, - "attackSlash": 41, - "strengthBonus": 43, - "defenceSlash": 3, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 28, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6400", - "highAlch": "0", - "shopValue": "6400" - } - ], - "name": "Adamant halberd", - "id": "3201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune halberd.", - "values": [ - { - "lowAlch": "64000", - "highAlch": "48", - "shopValue": "64000" - } - ], - "name": "Rune halberd", - "id": "3202", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 67, - "strengthBonus": 68, - "defenceSlash": 4, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 48, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "64000", - "highAlch": "0", - "shopValue": "64000" - } - ], - "name": "Rune halberd", - "id": "3203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dragon halberd.", - "values": [ - { - "lowAlch": "0", - "highAlch": "70", - "shopValue": "195000" - } - ], - "name": "Dragon halberd", - "id": "3204", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 95, - "strengthBonus": 89, - "defenceSlash": 4, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 70, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "195000" - } - ], - "name": "Dragon halberd", - "id": "3205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A summons from King Lathas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "King's message", - "id": "3206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A letter for King Lathas from Lord Iorwerth.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iorwerths message", - "id": "3207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lord Iorwerth's crystal pendant.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Crystal pendant", - "id": "3208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of sulphur formation.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sulphur", - "id": "3209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sulphur", - "id": "3210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some limestone.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Limestone", - "id": "3211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Limestone", - "id": "3212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some quicklime.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Quicklime", - "id": "3213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of ground quicklime.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Pot of quicklime", - "id": "3214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of ground sulphur.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Ground sulphur", - "id": "3215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty barrel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel", - "id": "3216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel", - "id": "3217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of fire oil.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel bomb", - "id": "3218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fused barrel full of fire oil.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel bomb", - "id": "3219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of coal-tar.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel of coal-tar", - "id": "3220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of naphtha.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barrel of naphtha", - "id": "3221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of naphtha and sulphur.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Naphtha mix", - "id": "3222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of naphtha and quicklime.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Naphtha mix", - "id": "3223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bolt of cloth.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cloth", - "id": "3224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cloth", - "id": "3225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Might taste better cooked.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Raw rabbit", - "id": "3226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Raw rabbit", - "id": "3227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm this looks tasty.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked rabbit", - "id": "3228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked rabbit", - "id": "3229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book by Mel Achy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big book of bangs", - "id": "3230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An alchemy symbol", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol1", - "id": "3231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol1", - "id": "3232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An alchemy symbol", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol2", - "id": "3233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol2", - "id": "3234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An alchemy symbol", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol3", - "id": "3235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol3", - "id": "3236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An alchemy symbol", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol4", - "id": "3237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symbol4", - "id": "3238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bark from a hollow tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bark", - "id": "3239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bark", - "id": "3240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of RuneScape's many citizens.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Man", - "id": "3241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "He grows the crops.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farmer", - "id": "3243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not very fashion conscious.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Warrior woman", - "id": "3245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rogueish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rogue", - "id": "3247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "He tries to keep order.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guard", - "id": "3249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A member of Ardougne's militia.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Knight of ardougne", - "id": "3251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Watches stuff. But who watches him?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watchman", - "id": "3253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A holy warrior!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Paladin", - "id": "3255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like a gnome to me.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome", - "id": "3257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Heroic!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hero", - "id": "3259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pale, tough looking herb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goutweed", - "id": "3261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's tough and spiky.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Troll thistle", - "id": "3262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It'll be easier to grind now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dried thistle", - "id": "3263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's ready for mixing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground thistle", - "id": "3264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's part of Eadgar's plan.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Troll potion", - "id": "3265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's rather drunk.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Drunk parrot", - "id": "3266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's dirty and smelly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dirty robe", - "id": "3267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's good enough to fool a troll.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fake man", - "id": "3268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to the Troll storeroom.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Storeroom key", - "id": "3269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pineapple chunks dipped in strong liquor.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Alco-chunks", - "id": "3270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "That used to be a vampire!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vampire dust", - "id": "3325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Vampire dust", - "id": "3326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A marshy coloured snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Myre snelm", - "id": "3327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Myre snelm", - "id": "3328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red and black Snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Blood'n'tar snelm", - "id": "3329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Blood'n'tar snelm", - "id": "3330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A muddy yellow snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ochre snelm", - "id": "3331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ochre snelm", - "id": "3332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A moody blue snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Bruise blue snelm", - "id": "3333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Bruise blue snelm", - "id": "3334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An orange and bark coloured snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Broken bark snelm", - "id": "3335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Broken bark snelm", - "id": "3336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A swamp coloured pointed snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Myre snelm", - "id": "3337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Myre snelm", - "id": "3338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red and black pointed snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Blood'n'tar snelm", - "id": "3339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item'n'tar snelm.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Blood'n'tar snelm", - "id": "3340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A muddy yellow coloured pointed snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ochre snelm", - "id": "3341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ochre snelm", - "id": "3342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A moody blue pointed snail shell helmet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Bruise blue snelm", - "id": "3343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Bruise blue snelm", - "id": "3344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large 'Myre' coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish myre shell", - "id": "3345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish myre shell", - "id": "3346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large red and black blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish red shell", - "id": "3347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish red shell", - "id": "3348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large muddy yellow coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish ochre shell", - "id": "3349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish ochre shell", - "id": "3350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large blue coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish blue shell", - "id": "3351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish blue shell", - "id": "3352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large bark coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish bark shell", - "id": "3353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish bark shell", - "id": "3354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large 'Myre' coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish myre shell", - "id": "3355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish myre shell", - "id": "3356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large red coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish red shell", - "id": "3357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish red shell", - "id": "3358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large ochre coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish ochre shell", - "id": "3359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish ochre shell", - "id": "3360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large blue coloured blamish snail shell, looks protective.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish blue shell", - "id": "3361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Blamish blue shell", - "id": "3362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The thin, slimy corpse of a deceased giant snail.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Thin snail", - "id": "3363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Thin snail", - "id": "3364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lean, slimy corpse of a deceased giant snail.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Lean snail", - "id": "3365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Lean snail", - "id": "3366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The fat, slimy corpse of a deceased giant snail.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Fat snail", - "id": "3367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Fat snail", - "id": "3368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A succulently slimy slice of sumptuous snail.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Thin snail meat", - "id": "3369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Thin snail meat", - "id": "3370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A succulently slimy slice of sumptuous snail.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lean snail meat", - "id": "3371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lean snail meat", - "id": "3372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A succulently slimy slice of sumptuous snail.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Fat snail meat", - "id": "3373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Fat snail meat", - "id": "3374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slightly super-saute'ed snail.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Burnt snail", - "id": "3375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Burnt snail", - "id": "3376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty sample bottle.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Sample bottle", - "id": "3377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Sample bottle", - "id": "3378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slime covered eel - yuck!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slimy eel", - "id": "3379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slimy eel", - "id": "3380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cooked slimy eel - not delicious, but pretty nutritious.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooked slimy eel", - "id": "3381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooked slimy eel", - "id": "3382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like it's seen one too many fires.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt eel", - "id": "3383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt eel", - "id": "3384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6000" - } - ], - "name": "Splitbark helm", - "id": "3385", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6000" - } - ], - "name": "Splitbark helm", - "id": "3386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides good protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "27000" - } - ], - "name": "Splitbark body", - "id": "3387", - "bonuses": [ - { - "defenceCrush": 42, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 26, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 36, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "27000" - } - ], - "name": "Splitbark body", - "id": "3388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These should protect my legs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "24000" - } - ], - "name": "Splitbark legs", - "id": "3389", - "bonuses": [ - { - "defenceCrush": 25, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": 7, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "24000" - } - ], - "name": "Splitbark legs", - "id": "3390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These should keep my hands safe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Splitbark gauntlets", - "id": "3391", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 3, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Splitbark gauntlets", - "id": "3392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wooden foot protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Splitbark greaves", - "id": "3393", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 3, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Splitbark greaves", - "id": "3394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diary belonging to Herbi Flax.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diary", - "id": "3395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of a deadly shade.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Loar remains", - "id": "3396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Loar remains", - "id": "3397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of a deadly shade.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Phrin remains", - "id": "3398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Phrin remains", - "id": "3399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of a deadly shade.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Riyl remains", - "id": "3400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Riyl remains", - "id": "3401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of a deadly shade.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asyn remains", - "id": "3402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asyn remains", - "id": "3403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The remains of a deadly shade.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fiyr remains", - "id": "3404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fiyr remains", - "id": "3405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this potion.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Ash potion(unf)", - "id": "3406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Ash potion(unf)", - "id": "3407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Serum 207 (4)", - "id": "3408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Serum 207 (4)", - "id": "3409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Serum 207 (3)", - "id": "3410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Serum 207 (3)", - "id": "3411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Serum 207 (2)", - "id": "3412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Serum 207 (2)", - "id": "3413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Serum 207 (1)", - "id": "3414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Serum 207 (1)", - "id": "3415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Serum 207(p) (4)", - "id": "3416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Serum 207(p) (3)", - "id": "3417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Serum 207(p) (2)", - "id": "3418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A serum 207 as described in Herbi Flax's diary.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Serum 207(p) (1)", - "id": "3419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A well carved limestone brick.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Limestone brick", - "id": "3420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Limestone brick", - "id": "3421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Olive oil.", - "values": [ - { - "lowAlch": "22", - "highAlch": "0", - "shopValue": "22" - } - ], - "name": "Olive oil(4)", - "id": "3422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "22", - "highAlch": "0", - "shopValue": "22" - } - ], - "name": "Olive oil(4)", - "id": "3423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Olive oil.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Olive oil(3)", - "id": "3424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Olive oil(3)", - "id": "3425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Olive oil.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Olive oil(2)", - "id": "3426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Olive oil(2)", - "id": "3427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Olive oil.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Olive oil(1)", - "id": "3428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Olive oil(1)", - "id": "3429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sacred oil.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Sacred oil(4)", - "id": "3430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Sacred oil(4)", - "id": "3431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sacred oil.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Sacred oil(3)", - "id": "3432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Sacred oil(3)", - "id": "3433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sacred oil.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Sacred oil(2)", - "id": "3434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Sacred oil(2)", - "id": "3435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sacred oil.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Sacred oil(1)", - "id": "3436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Sacred oil(1)", - "id": "3437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Pyre logs", - "id": "3438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Pyre logs", - "id": "3439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oak logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Oak pyre logs", - "id": "3440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Oak pyre logs", - "id": "3441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Willow logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Willow pyre logs", - "id": "3442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Willow pyre logs", - "id": "3443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Maple logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Maple pyre logs", - "id": "3444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Maple pyre logs", - "id": "3445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yew logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "320", - "highAlch": "0", - "shopValue": "320" - } - ], - "name": "Yew pyre logs", - "id": "3446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "320", - "highAlch": "0", - "shopValue": "320" - } - ], - "name": "Yew pyre logs", - "id": "3447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magic logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "640", - "highAlch": "0", - "shopValue": "640" - } - ], - "name": "Magic pyre logs", - "id": "3448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "640", - "highAlch": "0", - "shopValue": "640" - } - ], - "name": "Magic pyre logs", - "id": "3449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze key with a blood-red painted eyelet.", - "values": [ - { - "lowAlch": "81", - "highAlch": "0", - "shopValue": "81" - } - ], - "name": "Bronze key red", - "id": "3450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze key with a brown painted eyelet.", - "values": [ - { - "lowAlch": "82", - "highAlch": "0", - "shopValue": "82" - } - ], - "name": "Bronze key brown", - "id": "3451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze key with a crimson painted eyelet.", - "values": [ - { - "lowAlch": "83", - "highAlch": "0", - "shopValue": "83" - } - ], - "name": "Bronze key crimson", - "id": "3452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze key with a black painted eyelet.", - "values": [ - { - "lowAlch": "84", - "highAlch": "0", - "shopValue": "84" - } - ], - "name": "Bronze key black", - "id": "3453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze key with a purple painted eyelet.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Bronze key purple", - "id": "3454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel key with a blood-red painted eyelet.", - "values": [ - { - "lowAlch": "86", - "highAlch": "0", - "shopValue": "86" - } - ], - "name": "Steel key red", - "id": "3455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel key with a brown painted eyelet.", - "values": [ - { - "lowAlch": "87", - "highAlch": "0", - "shopValue": "87" - } - ], - "name": "Steel key brown", - "id": "3456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel key with a crimson painted eyelet.", - "values": [ - { - "lowAlch": "88", - "highAlch": "0", - "shopValue": "88" - } - ], - "name": "Steel key crimson", - "id": "3457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel key with a black painted eyelet.", - "values": [ - { - "lowAlch": "89", - "highAlch": "0", - "shopValue": "89" - } - ], - "name": "Steel key black", - "id": "3458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel key with a purple painted eyelet.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Steel key purple", - "id": "3459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black key with a blood-red painted eyelet.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Black key red", - "id": "3460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black key with a brown painted eyelet.", - "values": [ - { - "lowAlch": "92", - "highAlch": "0", - "shopValue": "92" - } - ], - "name": "Black key brown", - "id": "3461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black key with a crimson painted eyelet.", - "values": [ - { - "lowAlch": "93", - "highAlch": "0", - "shopValue": "93" - } - ], - "name": "Black key crimson", - "id": "3462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black key with a black painted eyelet.", - "values": [ - { - "lowAlch": "94", - "highAlch": "0", - "shopValue": "94" - } - ], - "name": "Black key black", - "id": "3463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black key with a purple painted eyelet.", - "values": [ - { - "lowAlch": "95", - "highAlch": "0", - "shopValue": "95" - } - ], - "name": "Black key purple", - "id": "3464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver key with a blood-red painted eyelet.", - "values": [ - { - "lowAlch": "96", - "highAlch": "0", - "shopValue": "96" - } - ], - "name": "Silver key red", - "id": "3465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver key with a brown painted eyelet.", - "values": [ - { - "lowAlch": "97", - "highAlch": "0", - "shopValue": "97" - } - ], - "name": "Silver key brown", - "id": "3466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver key with a crimson painted eyelet.", - "values": [ - { - "lowAlch": "98", - "highAlch": "0", - "shopValue": "98" - } - ], - "name": "Silver key crimson", - "id": "3467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver key with a black painted eyelet.", - "values": [ - { - "lowAlch": "99", - "highAlch": "0", - "shopValue": "99" - } - ], - "name": "Silver key black", - "id": "3468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver key with a purple painted eyelet.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Silver key purple", - "id": "3469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Amazingly untouched by time.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fine cloth", - "id": "3470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fine cloth", - "id": "3471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black plateskirt with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black plateskirt (t)", - "id": "3472", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Black plateskirt with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black plateskirt (g)", - "id": "3473", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Adamant plateskirt with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam plateskirt (t)", - "id": "3474", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Adamant plateskirt with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam plateskirt (g)", - "id": "3475", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune plateskirt with gold trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune plateskirt (g)", - "id": "3476", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune plateskirt with trim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune plateskirt (t)", - "id": "3477", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune plateskirt in the colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Zamorak plateskirt", - "id": "3478", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune plateskirt in the colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Saradomin skirt", - "id": "3479", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune plateskirt in the colours of Guthix.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Guthix plateskirt", - "id": "3480", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune platebody with gold plate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Gilded platebody", - "id": "3481", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Gilded platebody", - "id": "3482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune platelegs with gold plate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Gilded platelegs", - "id": "3483", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Gilded platelegs", - "id": "3484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune plateskirt with gold plate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Gilded plateskirt", - "id": "3485", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Rune full helm with gold plate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Gilded full helm", - "id": "3486", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Gilded full helm", - "id": "3487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rune kiteshield with gold plate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Gilded kiteshield", - "id": "3488", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Gilded kiteshield", - "id": "3489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "3565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "3567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "3569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "3571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "3576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to solve this!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Puzzle box", - "id": "3578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "3603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "3606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "3608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "3618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece of the puzzle", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding piece", - "id": "3666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Do not use except in case of emergency.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lifeboat", - "id": "3667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black plateskirt (t)", - "id": "3668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Black plateskirt (g)", - "id": "3669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam plateskirt (t)", - "id": "3670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Adam plateskirt (g)", - "id": "3671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune plateskirt (g)", - "id": "3672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rune plateskirt (t)", - "id": "3673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Zamorak plateskirt", - "id": "3674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Saradomin skirt", - "id": "3675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Guthix plateskirt", - "id": "3676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Gilded plateskirt", - "id": "3677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An exquisitely shaped tool specially designed for fixing temples.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Flamtaer hammer", - "id": "3678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Flamtaer hammer", - "id": "3679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe", - "id": "3680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe", - "id": "3681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe", - "id": "3682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe", - "id": "3683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe", - "id": "3684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe.", - "id": "3685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of Rellekka's many citizens.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fremennik", - "id": "3686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's almost a musical instrument.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unstrung lyre", - "id": "3688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a musical instrument I don't know how to play.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lyre", - "id": "3689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A musical instrument that I can magically play.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted lyre", - "id": "3690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This will teleport me to Rellekka when I play it.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Enchanted lyre(1)", - "id": "3691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this to make a lyre.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Branch", - "id": "3692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can spin this into golden wool...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden fleece", - "id": "3693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this to make a lyre.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden wool", - "id": "3694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lowest maintenance pet you will ever have.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pet rock", - "id": "3695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Talisman to bind the Draugen.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Hunters' talisman", - "id": "3696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Talisman to bind the Draugen.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Hunters' talisman", - "id": "3697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some flowers from a distant land.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Exotic flower", - "id": "3698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A hauntingly beautiful love ballad.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fremennik ballad", - "id": "3699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of sturdy custom made boots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sturdy boots", - "id": "3700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A map showing very active hunting spots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hunters map", - "id": "3701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely crafted string for a custom bow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Custom bow string", - "id": "3702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An extremely rare, non edible fish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unusual fish", - "id": "3703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Map showing the best fishing spots out at sea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sea fishing map", - "id": "3704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An estimate of expected local weather patterns.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weather forecast", - "id": "3705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Shows the wearer is worthy of the Champions table.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champions token", - "id": "3706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Probably the greatest cocktail in the world.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Legendary cocktail", - "id": "3707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A signed statement promising a reduction on sales tax.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fiscal statement", - "id": "3708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A legally binding contract promising not to enter the longhall.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Promissory note", - "id": "3709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This employment contract is for a warrior to act as a bodyguard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Warriors' contract", - "id": "3710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lot of beer in a barrel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Keg of beer", - "id": "3711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Suspiciously close to beer, but without the side effects.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Low alcohol keg", - "id": "3712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's some kind of weird little parcel thing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange object", - "id": "3713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's some kind of weird little parcel thing. On fire.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lit strange object", - "id": "3714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red coloured disk, apparently made of wood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red disk", - "id": "3715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red coloured disk, apparently made of wood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red disk", - "id": "3716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very attractive magnet.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Magnet", - "id": "3718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some blue thread.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue thread", - "id": "3719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small pick for cracking small objects.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small pick", - "id": "3720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Might be fun to play with in the bath.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Toy ship", - "id": "3721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket is completely full. It has a 5 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Full bucket", - "id": "3722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket is eighty percent full. It has a 5 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "4/5ths full bucket", - "id": "3723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket is sixty percent full. It has a 5 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "3/5ths full bucket", - "id": "3724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket is forty percent full. It has a 5 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "2/5ths full bucket", - "id": "3725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket is twenty percent full. It has a 5 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "1/5ths full bucket", - "id": "3726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket is completely empty. It has a 5 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty bucket", - "id": "3727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bucket of water is frozen solid.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frozen bucket", - "id": "3728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This jug is completely full. It has a 3 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Full jug", - "id": "3729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This jug is two thirds full. It has a 3 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "2/3rds full jug", - "id": "3730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This jug is one thirds full. It has a 3 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "1/3rds full jug", - "id": "3731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This jug is completely empty. It has a 3 painted on its side.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty jug", - "id": "3732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This jug of water is frozen solid.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frozen jug", - "id": "3733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unusually shaped vase. You can see something glinting inside.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vase", - "id": "3734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unusually shaped vase full of water. You can see something glinting inside.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vase of water", - "id": "3735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unusually shaped vase full of ice. You can see something glinting inside.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frozen vase", - "id": "3736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks like a lid to some kind of container...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vase lid", - "id": "3737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lid is screwed on tightly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sealed vase", - "id": "3738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lid is screwed on tightly. It is very cold.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sealed vase", - "id": "3739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lid is screwed on tightly. It is full of water.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sealed vase", - "id": "3740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key encased in ice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frozen key", - "id": "3741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The colouring on it seems to be some kind of sticky goop...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red herring", - "id": "3742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red coloured disk, apparently made of wood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red disk", - "id": "3743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A simple looking disk made of wood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden disk", - "id": "3744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to leave the Seer's house.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Seer's key", - "id": "3745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yup, it's sticky, it's red and it's goop.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sticky red goop", - "id": "3746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sticky red goop", - "id": "3747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sturdy helm worn only by Fremennik clan members.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Fremennik helm", - "id": "3748", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 21, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 19, - "attackStab": 0, - "defenceStab": 19, - "defenceMagic": -1 - } - ] - }, - { - "examine": "This helmet is worn by archers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-5", - "shopValue": "36000" - } - ], - "name": "Archer helm", - "id": "3749", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": 6, - "attackSlash": -5, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": -5, - "defenceRange": 6, - "attackStab": -5, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "36000" - } - ], - "name": "Archer helm", - "id": "3750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This helmet is worn by berserkers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "46800" - } - ], - "name": "Berserker helm", - "id": "3751", - "bonuses": [ - { - "defenceCrush": 33, - "attackRange": -5, - "attackSlash": 0, - "strengthBonus": 3, - "defenceSlash": 29, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 31, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "46800" - } - ], - "name": "Berserker helm", - "id": "3752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This helmet is worn by warriors.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "46800" - } - ], - "name": "Warrior helm", - "id": "3753", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -5, - "attackSlash": 5, - "strengthBonus": 0, - "defenceSlash": 33, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 31, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "46800" - } - ], - "name": "Warrior helm", - "id": "3754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This helmet is worn by farseers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-5", - "shopValue": "46800" - } - ], - "name": "Farseer helm", - "id": "3755", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": -5, - "attackSlash": -5, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": -5, - "defenceRange": 0, - "attackStab": -5, - "defenceStab": 8, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "46800" - } - ], - "name": "Farseer helm", - "id": "3756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sword used only by Fremennik warriors.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "6", - "shopValue": "5000" - } - ], - "name": "Fremennik blade", - "id": "3757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 29, - "strengthBonus": 28, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 6, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield worn by Fremennik warriors.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Fremennik shield", - "id": "3758", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 27, - "defenceMagic": -1 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3759", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3761", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3763", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3765", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest in Fremennik fashion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3767", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest in Fremennik fashion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3769", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest in Fremennik fashion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3771", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest in Fremennik fashion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3773", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest in Fremennik fashion.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3775", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik shirt", - "id": "3776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3777", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3779", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3781", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3783", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3785", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3787", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3789", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fremennik cloak", - "id": "3790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very stylish!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik boots", - "id": "3791", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik boots", - "id": "3792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik robe", - "id": "3793", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik robe", - "id": "3794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The latest fashion in Rellekka.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik skirt", - "id": "3795", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik skirt", - "id": "3796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik hat", - "id": "3797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Fremennik hat", - "id": "3798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "3799", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "3800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lot of beer in a barrel.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Keg of beer", - "id": "3801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Keg of beer", - "id": "3802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Frothy and alcoholic.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Beer", - "id": "3803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Beer", - "id": "3804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A big cup for a big thirst.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Tankard", - "id": "3805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Tankard", - "id": "3806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Saradomin page 1", - "id": "3827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Saradomin page 2", - "id": "3828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Saradomin page 3", - "id": "3829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Saradomin page 4", - "id": "3830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Zamorak page 1", - "id": "3831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Zamorak page 2", - "id": "3832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Zamorak page 3", - "id": "3833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Zamorak page 4", - "id": "3834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix page 1", - "id": "3835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix page 2", - "id": "3836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix page 3", - "id": "3837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This seems to have been torn from a book...", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix page 4", - "id": "3838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An incomplete book of Saradomin.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Damaged book", - "id": "3839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The holy book of Saradomin.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Holy book", - "id": "3840", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 8, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 8, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 8 - } - ] - }, - { - "examine": "An incomplete book of Zamorak.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Damaged book", - "id": "3841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The unholy book of Zamorak.", - "values": [ - { - "lowAlch": "200", - "highAlch": "8", - "shopValue": "200" - } - ], - "name": "Unholy book", - "id": "3842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 8, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 8, - "prayerBonus": 5, - "attackCrush": 8, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An incomplete book of Guthix.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Damaged book", - "id": "3843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The holy book of Guthix.", - "values": [ - { - "lowAlch": "200", - "highAlch": "4", - "shopValue": "200" - } - ], - "name": "Book of balance", - "id": "3844", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 4, - "attackSlash": 4, - "strengthBonus": 0, - "defenceSlash": 4, - "attackMagic": 4, - "prayerBonus": 5, - "attackCrush": 4, - "defenceRange": 4, - "attackStab": 4, - "defenceStab": 4, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A daily journal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Journal", - "id": "3845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Someone's Diary.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diary", - "id": "3846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like some kind of manual.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Manual", - "id": "3847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key to the front door of the lighthouse.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lighthouse key", - "id": "3848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks old and rusty...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rusty casket", - "id": "3849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Unholy symbol", - "id": "3852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(8)", - "id": "3853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(8)", - "id": "3854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(7)", - "id": "3855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(7)", - "id": "3856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(6)", - "id": "3857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(6)", - "id": "3858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(5)", - "id": "3859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(5)", - "id": "3860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(4)", - "id": "3861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(4)", - "id": "3862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(3)", - "id": "3863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(3)", - "id": "3864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(2)", - "id": "3865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(2)", - "id": "3866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted necklace.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(1)", - "id": "3867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1050", - "highAlch": "0", - "shopValue": "1050" - } - ], - "name": "Games necklace(1)", - "id": "3868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "3892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A comfy stool.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Stool", - "id": "3893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's not very good.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Awful anthem", - "id": "3894", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Much better.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Good anthem", - "id": "3895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just needs the King's signature.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Treaty", - "id": "3896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For making a giant pen.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant nib", - "id": "3897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The King should be able to use this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant pen", - "id": "3898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not as good as a pet frog.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Iron sickle", - "id": "3899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Iron sickle", - "id": "3900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "''Managing Thine Kingdom for Noobes'' by A. Ghrim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghrim's book", - "id": "3901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3916", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3932", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sliding button of some kind.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sliding button", - "id": "3998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "3999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Slightly archaic, but effective.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iodine", - "id": "4000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sanctity in your pocket.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shrine", - "id": "4001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks like some kind of control panel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spare controls", - "id": "4002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spare controls", - "id": "4003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's the official Gnome Royal Seal, signed by King Narnode Shareen.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome royal seal", - "id": "4004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unreadable orders handwritten by King Narnode Shareen.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Narnode's orders", - "id": "4005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magical monkey talking dentures! What more can we say? Ook!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Monkey dentures", - "id": "4006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A gold bar invested with a talkative monkey spirit.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Enchanted bar", - "id": "4007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's ... the eye of a gnome! Now what on earth could one do with this?", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Eye of gnome", - "id": "4008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Eye of gnome", - "id": "4009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small sample of monkey magic.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Monkey magic", - "id": "4010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Monkey magic", - "id": "4011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are monkey nuts. Yummy.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Monkey nuts", - "id": "4012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Monkey nuts", - "id": "4013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a monkey bar. It looks highly nutritious.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Monkey bar", - "id": "4014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Monkey bar", - "id": "4015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bowl full of mushy banana.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Banana stew", - "id": "4016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Banana stew", - "id": "4017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For wrenching monkeys I'd guess.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Monkey wrench", - "id": "4018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Monkey wrench", - "id": "4019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an amulet mould shaped like a monkey head.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "M'amulet mould", - "id": "4020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an Amulet of Monkey Speak. It makes vague chattering noises.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "M'speak amulet", - "id": "4021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an unstrung Amulet of Monkey Speak. It makes vague chattering noises.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "M'speak amulet", - "id": "4022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a monkey head.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Monkey talisman", - "id": "4023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a small ninja monkey head.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Monkey greegree", - "id": "4024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a medium ninja monkey head.", - "values": [ - { - "lowAlch": "6000", - "highAlch": "0", - "shopValue": "6000" - } - ], - "name": "Monkey greegree", - "id": "4025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a gorilla head.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Monkey greegree", - "id": "4026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a bearded gorilla head.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Monkey greegree", - "id": "4027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a mysterious monkey head.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Monkey greegree", - "id": "4028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a small zombie monkey head.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Monkey greegree", - "id": "4029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a big zombie monkey head.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Monkey greegree", - "id": "4030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical talisman in the shape of a Karamjan monkey head.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Monkey greegree", - "id": "4031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fade.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dummy", - "id": "4032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a monkey in your backpack. As you look it pokes you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey", - "id": "4033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a very ancient skull from some kind of ape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey skull", - "id": "4034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's the official sigil of the 10th squad of the Royal Guard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "10th squad sigil", - "id": "4035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Saradomin Team Standard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Saradomin banner", - "id": "4037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Saradomin banner", - "id": "4038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Zamorak Team Standard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zamorak banner", - "id": "4039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zamorak banner", - "id": "4040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hooded cloak", - "id": "4041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hooded cloak", - "id": "4042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this with the catapult.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "4043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "4044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could use this to destroy things...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Explosive potion", - "id": "4045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Explosive potion", - "id": "4046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Should be long enough to scale castle walls.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Climbing rope", - "id": "4047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Climbing rope", - "id": "4048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A box of bandages for healing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandages", - "id": "4049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandages", - "id": "4050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this to repair things.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toolbox", - "id": "4051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toolbox", - "id": "4052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Use these to block enemy team movement.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barricade", - "id": "4053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Barricade", - "id": "4054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a manual for castlewars.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Castlewars manual", - "id": "4055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can exchange these for further items.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Castle wars ticket", - "id": "4067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very decorative sword.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Decorative sword", - "id": "4068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very decorative armour.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Decorative armour", - "id": "4069", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very decorative armour.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Decorative armour", - "id": "4070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very decorative helm.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Decorative helm", - "id": "4071", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very decorative shield.", - "values": [ - { - "lowAlch": "850", - "highAlch": "0", - "shopValue": "850" - } - ], - "name": "Decorative shield", - "id": "4072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not so useful for lighting a fire.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Damp tinderbox", - "id": "4073", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Damp tinderbox", - "id": "4074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bizarre fungus. It glows with a pale blue light.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glowing fungus", - "id": "4075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "She wasn't pleased to see what her son did.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nezikchened's mum", - "id": "4076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key I found in the lower levels of the Morytanian mines.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal-mine key", - "id": "4077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I stole this from a Saradominist I met South of Mort'ton.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zealot's key", - "id": "4078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A gift from Santa.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Yo-yo", - "id": "4079", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Increases the wearer's strength and accuracy by 15% when fighting the undead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Salve amulet", - "id": "4081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung crystal imbued with the power of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Salve shard", - "id": "4082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs waxing before I can use it.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Sled", - "id": "4083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A waxed sled.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Sled", - "id": "4084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this to wax my sled.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wax", - "id": "4085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are very rare flowers with a pungent odour.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Trollweiss", - "id": "4086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "162000" - } - ], - "name": "Dragon platelegs", - "id": "4087", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 66, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 65, - "attackStab": 0, - "defenceStab": 68, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "162000" - } - ], - "name": "Dragon platelegs", - "id": "4088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical hat.", - "values": [ - { - "lowAlch": "15000", - "highAlch": "0", - "shopValue": "15000" - } - ], - "name": "Mystic hat", - "id": "4089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15000", - "highAlch": "0", - "shopValue": "15000" - } - ], - "name": "Mystic hat", - "id": "4090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The upper half of a magical robe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Mystic robe top", - "id": "4091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 20, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Mystic robe top", - "id": "4092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lower half of a magical robe.", - "values": [ - { - "lowAlch": "48000", - "highAlch": "0", - "shopValue": "48000" - } - ], - "name": "Mystic robe bottom", - "id": "4093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48000", - "highAlch": "0", - "shopValue": "48000" - } - ], - "name": "Mystic robe bottom", - "id": "4094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magical gloves.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic gloves", - "id": "4095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic gloves", - "id": "4096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Magical boots.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic boots", - "id": "4097", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic boots", - "id": "4098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dark magical hat.", - "values": [ - { - "lowAlch": "15000", - "highAlch": "0", - "shopValue": "15000" - } - ], - "name": "Mystic hat", - "id": "4099", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15000", - "highAlch": "0", - "shopValue": "15000" - } - ], - "name": "Mystic hat", - "id": "4100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The upper half of a dark magical robe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Mystic robe top", - "id": "4101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 20, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Mystic robe top", - "id": "4102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lower half of a dark magical robe.", - "values": [ - { - "lowAlch": "48000", - "highAlch": "0", - "shopValue": "48000" - } - ], - "name": "Mystic robe bottom", - "id": "4103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48000", - "highAlch": "0", - "shopValue": "48000" - } - ], - "name": "Mystic robe bottom", - "id": "4104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dark magical gloves.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic gloves", - "id": "4105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic gloves", - "id": "4106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dark magical boots.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic boots", - "id": "4107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic boots", - "id": "4108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bright magical hat.", - "values": [ - { - "lowAlch": "15000", - "highAlch": "0", - "shopValue": "15000" - } - ], - "name": "Mystic hat", - "id": "4109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15000", - "highAlch": "0", - "shopValue": "15000" - } - ], - "name": "Mystic hat", - "id": "4110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The upper half of a bright magical robe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Mystic robe top", - "id": "4111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 20, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Mystic robe top", - "id": "4112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The lower half of a bright magical robe.", - "values": [ - { - "lowAlch": "48000", - "highAlch": "0", - "shopValue": "48000" - } - ], - "name": "Mystic robe bottom", - "id": "4113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48000", - "highAlch": "0", - "shopValue": "48000" - } - ], - "name": "Mystic robe bottom", - "id": "4114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bright magical gloves.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic gloves", - "id": "4115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic gloves", - "id": "4116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bright magical boots.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic boots", - "id": "4117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Mystic boots", - "id": "4118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Bronze boots", - "id": "4119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Bronze boots", - "id": "4120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "84", - "highAlch": "0", - "shopValue": "84" - } - ], - "name": "Iron boots", - "id": "4121", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "84", - "highAlch": "0", - "shopValue": "84" - } - ], - "name": "Iron boots", - "id": "4122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Steel boots", - "id": "4123", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 6, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Steel boots", - "id": "4124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "Black boots", - "id": "4125", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 8, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "Black boots", - "id": "4126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "780", - "highAlch": "0", - "shopValue": "780" - } - ], - "name": "Mithril boots", - "id": "4127", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "780", - "highAlch": "0", - "shopValue": "780" - } - ], - "name": "Mithril boots", - "id": "4128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Adamant boots", - "id": "4129", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 1, - "defenceSlash": 11, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Adamant boots", - "id": "4130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "12500", - "highAlch": "0", - "shopValue": "12500" - } - ], - "name": "Rune boots", - "id": "4131", - "bonuses": [ - { - "defenceCrush": 14, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 2, - "defenceSlash": 13, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12500", - "highAlch": "0", - "shopValue": "12500" - } - ], - "name": "Rune boots", - "id": "4132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crawling hand", - "id": "4133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cave crawler", - "id": "4134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banshee", - "id": "4135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rockslug", - "id": "4136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cockatrice", - "id": "4137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pyrefiend", - "id": "4138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basilisk", - "id": "4139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Infernal mage", - "id": "4140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bloodveld", - "id": "4141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jelly", - "id": "4142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Turoth", - "id": "4143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Aberrant specter", - "id": "4144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dust devil", - "id": "4145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kurask", - "id": "4146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gargoyle", - "id": "4147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nechryael", - "id": "4148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Abyssal demon", - "id": "4149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with a wider than normal tip.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broad arrows", - "id": "4150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A weapon from the abyss.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Abyssal whip", - "id": "4151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 82, - "strengthBonus": 82, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "72000" - } - ], - "name": "Abyssal whip", - "id": "4152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Simplicity is the best weapon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Granite maul", - "id": "4153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 79, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 81, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Granite maul", - "id": "4154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can contact the Slayer Masters with this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted gem", - "id": "4155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can just about see things in this shield's reflection.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Mirror shield", - "id": "4156", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Mirror shield", - "id": "4157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spear with a leaf-shaped point.", - "values": [ - { - "lowAlch": "31000", - "highAlch": "47", - "shopValue": "31000" - } - ], - "name": "Leaf-bladed spear", - "id": "4158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 42, - "strengthBonus": 50, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 36, - "defenceRange": 0, - "attackStab": 47, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "31000", - "highAlch": "0", - "shopValue": "31000" - } - ], - "name": "Leaf-bladed spear", - "id": "4159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with a wider than normal tip.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Broad arrows", - "id": "4160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bag of salt.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bag of salt", - "id": "4161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can even smash stone with this.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Rock hammer", - "id": "4162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Rock hammer", - "id": "4163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stops me breathing in too much dust.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Facemask", - "id": "4164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Facemask", - "id": "4165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my ears from loud noise.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Earmuffs", - "id": "4166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Earmuffs", - "id": "4167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Protects me from any bad smells.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Nose peg", - "id": "4168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Nose peg", - "id": "4169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old and magical staff.", - "values": [ - { - "lowAlch": "21000", - "highAlch": "7", - "shopValue": "21000" - } - ], - "name": "Slayer's staff", - "id": "4170", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 12, - "prayerBonus": 0, - "attackCrush": 25, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "21000", - "highAlch": "0", - "shopValue": "21000" - } - ], - "name": "Slayer's staff", - "id": "4171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with a wider than normal tip.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broad arrows", - "id": "4172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with a wider than normal tip.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broad arrows", - "id": "4173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with a wider than normal tip.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broad arrows", - "id": "4174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with a wider than normal tip.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broad arrows", - "id": "4175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For magnifying forces applied to werewolves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wolfbane lever", - "id": "4177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For making cocktails.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Olive stuffer", - "id": "4178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For playing fetch with.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stick", - "id": "4179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Now you've got a lovely one too!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coconut bunch", - "id": "4180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A holding thingy for the zip line.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mouth grip", - "id": "4181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pocketsized so it's handy when you're roving in the woods!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elven sheep", - "id": "4182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A six-pointed marble and obsidian amulet", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star amulet", - "id": "4183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Upon close examination, this seems to be a key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cavern key", - "id": "4184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Upon close examination, this seems to be a key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tower key", - "id": "4185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Upon close examination, this seems to be a key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shed key", - "id": "4186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Triangular in shape, made from marble, and as large as your hand.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble amulet", - "id": "4187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Triangular in shape, made from obsidian, and as large as your hand.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Obsidian amulet", - "id": "4188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A length of garden cane.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Garden cane", - "id": "4189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A typical garden brush.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Garden brush", - "id": "4190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A typical garden brush, with a cane tied to it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Extended brush", - "id": "4191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A typical garden brush, with two canes tied to it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Extended brush", - "id": "4192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A typical garden brush, with three canes tied to it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Extended brush", - "id": "4193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A decomposing torso, from which issues the acrid stench of the grave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torso", - "id": "4194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of limp, dead arms.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Arms", - "id": "4195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of lifeless, rotting legs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Legs", - "id": "4196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A gruesome, decapitated head, whose brain has rotted away.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Decapitated head", - "id": "4197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A gruesome, decapitated head - its eyes stare lifelessly at nothing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Decapitated head", - "id": "4198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pickled brain, submerged inside a jar of vinegar.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pickled brain", - "id": "4199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mould for making silver lightning conductors.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Conductor mould", - "id": "4200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver lightning conductor.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Conductor", - "id": "4201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Ring of Charos.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ring of charos", - "id": "4202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Journal", - "id": "4203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A letter, clearly hastily written.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Letter", - "id": "4204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This consecration seed looks grey and dead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Consecration seed", - "id": "4205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This consecration seed glows with a warm light.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Consecration seed", - "id": "4206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This crystal seed looks grey and dead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal seed", - "id": "4207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal seed", - "id": "4208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on Cadarn clan history.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cadarn lineage", - "id": "4209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cadarn lineage", - "id": "4210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Elf crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elf crystal", - "id": "4211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "900000", - "highAlch": "0", - "shopValue": "900000" - } - ], - "name": "New crystal bow", - "id": "4212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 100, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "900000", - "highAlch": "0", - "shopValue": "900000" - } - ], - "name": "New crystal bow", - "id": "4213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "900000", - "highAlch": "0", - "shopValue": "900000" - } - ], - "name": "Crystal bow full", - "id": "4214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 100, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "800000", - "highAlch": "0", - "shopValue": "800000" - } - ], - "name": "Crystal bow 9/10", - "id": "4215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 96, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "700000", - "highAlch": "0", - "shopValue": "700000" - } - ], - "name": "Crystal bow 8/10", - "id": "4216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 92, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "600000", - "highAlch": "0", - "shopValue": "600000" - } - ], - "name": "Crystal bow 7/10", - "id": "4217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 88, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "500000", - "highAlch": "0", - "shopValue": "500000" - } - ], - "name": "Crystal bow 6/10", - "id": "4218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "400000", - "highAlch": "0", - "shopValue": "400000" - } - ], - "name": "Crystal bow 5/10", - "id": "4219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 80, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "300000", - "highAlch": "0", - "shopValue": "300000" - } - ], - "name": "Crystal bow 4/10", - "id": "4220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 76, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "200000", - "highAlch": "0", - "shopValue": "200000" - } - ], - "name": "Crystal bow 3/10", - "id": "4221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 72, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "100000", - "highAlch": "0", - "shopValue": "100000" - } - ], - "name": "Crystal bow 2/10", - "id": "4222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 68, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy magical bow.", - "values": [ - { - "lowAlch": "50000", - "highAlch": "0", - "shopValue": "50000" - } - ], - "name": "Crystal bow 1/10", - "id": "4223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 64, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "0" - } - ], - "name": "New crystal shield", - "id": "4224", - "bonuses": [ - { - "defenceCrush": 53, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 54, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "750000", - "highAlch": "0", - "shopValue": "750000" - } - ], - "name": "Crystal shield full", - "id": "4225", - "bonuses": [ - { - "defenceCrush": 53, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 54, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "670000", - "highAlch": "0", - "shopValue": "670000" - } - ], - "name": "Crystal shield 9/10", - "id": "4226", - "bonuses": [ - { - "defenceCrush": 51, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 52, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 78, - "attackStab": 0, - "defenceStab": 49, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "590000", - "highAlch": "0", - "shopValue": "590000" - } - ], - "name": "Crystal shield 8/10", - "id": "4227", - "bonuses": [ - { - "defenceCrush": 49, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 50, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 76, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "510000", - "highAlch": "0", - "shopValue": "510000" - } - ], - "name": "Crystal shield 7/10", - "id": "4228", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 74, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "430000", - "highAlch": "0", - "shopValue": "430000" - } - ], - "name": "Crystal shield 6/10", - "id": "4229", - "bonuses": [ - { - "defenceCrush": 45, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 46, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 72, - "attackStab": 0, - "defenceStab": 43, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "350000", - "highAlch": "0", - "shopValue": "350000" - } - ], - "name": "Crystal shield 5/10", - "id": "4230", - "bonuses": [ - { - "defenceCrush": 43, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 44, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 70, - "attackStab": 0, - "defenceStab": 41, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "270000", - "highAlch": "0", - "shopValue": "270000" - } - ], - "name": "Crystal shield 4/10", - "id": "4231", - "bonuses": [ - { - "defenceCrush": 41, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 68, - "attackStab": 0, - "defenceStab": 39, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "190000", - "highAlch": "0", - "shopValue": "190000" - } - ], - "name": "Crystal shield 3/10", - "id": "4232", - "bonuses": [ - { - "defenceCrush": 39, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 40, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 66, - "attackStab": 0, - "defenceStab": 37, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "100000", - "highAlch": "0", - "shopValue": "100000" - } - ], - "name": "Crystal shield 2/10", - "id": "4233", - "bonuses": [ - { - "defenceCrush": 37, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 38, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 64, - "attackStab": 0, - "defenceStab": 35, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice sturdy crystal shield.", - "values": [ - { - "lowAlch": "25000", - "highAlch": "0", - "shopValue": "25000" - } - ], - "name": "Crystal shield 1/10", - "id": "4234", - "bonuses": [ - { - "defenceCrush": 35, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 36, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800000", - "highAlch": "0", - "shopValue": "800000" - } - ], - "name": "New crystal shield", - "id": "4235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bow has been signed by Robin, Master Bowman.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Oak longbow", - "id": "4236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bowl of water, with some nettles in it.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nettle-water", - "id": "4237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": " It's a Puddle of slime.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Puddle of slime", - "id": "4238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bowl of nettle tea.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nettle tea", - "id": "4239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bowl of milky nettle tea.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nettle tea", - "id": "4240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of nettles.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Nettles", - "id": "4241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice cup of nettle tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "4242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A milky cup of nettle tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "4243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A porcelain cup.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Porcelain cup", - "id": "4244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nettle tea in a porcelain cup.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "4245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some milky nettle tea in a porcelain cup.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "4246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Robes of Necrovarus.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mystical robes", - "id": "4247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Book of Haricanto.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book of haricanto", - "id": "4248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A translation manual.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Translation manual", - "id": "4249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The amulet of ghostspeak glows green from the crone's enchantment.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Ghostspeak amulet", - "id": "4250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Ectophial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ectophial", - "id": "4251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Ectophial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ectophial", - "id": "4252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small wooden ship.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Model ship", - "id": "4253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small wooden ship with a silk flag.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Model ship", - "id": "4254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed bat bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed big bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed burnt bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed burnt jogre bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed baby dragon bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed dragon bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed wolf bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed small ninja monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed medium ninja monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed gorilla monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed bearded gorilla monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed small zombie monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed large zombie monkey bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed skeleton bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed jogre bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key dropped by Necrovarus.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone key", - "id": "4272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to a chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chest key", - "id": "4273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A section from some kind of map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Map scrap", - "id": "4274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A section from some kind of map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Map scrap", - "id": "4275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A section from some kind of map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Map scrap", - "id": "4276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A complete treasure map.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Treasure map", - "id": "4277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A token with ectoplasm on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ecto-token", - "id": "4278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scroll of paper containing signatures.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Petition form", - "id": "4283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bedsheet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bedsheet", - "id": "4284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an ectoplasm-covered bedsheet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bedsheet", - "id": "4285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of ectoplasm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of slime", - "id": "4286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This raw beef is rancid.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw beef", - "id": "4287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw beef", - "id": "4288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This raw chicken is rancid.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw chicken", - "id": "4289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw chicken", - "id": "4290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This cooked chicken looks disgusting.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked chicken", - "id": "4291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked chicken", - "id": "4292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wouldn't eat that if I were you.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked meat", - "id": "4293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Cooked meat", - "id": "4294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "She's a Human against Monsters.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Female ham", - "id": "4295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "He's a Human against Monsters.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Male ham", - "id": "4297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vivid crimson shirt.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham shirt", - "id": "4298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham shirt", - "id": "4299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vivid crimson robe.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham robe", - "id": "4300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham robe", - "id": "4301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Light-weight head protection and eye shield.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham hood", - "id": "4302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham hood", - "id": "4303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A HAM cape.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham cloak", - "id": "4304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Ham cloak", - "id": "4305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A badge for the HAM cult.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "H.a.m logo", - "id": "4306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "H.a.m logo", - "id": "4307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "HAM gloves as worn by the Humans Against Monsters group.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Gloves", - "id": "4308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Gloves", - "id": "4309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "HAM boots as worn by the Humans Against Monsters group.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Boots", - "id": "4310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Boots", - "id": "4311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on elven crystal.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Crystal of seren", - "id": "4313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Crystal of seren", - "id": "4314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-1 cape", - "id": "4315", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-1 cape", - "id": "4316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-2 cape", - "id": "4317", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-2 cape", - "id": "4318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-3 cape", - "id": "4319", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-3 cape", - "id": "4320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-4 cape", - "id": "4321", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-4 cape", - "id": "4322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-5 cape", - "id": "4323", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-5 cape", - "id": "4324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-6 cape", - "id": "4325", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-6 cape", - "id": "4326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-7 cape", - "id": "4327", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-7 cape", - "id": "4328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-8 cape", - "id": "4329", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-8 cape", - "id": "4330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-9 cape", - "id": "4331", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-9 cape", - "id": "4332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-10 cape", - "id": "4333", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-10 cape", - "id": "4334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-11 cape", - "id": "4335", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-11 cape", - "id": "4336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-12 cape", - "id": "4337", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-12 cape", - "id": "4338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-13 cape", - "id": "4339", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-13 cape", - "id": "4340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-14 cape", - "id": "4341", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-14 cape", - "id": "4342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-15 cape", - "id": "4343", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-15 cape", - "id": "4344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-16 cape", - "id": "4345", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-16 cape", - "id": "4346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-17 cape", - "id": "4347", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-17 cape", - "id": "4348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-18 cape", - "id": "4349", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-18 cape", - "id": "4350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-19 cape", - "id": "4351", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-19 cape", - "id": "4352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-20 cape", - "id": "4353", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-20 cape", - "id": "4354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-21 cape", - "id": "4355", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-21 cape", - "id": "4356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-22 cape", - "id": "4357", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-22 cape", - "id": "4358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-23 cape", - "id": "4359", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-23 cape", - "id": "4360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-24 cape", - "id": "4361", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-24 cape", - "id": "4362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-25 cape", - "id": "4363", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-25 cape", - "id": "4364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-26 cape", - "id": "4365", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-26 cape", - "id": "4366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-27 cape", - "id": "4367", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-27 cape", - "id": "4368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-28 cape", - "id": "4369", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-28 cape", - "id": "4370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-29 cape", - "id": "4371", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-29 cape", - "id": "4372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-30 cape", - "id": "4373", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-30 cape", - "id": "4374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-31 cape", - "id": "4375", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-31 cape", - "id": "4376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-32 cape", - "id": "4377", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-32 cape", - "id": "4378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-33 cape", - "id": "4379", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-33 cape", - "id": "4380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-34 cape", - "id": "4381", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-34 cape", - "id": "4382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-35 cape", - "id": "4383", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-35 cape", - "id": "4384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-36 cape", - "id": "4385", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-36 cape", - "id": "4386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-37 cape", - "id": "4387", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-37 cape", - "id": "4388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-38 cape", - "id": "4389", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-38 cape", - "id": "4390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-39 cape", - "id": "4391", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-39 cape", - "id": "4392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-40 cape", - "id": "4393", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-40 cape", - "id": "4394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-41 cape", - "id": "4395", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-41 cape", - "id": "4396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-42 cape", - "id": "4397", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-42 cape", - "id": "4398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-43 cape", - "id": "4399", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-43 cape", - "id": "4400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-44 cape", - "id": "4401", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-44 cape", - "id": "4402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-45 cape", - "id": "4403", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-45 cape", - "id": "4404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-46 cape", - "id": "4405", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-46 cape", - "id": "4406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-47 cape", - "id": "4407", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-47 cape", - "id": "4408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-48 cape", - "id": "4409", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-48 cape", - "id": "4410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-49 cape", - "id": "4411", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-49 cape", - "id": "4412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooohhh look at the pretty colours...", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-50 cape", - "id": "4413", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Team-50 cape", - "id": "4414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jungle forester's blunt axe.", - "values": [ - { - "lowAlch": "56", - "highAlch": "0", - "shopValue": "56" - } - ], - "name": "Blunt axe", - "id": "4415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strong medicinal brew for heavy chests.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Herbal tincture", - "id": "4416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cup of Guthix Rest.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(4)", - "id": "4417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(4)", - "id": "4418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cup of Guthix Rest.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(3)", - "id": "4419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(3)", - "id": "4420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cup of Guthix Rest.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(2)", - "id": "4421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(2)", - "id": "4422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cup of Guthix Rest.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(1)", - "id": "4423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Guthix rest(1)", - "id": "4424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A half-filled feather mattress.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stodgy mattress", - "id": "4425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A comfy-looking feather mattress.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Comfy mattress", - "id": "4426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like a bunch of rust to me.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Iron oxide", - "id": "4427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An animate rock spell is written on this parchment.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Animate rock scroll", - "id": "4428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These weathervane directionals are broken.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken vane part", - "id": "4429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The weathervane directionals should work now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Directionals", - "id": "4430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This weathervane ornament is damaged.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken vane part", - "id": "4431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fixed Weathervane ornament.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ornament", - "id": "4432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A broken Weathervane pillar.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken vane part", - "id": "4433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fixed weathervane rotating pillar.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weathervane pillar", - "id": "4434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Clear skies ahead, with some chance of showers, thunderstorms, ice and hail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weather report", - "id": "4435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This is pretty well sealed.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Airtight pot", - "id": "4436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Airtight pot", - "id": "4437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs firing, then it should fit on a normal-sized pot.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Unfired pot lid", - "id": "4438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Unfired pot lid", - "id": "4439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This should fit on a normal-sized pot.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Pot lid", - "id": "4440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Pot lid", - "id": "4441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An airtight pot with something inside, most likely breathing salts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Breathing salts", - "id": "4442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large cage for transporting chickens.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chicken cage", - "id": "4443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jungle forester's super sharp axe.", - "values": [ - { - "lowAlch": "56", - "highAlch": "0", - "shopValue": "56" - } - ], - "name": "Sharpened axe", - "id": "4444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some rare mahogany logs which have been professionally cured.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red mahogany log", - "id": "4445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can store my keys here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel key ring", - "id": "4446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I Wonder what happens if I rub it...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Antique lamp", - "id": "4447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bowl of hot water.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bowl of hot water", - "id": "4456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bowl of hot water", - "id": "4457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cup of water.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of water", - "id": "4458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of water", - "id": "4459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's hot!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of hot water", - "id": "4460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of hot water", - "id": "4461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ruined herb tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Ruined herb tea", - "id": "4462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Ruined herb tea", - "id": "4463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water and harralander.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Herb tea mix", - "id": "4464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Herb tea mix", - "id": "4465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water and guam.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Herb tea mix", - "id": "4466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Herb tea mix", - "id": "4467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water and marrentill.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Herb tea mix", - "id": "4468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Herb tea mix", - "id": "4469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water, harralander and marrentill.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water, harralander and guam.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water and A guam.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water, guam and marrentill.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Herb tea mix", - "id": "4477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water, harralander, marrentill and guam.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Herb tea mix", - "id": "4478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Herb tea mix", - "id": "4479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water, A guam and marrentill.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Herb tea mix", - "id": "4480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Herb tea mix", - "id": "4481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished herb tea made up of water, A guam and harralander.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Herb tea mix", - "id": "4482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Herb tea mix", - "id": "4483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The strange characters supposedly grant Svidi safe passage into Rellekka.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Safety guarantee", - "id": "4484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This fruit is known as White Pearl. Should taste good.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White pearl", - "id": "4485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You can grow this seed even in cold mountain ranges!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White pearl seed", - "id": "4486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a piece of the Ancient Rock of the mountain people. It's still just a stone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half a rock", - "id": "4487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The corpse of a woman who died long ago.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Corpse of woman", - "id": "4488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This used to belong to Asleif, daughter of the mountain camp chieftain.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asleif's necklace", - "id": "4489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yuck, it's sticky, dirty mud.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mud", - "id": "4490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mud", - "id": "4491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rock.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "4492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "4493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's just a long stick, really.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pole", - "id": "4494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pole", - "id": "4495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Splintered into pieces, it has become completely useless to you.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken pole", - "id": "4496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken pole", - "id": "4497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's the rope you're holding.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rope", - "id": "4498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rope", - "id": "4499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's the pole you're holding.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pole", - "id": "4500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pole", - "id": "4501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Quite ferocious looking.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "0" - } - ], - "name": "Bearhead", - "id": "4502", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 14, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": 7 - } - ] - }, - { - "examine": "A very decorative sword.", - "values": [ - { - "lowAlch": "1300", - "highAlch": "9", - "shopValue": "1300" - } - ], - "name": "Decorative sword", - "id": "4503", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 16, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very decorative armour.", - "values": [ - { - "lowAlch": "5200", - "highAlch": "0", - "shopValue": "5200" - } - ], - "name": "Decorative armour", - "id": "4504", - "bonuses": [ - { - "defenceCrush": 55, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 63, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 63, - "attackStab": 0, - "defenceStab": 65, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Very decorative armour.", - "values": [ - { - "lowAlch": "2600", - "highAlch": "0", - "shopValue": "2600" - } - ], - "name": "Decorative armour", - "id": "4505", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "A very decorative helm.", - "values": [ - { - "lowAlch": "780", - "highAlch": "0", - "shopValue": "780" - } - ], - "name": "Decorative helm", - "id": "4506", - "bonuses": [ - { - "defenceCrush": 13, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 14, - "attackStab": 0, - "defenceStab": 14, - "defenceMagic": -1 - } - ] - }, - { - "examine": "A very decorative shield.", - "values": [ - { - "lowAlch": "2210", - "highAlch": "0", - "shopValue": "2210" - } - ], - "name": "Decorative shield", - "id": "4507", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 27, - "defenceMagic": -1 - } - ] - }, - { - "examine": "A very decorative sword.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "9", - "shopValue": "3200" - } - ], - "name": "Decorative sword", - "id": "4508", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 16, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very decorative armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9984" - } - ], - "name": "Decorative armour", - "id": "4509", - "bonuses": [ - { - "defenceCrush": 55, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 63, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 63, - "attackStab": 0, - "defenceStab": 65, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Very decorative armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3840" - } - ], - "name": "Decorative armour", - "id": "4510", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 31, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": -4 - } - ] - }, - { - "examine": "A very decorative helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Decorative helm", - "id": "4511", - "bonuses": [ - { - "defenceCrush": 13, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 14, - "attackStab": 0, - "defenceStab": 14, - "defenceMagic": -1 - } - ] - }, - { - "examine": "A very decorative shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Decorative shield", - "id": "4512", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 27, - "defenceMagic": -1 - } - ] - }, - { - "examine": "The colours of Saradomin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Castlewars hood", - "id": "4513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fine castlewars Cape.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Castlewars cloak", - "id": "4514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The colours of Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Castlewars hood", - "id": "4515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fine castlewars Cape.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Castlewars cloak", - "id": "4516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This could feed a family of gnomes for a week!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Giant frog legs", - "id": "4517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Giant frog legs", - "id": "4518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Swamp wallbeast", - "id": "4519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Swamp cave slime", - "id": "4520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Swamp cave bug", - "id": "4521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not the genie sort.", - "values": [ - { - "lowAlch": "28", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Oil lamp", - "id": "4522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "28", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Oil lamp", - "id": "4523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not the genie sort.", - "values": [ - { - "lowAlch": "28", - "highAlch": "0", - "shopValue": "28" - } - ], - "name": "Oil lamp", - "id": "4524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An oil lamp with no oil in it.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Oil lamp", - "id": "4525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Oil lamp", - "id": "4526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Put a candle in to complete it.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Candle lantern", - "id": "4527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Candle lantern", - "id": "4528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A candle in a glass cage.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Candle lantern", - "id": "4529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Candle lantern", - "id": "4530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A flickering candle in a glass cage.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Candle lantern", - "id": "4531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A candle in a glass cage.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Candle lantern", - "id": "4532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Candle lantern", - "id": "4533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A flickering candle in a glass cage.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Candle lantern", - "id": "4534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Put oil in to complete it.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Oil lantern", - "id": "4535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Oil lantern", - "id": "4536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unlit oil lantern.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Oil lantern", - "id": "4537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Oil lantern", - "id": "4538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It lights your way through the dark places of the earth.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Oil lantern", - "id": "4539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Add the glass to complete.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Oil lantern frame", - "id": "4540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Oil lantern frame", - "id": "4541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A roughly circular disc of glass.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Lantern lens", - "id": "4542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Lantern lens", - "id": "4543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You need to add a lens before you can use it.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Bullseye lantern", - "id": "4544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Bullseye lantern", - "id": "4545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You need to add lamp oil before you can use it.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Bullseye lantern", - "id": "4546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Bullseye lantern", - "id": "4547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sturdy steel lantern.", - "values": [ - { - "lowAlch": "420", - "highAlch": "0", - "shopValue": "420" - } - ], - "name": "Bullseye lantern", - "id": "4548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "420", - "highAlch": "0", - "shopValue": "420" - } - ], - "name": "Bullseye lantern", - "id": "4549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sturdy steel lantern casting a bright beam.", - "values": [ - { - "lowAlch": "420", - "highAlch": "0", - "shopValue": "420" - } - ], - "name": "Bullseye lantern", - "id": "4550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You don't want to wear it inside-out.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Spiny helmet", - "id": "4551", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Spiny helmet", - "id": "4552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue sweets", - "id": "4558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Deep blue sweets", - "id": "4559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White sweets", - "id": "4560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple sweets", - "id": "4561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red sweets", - "id": "4562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green sweets", - "id": "4563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to last until next Halloween.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pink sweets", - "id": "4564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hand them out to spread the Easter happiness.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basket of eggs", - "id": "4565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps not the most powerful weapon in RuneScape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-100", - "shopValue": "0" - } - ], - "name": "Rubber chicken", - "id": "4566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -100, - "strengthBonus": -10, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -50, - "defenceRange": 0, - "attackStab": -100, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made of gold and white gold.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold helmet", - "id": "4567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The book is almost falling apart, you'll have to handle it quite carefully.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven lore", - "id": "4568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A missing page from Rolad's book! It seems to be the first one.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book page 1", - "id": "4569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A missing page from Rolad's book! It seems to be the second one.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book page 2", - "id": "4570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A missing page from Rolad's book! It seems to be the third one.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book page 3", - "id": "4571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Missing pages!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pages", - "id": "4572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A collection of missing pages from Rolad's book!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pages", - "id": "4573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are the base schematics of a dwarven multicannon", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Base schematics", - "id": "4574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A transparent overlay - details of something?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Schematic", - "id": "4575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Transparent overlays - details of something?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Schematics", - "id": "4576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Transparent overlays - details of something?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Schematics", - "id": "4577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The assembled schematic for modifying the dwarven multicannon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Schematic", - "id": "4578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy gold metal sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cannon ball", - "id": "4579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A black tipped spear.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Black spear", - "id": "4580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Black spear", - "id": "4581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned black tipped spear.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(p)", - "id": "4582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(p)", - "id": "4583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Karambwan poisoned black tipped spear.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(kp)", - "id": "4584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks pretty heavy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "162000" - } - ], - "name": "Dragon plateskirt", - "id": "4585", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 66, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 65, - "attackStab": 0, - "defenceStab": 68, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "162000" - } - ], - "name": "Dragon plateskirt", - "id": "4586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "8", - "shopValue": "60000" - } - ], - "name": "Dragon scimitar", - "id": "4587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 67, - "strengthBonus": 66, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Dragon scimitar", - "id": "4588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keys to the Mayor's house.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Keys", - "id": "4589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Mayor of Pollnivneach's wife's jewels.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jewels", - "id": "4590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wear it on your head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karidian headpiece", - "id": "4591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karidian headpiece", - "id": "4592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes me itch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fake beard", - "id": "4593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fake beard", - "id": "4594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes my face itch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karidian disguise", - "id": "4595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karidian disguise", - "id": "4596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A note found in the Mayor's bedroom mentioning the word 'Fibonacci'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Note", - "id": "4597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A list of 5 numbers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Note", - "id": "4598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handy little club made out of oak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak-blackjack", - "id": "4599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handy little club made out of willow.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Willow-blackjack", - "id": "4600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dung of the Camelus Horribleus variety.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ugthanki dung", - "id": "4601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Poor Camel, what have I fed you?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ugthanki dung", - "id": "4602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A receipt for one 'Camelus Horribleus'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Receipt", - "id": "4603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red viscous liquid in a vial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hag's poison", - "id": "4604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes a hissing sound.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake charm", - "id": "4605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This is used to hold snakes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake basket", - "id": "4606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This basket contains a snake.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake basket full", - "id": "4607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A meaty and very hot kebab.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Super kebab", - "id": "4608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Super kebab", - "id": "4609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The bottle feels warm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red hot sauce", - "id": "4610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A disguise suitable for the desert.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert disguise", - "id": "4611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Willow-blackjack", - "id": "4612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It has a picture of a dragon on it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Spinning plate", - "id": "4613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Alas...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken plate", - "id": "4614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old faded letter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Letter", - "id": "4615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An archaeologist's notes.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Varmen's notes", - "id": "4616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The museum curator's key.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Display cabinet key", - "id": "4617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A beautifully-carved stone statuette.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Statuette", - "id": "4618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's pretty, but you wish you knew what it was.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange implement", - "id": "4619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks horrible.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mushroom", - "id": "4620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A long feather patterned like a flame.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Phoenix feather", - "id": "4621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black ink made out of mushrooms.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mushroom ink", - "id": "4622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A phoenix feather dipped in ink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Phoenix quill pen", - "id": "4623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It reads 'YOUR TASK IS DONE'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golem program", - "id": "4624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tough looking criminal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandit", - "id": "4625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cheeky little lager.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Bandit's brew", - "id": "4627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Bandit's brew", - "id": "4628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hot!", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Fire", - "id": "4653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A copy of the engravings found on a mysterious stone tablet.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Etchings", - "id": "4654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rough translation made from archaeological etchings.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Translation", - "id": "4655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This key is unusually warm to the touch.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Warm key", - "id": "4656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ring that allows you to see things that are normally invisible...", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Ring of visibility", - "id": "4657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver pot made by Ruantun.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Silver pot", - "id": "4658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver pot made by Ruantun and blessed on Entrana.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Blessed pot", - "id": "4659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver pot made by Ruantun filled with your blood.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Silver pot", - "id": "4660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed silver pot made by Ruantun filled with your blood.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Blessed pot", - "id": "4661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver pot made by Ruantun filled with blood and garlic.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Silver pot", - "id": "4662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed silver pot filled with blood and garlic.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Blessed pot", - "id": "4663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver pot made by Ruantun filled with blood, garlic and spices.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Silver pot", - "id": "4664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed silver pot filled with blood, garlic and spices.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Blessed pot", - "id": "4665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silver pot made by Ruantun filled with blood and spices.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Silver pot", - "id": "4666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blessed silver pot filled with blood and spices.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Blessed pot", - "id": "4667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Finely ground garlic powder.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Garlic powder", - "id": "4668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Garlic powder", - "id": "4669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Diamond of Blood.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Blood diamond", - "id": "4670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Diamond of Ice.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Ice diamond", - "id": "4671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Diamond of Smoke.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Smoke diamond", - "id": "4672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Diamond of Shadow.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Shadow diamond", - "id": "4673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old and strangely shaped metal cross.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Gilded cross", - "id": "4674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magical staff of ancient origin...", - "values": [ - { - "lowAlch": "0", - "highAlch": "10", - "shopValue": "60000" - } - ], - "name": "Ancient staff", - "id": "4675", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 50, - "defenceSlash": 3, - "attackMagic": 15, - "prayerBonus": -1, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Ancient staff", - "id": "4676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an amulet of cat speak. It makes vague purring noises.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Catspeak amulet", - "id": "4677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Has a lid shaped like a man. I think it contains someone's liver. Yuck.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Canopic jar", - "id": "4678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Has a lid shaped like an ape. Eeew! I think it contains someone's intestines.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Canopic jar", - "id": "4679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Has a lid shaped like a bug. Disgusting! I think there's a stomach inside.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Canopic jar", - "id": "4680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Has a lid shaped like a crocodile. Yuck, I think there are lungs inside.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Canopic jar", - "id": "4681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Menaphite lucky charm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Holy symbol", - "id": "4682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sign of the devourer.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unholy symbol", - "id": "4683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One sheet of mummy wrap.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Linen", - "id": "4684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Linen", - "id": "4685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Little book of embalming by Bod E. Wrapper.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Embalming manual", - "id": "4686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of sap.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Bucket of sap", - "id": "4687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Bucket of sap", - "id": "4688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little heap of salt.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Pile of salt", - "id": "4689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Pile of salt", - "id": "4690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Miniature golden statue of a sphinx.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sphinx's token", - "id": "4691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very delicate thin pressed gold.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold leaf", - "id": "4692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of salty water.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Full bucket", - "id": "4693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combined Water and Fire Rune.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Steam rune", - "id": "4694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combined Air and Water Rune.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Mist rune", - "id": "4695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combined Air and Earth Rune.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Dust rune", - "id": "4696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combined Air and Fire Rune.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Smoke rune", - "id": "4697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combined Earth and Water Rune.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Mud rune", - "id": "4698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combined Earth and Fire Rune.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Lava rune", - "id": "4699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You need to add lamp oil before you can use it.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Sapphire lantern", - "id": "4700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bullseye lantern with a sapphire for a lens.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Sapphire lantern", - "id": "4701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lantern casting a bright blue beam.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Sapphire lantern", - "id": "4702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Doesn't look very special.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic stone", - "id": "4703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic stone bowl for catching the tears of Guthix.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone bowl", - "id": "4704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "4706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This book must be really old!", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Crumbling tome", - "id": "4707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's leather hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Ahrim's hood", - "id": "4708", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Ahrim's hood", - "id": "4709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's quarterstaff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff", - "id": "4710", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 68, - "defenceSlash": 2, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 65, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 3, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff", - "id": "4711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's robetop", - "id": "4712", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": 30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 52, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's robetop", - "id": "4713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's robeskirt", - "id": "4714", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 22 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's robeskirt", - "id": "4715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm", - "id": "4716", - "bonuses": [ - { - "defenceCrush": 44, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 51, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm", - "id": "4717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's greataxe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's greataxe", - "id": "4718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 103, - "strengthBonus": 105, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 95, - "defenceRange": -1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's greataxe", - "id": "4719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's platebody", - "id": "4720", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's platebody", - "id": "4721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's platelegs", - "id": "4722", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's platelegs", - "id": "4723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm", - "id": "4724", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm", - "id": "4725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's warspear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "75", - "shopValue": "60000" - } - ], - "name": "Guthan's warspear", - "id": "4726", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 75, - "strengthBonus": 75, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 75, - "defenceRange": 0, - "attackStab": 75, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Guthan's warspear", - "id": "4727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's platebody", - "id": "4728", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's platebody", - "id": "4729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's chainskirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's chainskirt", - "id": "4730", - "bonuses": [ - { - "defenceCrush": 73, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -14, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 75, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's chainskirt", - "id": "4731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's coif and facemask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif", - "id": "4732", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif", - "id": "4733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's repeating crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's crossbow", - "id": "4734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's crossbow", - "id": "4735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's leather body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's leathertop", - "id": "4736", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 57, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 65 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's leathertop", - "id": "4737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's leather skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's leatherskirt", - "id": "4738", - "bonuses": [ - { - "defenceCrush": 28, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 33, - "attackStab": 0, - "defenceStab": 26, - "defenceMagic": 35 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's leatherskirt", - "id": "4739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Must need a special type of crossbow to use this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Bolt rack", - "id": "4740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm", - "id": "4745", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm", - "id": "4746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's twin hammers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "96000" - } - ], - "name": "Torag's hammers", - "id": "4747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 85, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Torag's hammers", - "id": "4748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's platebody", - "id": "4749", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's platebody", - "id": "4750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's platelegs", - "id": "4751", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's platelegs", - "id": "4752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm", - "id": "4753", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 56, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm", - "id": "4754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's flail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "68", - "shopValue": "96000" - } - ], - "name": "Verac's flail", - "id": "4755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 82, - "defenceRange": 0, - "attackStab": 68, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Verac's flail", - "id": "4756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's brassard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's brassard", - "id": "4757", - "bonuses": [ - { - "defenceCrush": 85, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 95, - "attackMagic": -6, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 81, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's brassard", - "id": "4758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's plate skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's plateskirt", - "id": "4759", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 84, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's plateskirt", - "id": "4760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt bronze arrow...ouch", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Bronze brutal", - "id": "4773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt iron arrow...ouch", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Iron brutal", - "id": "4778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt steel arrow...ouch", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Steel brutal", - "id": "4783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt black arrow...ouch", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Black brutal", - "id": "4788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt mithril arrow...ouch", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Mithril brutal", - "id": "4793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt adamantite arrow...ouch", - "values": [ - { - "lowAlch": "95", - "highAlch": "0", - "shopValue": "95" - } - ], - "name": "Adamant brutal", - "id": "4798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blunt rune arrow...ouch", - "values": [ - { - "lowAlch": "450", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Rune brutal", - "id": "4803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very black prism.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black prism", - "id": "4808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A half torn necromantic page.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torn page", - "id": "4809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A broken and useless looking backpack with the moniker,'B.Vahn' in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruined backpack", - "id": "4810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A white ceramic mug with a dragon insignia.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon inn tankard", - "id": "4811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of Zombie Ogre bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zogre bones", - "id": "4812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zogre bones", - "id": "4813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A classic realist charcoal portrait of Sithik.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sithik portrait", - "id": "4814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A semi-nihilistic, pseudo-impressionistic, half-squarist charcoal sketch of Sithik.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sithik portrait", - "id": "4815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A signed classic realist charcoal portrait of Sithik.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Signed portrait", - "id": "4816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book explaining the art of portraiture.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book of portraiture", - "id": "4817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient ogre artefact - resembling a heavy large helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre artefact", - "id": "4818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Bronze nails", - "id": "4819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Iron nails", - "id": "4820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Black nails", - "id": "4821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Mithril nails", - "id": "4822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Adamantite nails", - "id": "4823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Keeps things in place fairly permanently.", - "values": [ - { - "lowAlch": "220", - "highAlch": "0", - "shopValue": "220" - } - ], - "name": "Rune nails", - "id": "4824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unstrung composite ogre bow.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Unstrung comp bow", - "id": "4825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Unstrung comp bow", - "id": "4826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A composite ogre bow.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Comp ogre bow", - "id": "4827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 38, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "180", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Comp ogre bow", - "id": "4828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book of H.A.M affiliation.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book of 'h.a.m'", - "id": "4829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ancient ogre bones from the ogre burial tomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fayrg bones", - "id": "4830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fayrg bones", - "id": "4831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ancient ogre bones from the ogre burial tomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raurg bones", - "id": "4832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raurg bones", - "id": "4833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ancient ogre bones from the ogre burial tomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ourg bones", - "id": "4834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ourg bones", - "id": "4835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some strange liquid given to you by Zavistic Rarve.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange potion", - "id": "4836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book of necromantic spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Necromancy book", - "id": "4837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like an innocent cup of tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "4838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some sort of special tomb area.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre gate key", - "id": "4839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need another ingredient to finish this Rogues purse potion.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Rogue's purse potion(unf)", - "id": "4840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Rogue's purse potion(unf)", - "id": "4841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Relicym's balm, which helps cure disease.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Relicym's balm(4)", - "id": "4842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Relicym's balm(4)", - "id": "4843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Relicym's balm, which helps cure disease.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Relicym's balm(3)", - "id": "4844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Relicym's balm(3)", - "id": "4845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Relicym's balm, which helps cure disease.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Relicym's balm(2)", - "id": "4846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Relicym's balm(2)", - "id": "4847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Relicym's balm, which helps cure disease.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Relicym's balm(1)", - "id": "4848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Relicym's balm(1)", - "id": "4849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key which opens coffins!", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Ogre coffin key", - "id": "4850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Ogre coffin key", - "id": "4851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed zogre bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed fayrg bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed raurg bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed ourg bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "4855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's leather hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13000" - } - ], - "name": "Ahrim's hood 100", - "id": "4856", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Ahrim the Blighted's leather hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13000" - } - ], - "name": "Ahrim's hood 75", - "id": "4857", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Ahrim the Blighted's leather hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13000" - } - ], - "name": "Ahrim's hood 50", - "id": "4858", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Ahrim the Blighted's leather hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13000" - } - ], - "name": "Ahrim's hood 25", - "id": "4859", - "bonuses": [ - { - "defenceCrush": 16, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 15, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Ahrim the Blighted's leather hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13000" - } - ], - "name": "Ahrim's hood 0", - "id": "4860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13000" - } - ], - "name": "Ahrim's hood 0", - "id": "4861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's quarterstaff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff 100", - "id": "4862", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 68, - "defenceSlash": 2, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 65, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 3, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Ahrim the Blighted's quarterstaff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff 75", - "id": "4863", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 68, - "defenceSlash": 2, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 65, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 3, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Ahrim the Blighted's quarterstaff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff 50", - "id": "4864", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 68, - "defenceSlash": 2, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 65, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 3, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Ahrim the Blighted's quarterstaff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff 25", - "id": "4865", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 68, - "defenceSlash": 2, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 65, - "defenceRange": 0, - "attackStab": 12, - "defenceStab": 3, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Ahrim the Blighted's quarterstaff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff 0", - "id": "4866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "51000" - } - ], - "name": "Ahrim's staff 0", - "id": "4867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's top 100", - "id": "4868", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": 30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 52, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's top 75", - "id": "4869", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": 30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 52, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's top 50", - "id": "4870", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": 30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 52, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's top 25", - "id": "4871", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": 30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 52, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's top 0", - "id": "4872", - "bonuses": [ - { - "defenceCrush": 63, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": 30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 52, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Ahrim's top 0", - "id": "4873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's skirt 100", - "id": "4874", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 22 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's skirt 75", - "id": "4875", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 22 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's skirt 50", - "id": "4876", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 22 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's skirt 25", - "id": "4877", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 22 - } - ] - }, - { - "examine": "Ahrim the Blighted's armoured robe skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's skirt 0", - "id": "4878", - "bonuses": [ - { - "defenceCrush": 36, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 33, - "defenceMagic": 22 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Ahrim's skirt 0", - "id": "4879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm 100", - "id": "4880", - "bonuses": [ - { - "defenceCrush": 44, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 51, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Dharok the Wretched's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm 75", - "id": "4881", - "bonuses": [ - { - "defenceCrush": 44, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 51, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Dharok the Wretched's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm 50", - "id": "4882", - "bonuses": [ - { - "defenceCrush": 44, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 51, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Dharok the Wretched's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm 25", - "id": "4883", - "bonuses": [ - { - "defenceCrush": 44, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 51, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Dharok the Wretched's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm 0", - "id": "4884", - "bonuses": [ - { - "defenceCrush": 44, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 51, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Dharok's helm 0", - "id": "4885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's greataxe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's axe 100", - "id": "4886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 103, - "strengthBonus": 105, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 95, - "defenceRange": -1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's greataxe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's axe 75", - "id": "4887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 103, - "strengthBonus": 105, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 95, - "defenceRange": -1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's greataxe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's axe 50", - "id": "4888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 103, - "strengthBonus": 105, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 95, - "defenceRange": -1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's greataxe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's axe 25", - "id": "4889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 103, - "strengthBonus": 105, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 95, - "defenceRange": -1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's greataxe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's axe 0", - "id": "4890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 103, - "strengthBonus": 105, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 95, - "defenceRange": -1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "124800" - } - ], - "name": "Dharok's axe 0", - "id": "4891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's body 100", - "id": "4892", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Dharok the Wretched's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's body 75", - "id": "4893", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Dharok the Wretched's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's body 50", - "id": "4894", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Dharok the Wretched's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's body 25", - "id": "4895", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Dharok the Wretched's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's body 0", - "id": "4896", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Dharok's body 0", - "id": "4897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dharok the Wretched's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's legs 100", - "id": "4898", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Dharok the Wretched's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's legs 75", - "id": "4899", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Dharok the Wretched's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's legs 50", - "id": "4900", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Dharok the Wretched's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's legs 25", - "id": "4901", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Dharok the Wretched's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's legs 0", - "id": "4902", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Dharok's legs 0", - "id": "4903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm 100", - "id": "4904", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Guthan the Infested's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm 75", - "id": "4905", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Guthan the Infested's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm 50", - "id": "4906", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Guthan the Infested's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm 25", - "id": "4907", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Guthan the Infested's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm 0", - "id": "4908", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Guthan's helm 0", - "id": "4909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's warspear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "75", - "shopValue": "60000" - } - ], - "name": "Guthan's spear 100", - "id": "4910", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 75, - "strengthBonus": 75, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 75, - "defenceRange": 0, - "attackStab": 75, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's warspear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "75", - "shopValue": "60000" - } - ], - "name": "Guthan's spear 75", - "id": "4911", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 75, - "strengthBonus": 75, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 75, - "defenceRange": 0, - "attackStab": 75, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's warspear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "75", - "shopValue": "60000" - } - ], - "name": "Guthan's spear 50", - "id": "4912", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 75, - "strengthBonus": 75, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 75, - "defenceRange": 0, - "attackStab": 75, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's warspear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "75", - "shopValue": "60000" - } - ], - "name": "Guthan's spear 25", - "id": "4913", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 75, - "strengthBonus": 75, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 75, - "defenceRange": 0, - "attackStab": 75, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's warspear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "75", - "shopValue": "60000" - } - ], - "name": "Guthan's spear 0", - "id": "4914", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 75, - "strengthBonus": 75, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 75, - "defenceRange": 0, - "attackStab": 75, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Guthan's spear 0", - "id": "4915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's body 100", - "id": "4916", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Guthan the Infested's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's body 75", - "id": "4917", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Guthan the Infested's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's body 50", - "id": "4918", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Guthan the Infested's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's body 25", - "id": "4919", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Guthan the Infested's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's body 0", - "id": "4920", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Guthan's body 0", - "id": "4921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guthan the Infested's chainskirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's skirt 100", - "id": "4922", - "bonuses": [ - { - "defenceCrush": 73, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -14, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 75, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Guthan the Infested's chainskirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's skirt 75", - "id": "4923", - "bonuses": [ - { - "defenceCrush": 73, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -14, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 75, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Guthan the Infested's chainskirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's skirt 50", - "id": "4924", - "bonuses": [ - { - "defenceCrush": 73, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -14, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 75, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Guthan the Infested's chainskirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's skirt 25", - "id": "4925", - "bonuses": [ - { - "defenceCrush": 73, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -14, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 75, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Guthan the Infested's chainskirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's skirt 0", - "id": "4926", - "bonuses": [ - { - "defenceCrush": 73, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 72, - "attackMagic": -14, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 82, - "attackStab": 0, - "defenceStab": 75, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Guthan's skirt 0", - "id": "4927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's coif and facemask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif 100", - "id": "4928", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Karil the Tainted's coif and facemask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif 75", - "id": "4929", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Karil the Tainted's coif and facemask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif 50", - "id": "4930", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Karil the Tainted's coif and facemask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif 25", - "id": "4931", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Karil the Tainted's coif and facemask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif 0", - "id": "4932", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Karil's coif 0", - "id": "4933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's repeating crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's x-bow 100", - "id": "4934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's repeating crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's x-bow 75", - "id": "4935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's repeating crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's x-bow 50", - "id": "4936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's repeating crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's x-bow 25", - "id": "4937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's repeating crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's x-bow 0", - "id": "4938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 84, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Karil's x-bow 0", - "id": "4939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's leather body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's top 100", - "id": "4940", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 57, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 65 - } - ] - }, - { - "examine": "Karil the Tainted's leather body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's top 75", - "id": "4941", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 57, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 65 - } - ] - }, - { - "examine": "Karil the Tainted's leather body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's top 50", - "id": "4942", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 57, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 65 - } - ] - }, - { - "examine": "Karil the Tainted's leather body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's top 25", - "id": "4943", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 57, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 65 - } - ] - }, - { - "examine": "Karil the Tainted's leather body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's top 0", - "id": "4944", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 30, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 42, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 57, - "attackStab": 0, - "defenceStab": 47, - "defenceMagic": 65 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30000" - } - ], - "name": "Karil's top 0", - "id": "4945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karil the Tainted's leather skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's skirt 100", - "id": "4946", - "bonuses": [ - { - "defenceCrush": 28, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 33, - "attackStab": 0, - "defenceStab": 26, - "defenceMagic": 35 - } - ] - }, - { - "examine": "Karil the Tainted's leather skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's skirt 75", - "id": "4947", - "bonuses": [ - { - "defenceCrush": 28, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 33, - "attackStab": 0, - "defenceStab": 26, - "defenceMagic": 35 - } - ] - }, - { - "examine": "Karil the Tainted's leather skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's skirt 50", - "id": "4948", - "bonuses": [ - { - "defenceCrush": 28, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 33, - "attackStab": 0, - "defenceStab": 26, - "defenceMagic": 35 - } - ] - }, - { - "examine": "Karil the Tainted's leather skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's skirt 25", - "id": "4949", - "bonuses": [ - { - "defenceCrush": 28, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 33, - "attackStab": 0, - "defenceStab": 26, - "defenceMagic": 35 - } - ] - }, - { - "examine": "Karil the Tainted's leather skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's skirt 0", - "id": "4950", - "bonuses": [ - { - "defenceCrush": 28, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 33, - "attackStab": 0, - "defenceStab": 26, - "defenceMagic": 35 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "28200" - } - ], - "name": "Karil's skirt 0", - "id": "4951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm 100", - "id": "4952", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Torag the Corrupted's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm 75", - "id": "4953", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Torag the Corrupted's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm 50", - "id": "4954", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Torag the Corrupted's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm 25", - "id": "4955", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Torag the Corrupted's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm 0", - "id": "4956", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 62, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Torag's helm 0", - "id": "4957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag's hammers", - "values": [ - { - "lowAlch": "96000", - "highAlch": "0", - "shopValue": "64000" - } - ], - "name": "Torag's hammers 100", - "id": "4958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": -4, - "attackSlash": -4, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 85, - "prayerBonus": 72, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's twin hammers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "96000" - } - ], - "name": "Torag's hammers 75", - "id": "4959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 85, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's twin hammers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "96000" - } - ], - "name": "Torag's hammers 50", - "id": "4960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 85, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's twin hammers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "96000" - } - ], - "name": "Torag's hammers 25", - "id": "4961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 85, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's twin hammers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "96000" - } - ], - "name": "Torag's hammers 0", - "id": "4962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 85, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Torag's hammers 0", - "id": "4963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's body 100", - "id": "4964", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Torag the Corrupted's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's body 75", - "id": "4965", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Torag the Corrupted's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's body 50", - "id": "4966", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Torag the Corrupted's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's body 25", - "id": "4967", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Torag the Corrupted's plate body armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's body 0", - "id": "4968", - "bonuses": [ - { - "defenceCrush": 107, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 120, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 132, - "attackStab": 0, - "defenceStab": 122, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Torag's body 0", - "id": "4969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torag the Corrupted's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's legs 100", - "id": "4970", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Torag the Corrupted's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's legs 75", - "id": "4971", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Torag the Corrupted's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's legs 50", - "id": "4972", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Torag the Corrupted's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's legs 25", - "id": "4973", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Torag the Corrupted's plate leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's legs 0", - "id": "4974", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 92, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Torag's legs 0", - "id": "4975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm 100", - "id": "4976", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 56, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm 75", - "id": "4977", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 56, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm 50", - "id": "4978", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 56, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm 25", - "id": "4979", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 56, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm 0", - "id": "4980", - "bonuses": [ - { - "defenceCrush": 54, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 58, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 56, - "attackStab": 0, - "defenceStab": 55, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "61800" - } - ], - "name": "Verac's helm 0", - "id": "4981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's flail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "68", - "shopValue": "96000" - } - ], - "name": "Verac's flail 100", - "id": "4982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 82, - "defenceRange": 0, - "attackStab": 68, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's flail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "68", - "shopValue": "96000" - } - ], - "name": "Verac's flail 75", - "id": "4983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 82, - "defenceRange": 0, - "attackStab": 68, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's flail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "68", - "shopValue": "96000" - } - ], - "name": "Verac's flail 50", - "id": "4984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 82, - "defenceRange": 0, - "attackStab": 68, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's flail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "68", - "shopValue": "96000" - } - ], - "name": "Verac's flail 25", - "id": "4985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 82, - "defenceRange": 0, - "attackStab": 68, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's flail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "68", - "shopValue": "96000" - } - ], - "name": "Verac's flail 0", - "id": "4986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 72, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 6, - "attackCrush": 82, - "defenceRange": 0, - "attackStab": 68, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "96000" - } - ], - "name": "Verac's flail 0", - "id": "4987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's brassard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's top 100", - "id": "4988", - "bonuses": [ - { - "defenceCrush": 85, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 95, - "attackMagic": -6, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 81, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's brassard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's top 75", - "id": "4989", - "bonuses": [ - { - "defenceCrush": 85, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 95, - "attackMagic": -6, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 81, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's brassard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's top 50", - "id": "4990", - "bonuses": [ - { - "defenceCrush": 85, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 95, - "attackMagic": -6, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 81, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's brassard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's top 25", - "id": "4991", - "bonuses": [ - { - "defenceCrush": 85, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 95, - "attackMagic": -6, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 81, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's brassard.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's top 0", - "id": "4992", - "bonuses": [ - { - "defenceCrush": 85, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 95, - "attackMagic": -6, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 81, - "attackStab": 0, - "defenceStab": 81, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "168000" - } - ], - "name": "Verac's top 0", - "id": "4993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's plate skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's skirt 100", - "id": "4994", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 84, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's plate skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's skirt 75", - "id": "4995", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 84, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's plate skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's skirt 50", - "id": "4996", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 84, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's plate skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's skirt 25", - "id": "4997", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 84, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Verac the Defiled's plate skirt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's skirt 0", - "id": "4998", - "bonuses": [ - { - "defenceCrush": 83, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 82, - "attackMagic": -21, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 84, - "attackStab": 0, - "defenceStab": 85, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "165000" - } - ], - "name": "Verac's skirt 0", - "id": "4999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's incredibly slimy.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Raw cave eel", - "id": "5001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's no longer slimy, or edible.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt cave eel", - "id": "5002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bit slimy.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Cave eel", - "id": "5003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "That's disgusting!", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Frog spawn", - "id": "5004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Raw cave eel", - "id": "5005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt cave eel", - "id": "5006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Cave eel", - "id": "5007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stone brooch with a symbol on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brooch", - "id": "5008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book about the ancient goblin tribes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goblin symbol book", - "id": "5009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The key you stole from Sigmund.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "5010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You found the Lumbridge silverware in the HAM cave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silverware", - "id": "5011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A peace treaty between Lumbridge and the Cave Goblins.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Peace treaty", - "id": "5012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A helmet with a lamp on it.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Mining helmet", - "id": "5013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A helmet with an unlit lamp on it.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Mining helmet", - "id": "5014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Mining helmet", - "id": "5015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Basic but brutal!", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Bone spear", - "id": "5016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Bone spear", - "id": "5017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Basic but brutal!", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Bone club", - "id": "5018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Bone club", - "id": "5019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ticket to take you from Keldagrim to the dwarven mines under Ice Mountain.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Minecart ticket", - "id": "5020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ticket to take you from the dwarven mines under Ice Mountain to Keldagrim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Minecart ticket", - "id": "5021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ticket to take you from Keldagrim to the passage under White Wolf Mountain.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Minecart ticket", - "id": "5022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ticket to take you from the passage under White Wolf Mountain to Keldagrim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Minecart ticket", - "id": "5023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Far too small to wear.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Woven top", - "id": "5024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Woven top", - "id": "5025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yellow top, too small for me.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Woven top", - "id": "5026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Woven top", - "id": "5027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blue top, very tiny.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Woven top", - "id": "5028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Woven top", - "id": "5029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Tiny!", - "values": [ - { - "lowAlch": "450", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Shirt", - "id": "5030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "450", - "highAlch": "0", - "shopValue": "450" - } - ], - "name": "Shirt", - "id": "5031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Tiny!", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Shirt", - "id": "5032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Shirt", - "id": "5033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Tiny!", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Shirt", - "id": "5034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Shirt", - "id": "5035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of long dwarven trousers... long for dwarves, of course.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "Trousers", - "id": "5036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "Trousers", - "id": "5037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of long dwarven trousers... long for dwarves, of course.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Trousers", - "id": "5038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "700", - "highAlch": "0", - "shopValue": "700" - } - ], - "name": "Trousers", - "id": "5039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of long dwarven trousers... long for dwarves, of course.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Trousers", - "id": "5040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Trousers", - "id": "5041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look great, on dwarves!", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Shorts", - "id": "5042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "280", - "highAlch": "0", - "shopValue": "280" - } - ], - "name": "Shorts", - "id": "5043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yellow shorts. Far too small for you.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Shorts", - "id": "5044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "Shorts", - "id": "5045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blue shorts, these would look great on dwarves!", - "values": [ - { - "lowAlch": "390", - "highAlch": "0", - "shopValue": "390" - } - ], - "name": "Shorts", - "id": "5046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "390", - "highAlch": "0", - "shopValue": "390" - } - ], - "name": "Shorts", - "id": "5047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brown skirt. Size small!", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Skirt", - "id": "5048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Skirt", - "id": "5049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lilac skirt.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "Skirt", - "id": "5050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "550", - "highAlch": "0", - "shopValue": "550" - } - ], - "name": "Skirt", - "id": "5051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blue skirt.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Skirt", - "id": "5052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Skirt", - "id": "5053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Petit.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarf", - "id": "5054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarf", - "id": "5055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks very rusty and worn.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven battleaxe", - "id": "5056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This axe blade has been sharpened.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven battleaxe", - "id": "5057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Three sapphires have been crafted onto the hilt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven battleaxe", - "id": "5058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This axe has a sharp blade and there are sapphires in the hilt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven battleaxe", - "id": "5059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This battleaxe is in the process of having sapphires fitted onto it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven battleaxe", - "id": "5060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This battleaxe is in the process of having sapphires fitted onto it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven battleaxe", - "id": "5061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of a pair I assume.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Left boot", - "id": "5062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A good looking boot, for the right foot. Literally.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Right boot", - "id": "5063", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lovely pair of boots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Exquisite boots", - "id": "5064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old library book. It bears the title 'Scholars Guide to Dwarven Costumes'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book on costumes", - "id": "5065", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These notes are from a meeting of the Keldagrim Consortium.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Meeting notes", - "id": "5066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Clothes for the sculptor's model.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Exquisite clothes", - "id": "5067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A master at farming.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Master farmer", - "id": "5068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5069", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bird's nest with an egg in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "5070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bird's nest with an egg in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "5071", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bird's nest with an egg in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "5072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bird's nest with some seeds in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "5073", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bird's nest with a ring in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "5074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an empty bird's nest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "5075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red bird's egg.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird's egg", - "id": "5076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blue bird's egg.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird's egg", - "id": "5077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A green bird's egg.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird's egg", - "id": "5078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5087", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A marigold seed - plant in a flower patch.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Marigold seed", - "id": "5096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rosemary seed - plant in a flower patch.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Rosemary seed", - "id": "5097", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nasturtium seed - plant in a flower patch.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Nasturtium seed", - "id": "5098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woad seed - plant in a flower patch.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Woad seed", - "id": "5099", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A limpwurt seed - plant in a flower patch.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Limpwurt seed", - "id": "5100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A redberry bush seed - plant in a bush patch.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Redberry seed", - "id": "5101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cadavaberry bush seed - plant in a bush patch.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Cadavaberry seed", - "id": "5102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dwellberry bush seed - plant in a bush patch.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Dwellberry seed", - "id": "5103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jangerberry bush seed - plant in a bush patch.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Jangerberry seed", - "id": "5104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A whiteberry bush seed - plant in a bush patch.", - "values": [ - { - "lowAlch": "133", - "highAlch": "0", - "shopValue": "133" - } - ], - "name": "Whiteberry seed", - "id": "5105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poison ivy bush seed - plant in a bush patch.", - "values": [ - { - "lowAlch": "166", - "highAlch": "0", - "shopValue": "166" - } - ], - "name": "Poison ivy seed", - "id": "5106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some seeds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Seeds", - "id": "5171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Cactus seed - plant in a cactus patch.", - "values": [ - { - "lowAlch": "99", - "highAlch": "0", - "shopValue": "99" - } - ], - "name": "Cactus seed", - "id": "5280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Also known as Deadly Nightshade - plant in a belladonna patch.", - "values": [ - { - "lowAlch": "177", - "highAlch": "0", - "shopValue": "177" - } - ], - "name": "Belladonna seed", - "id": "5281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Bittercap mushroom spore - plant in a mushroom patch.", - "values": [ - { - "lowAlch": "86", - "highAlch": "0", - "shopValue": "86" - } - ], - "name": "Mushroom spore", - "id": "5282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Apple tree seed", - "id": "5283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Banana tree seed", - "id": "5284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "31", - "highAlch": "0", - "shopValue": "31" - } - ], - "name": "Orange tree seed", - "id": "5285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "39", - "highAlch": "0", - "shopValue": "39" - } - ], - "name": "Curry tree seed", - "id": "5286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "74", - "highAlch": "0", - "shopValue": "74" - } - ], - "name": "Pineapple seed", - "id": "5287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "115", - "highAlch": "0", - "shopValue": "115" - } - ], - "name": "Papaya tree seed", - "id": "5288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "254", - "highAlch": "0", - "shopValue": "254" - } - ], - "name": "Palm tree seed", - "id": "5289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "340", - "highAlch": "0", - "shopValue": "340" - } - ], - "name": "Calquat tree seed", - "id": "5290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A guam seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Guam seed", - "id": "5291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A marrentill seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Marrentill seed", - "id": "5292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tarromin seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Tarromin seed", - "id": "5293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A harralander seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Harralander seed", - "id": "5294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ranarr seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "19", - "highAlch": "0", - "shopValue": "19" - } - ], - "name": "Ranarr seed", - "id": "5295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A toadflax seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "34", - "highAlch": "0", - "shopValue": "34" - } - ], - "name": "Toadflax seed", - "id": "5296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An irit seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Irit seed", - "id": "5297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An avantoe seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Avantoe seed", - "id": "5298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A kwuarm seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Kwuarm seed", - "id": "5299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A snapdragon seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Snapdragon seed", - "id": "5300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cadantine seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Cadantine seed", - "id": "5301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lantadyme seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Lantadyme seed", - "id": "5302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dwarf weed seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Dwarf weed seed", - "id": "5303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A torstol seed - plant in a herb patch.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Torstol seed", - "id": "5304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barley seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Barley seed", - "id": "5305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jute plant seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Jute seed", - "id": "5306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Hammerstone hop seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Hammerstone seed", - "id": "5307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An Asgarnian hop seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Asgarnian seed", - "id": "5308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Yanillian hop seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Yanillian seed", - "id": "5309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Krandorian hop seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Krandorian seed", - "id": "5310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Wildblood hop seed - plant in a hops patch.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Wildblood seed", - "id": "5311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Acorn", - "id": "5312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Willow seed", - "id": "5313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Maple seed", - "id": "5314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "143", - "highAlch": "0", - "shopValue": "143" - } - ], - "name": "Yew seed", - "id": "5315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "422", - "highAlch": "0", - "shopValue": "422" - } - ], - "name": "Magic seed", - "id": "5316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a plantpot of soil to grow a sapling.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit seed", - "id": "5317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A potato seed - plant in an allotment.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Potato seed", - "id": "5318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An onion seed - plant in an allotment.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Onion seed", - "id": "5319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sweetcorn seed - plant in an allotment.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Sweetcorn seed", - "id": "5320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A watermelon seed - plant in an allotment.", - "values": [ - { - "lowAlch": "56", - "highAlch": "0", - "shopValue": "56" - } - ], - "name": "Watermelon seed", - "id": "5321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tomato seed - plant in an allotment.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Tomato seed", - "id": "5322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strawberry seed - plant in an allotment.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Strawberry seed", - "id": "5323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cabbage seed - plant in an allotment.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Cabbage seed", - "id": "5324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not suitable for archaeological digs.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Gardening trowel", - "id": "5325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Gardening trowel", - "id": "5326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to attach this to its head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spade handle", - "id": "5327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to attach this to its handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spade head", - "id": "5328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for pruning away diseased leaves.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Secateurs", - "id": "5329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Secateurs", - "id": "5330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is empty.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Watering can", - "id": "5331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Watering can", - "id": "5332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is almost empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(1)", - "id": "5333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is three-quarters empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(2)", - "id": "5334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is just under half-full.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(3)", - "id": "5335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some would say this watering can is half-full, others half-empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(4)", - "id": "5336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is just over half-full.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(5)", - "id": "5337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is three quarters full.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(6)", - "id": "5338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is almost completely full.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(7)", - "id": "5339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This watering can is completely full.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can(8)", - "id": "5340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Use this to clear weeds.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Rake", - "id": "5341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Rake", - "id": "5342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Use this to plant seeds with.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Seed dibber", - "id": "5343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Seed dibber", - "id": "5344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of gardening boots.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Gardening boots", - "id": "5345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Gardening boots", - "id": "5346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to reattach this to its head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rake handle", - "id": "5347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to reattach this to its handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rake head", - "id": "5348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant pot", - "id": "5350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant pot", - "id": "5351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfired plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfired plant pot", - "id": "5352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfired plant pot", - "id": "5353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plant pot filled with soil.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant pot", - "id": "5354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant pot", - "id": "5355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plant pot filled with soil.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant pot", - "id": "5356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant pot", - "id": "5357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An acorn has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak seedling", - "id": "5358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A willow tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow seedling", - "id": "5359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A maple tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple seedling", - "id": "5360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yew tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew seedling", - "id": "5361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic seedling", - "id": "5362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spirit tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit seedling", - "id": "5363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An acorn has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak seedling", - "id": "5364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A willow tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow seedling", - "id": "5365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A maple tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple seedling", - "id": "5366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yew tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew seedling", - "id": "5367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic seedling", - "id": "5368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spirit tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit seedling", - "id": "5369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak sapling", - "id": "5370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow sapling", - "id": "5371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple sapling", - "id": "5372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew sapling", - "id": "5373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic sapling", - "id": "5374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a Spirit patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit sapling", - "id": "5375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty fruit basket.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basket", - "id": "5376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basket", - "id": "5377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(1)", - "id": "5378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(1)", - "id": "5379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(2)", - "id": "5380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(2)", - "id": "5381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(3)", - "id": "5382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(3)", - "id": "5383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(4)", - "id": "5384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(4)", - "id": "5385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(5)", - "id": "5386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apples(5)", - "id": "5387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with oranges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(1)", - "id": "5388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(1)", - "id": "5389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with oranges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(2)", - "id": "5390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(2)", - "id": "5391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with oranges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(3)", - "id": "5392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(3)", - "id": "5393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with oranges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(4)", - "id": "5394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(4)", - "id": "5395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with oranges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(5)", - "id": "5396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oranges(5)", - "id": "5397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with strawberries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(1)", - "id": "5398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(1)", - "id": "5399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with strawberries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(2)", - "id": "5400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(2)", - "id": "5401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with strawberries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(3)", - "id": "5402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(3)", - "id": "5403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with strawberries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(4)", - "id": "5404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(4)", - "id": "5405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with strawberries.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(5)", - "id": "5406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strawberries(5)", - "id": "5407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with bananas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(1)", - "id": "5408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(1)", - "id": "5409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with bananas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(2)", - "id": "5410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(2)", - "id": "5411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with bananas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(3)", - "id": "5412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(3)", - "id": "5413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with bananas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(4)", - "id": "5414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(4)", - "id": "5415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with bananas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(5)", - "id": "5416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bananas(5)", - "id": "5417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty vegetable sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty sack", - "id": "5418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty sack", - "id": "5419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is 1 potato in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(1)", - "id": "5420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(1)", - "id": "5421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 2 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(2)", - "id": "5422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(2)", - "id": "5423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 3 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(3)", - "id": "5424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(3)", - "id": "5425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 4 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(4)", - "id": "5426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(4)", - "id": "5427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 5 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(5)", - "id": "5428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(5)", - "id": "5429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 6 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(6)", - "id": "5430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(6)", - "id": "5431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 7 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(7)", - "id": "5432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(7)", - "id": "5433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 8 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(8)", - "id": "5434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(8)", - "id": "5435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 9 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(9)", - "id": "5436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(9)", - "id": "5437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 10 potatoes in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(10)", - "id": "5438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potatoes(10)", - "id": "5439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is 1 onion in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(1)", - "id": "5440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(1)", - "id": "5441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 2 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(2)", - "id": "5442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(2)", - "id": "5443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 3 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(3)", - "id": "5444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(3)", - "id": "5445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 4 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(4)", - "id": "5446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(4)", - "id": "5447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 5 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(5)", - "id": "5448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(5)", - "id": "5449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 6 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(6)", - "id": "5450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(6)", - "id": "5451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 7 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(7)", - "id": "5452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(7)", - "id": "5453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 8 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(8)", - "id": "5454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(8)", - "id": "5455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 9 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(9)", - "id": "5456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(9)", - "id": "5457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 10 onions in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(10)", - "id": "5458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onions(10)", - "id": "5459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is 1 cabbage in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(1)", - "id": "5460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(1)", - "id": "5461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 2 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(2)", - "id": "5462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(2)", - "id": "5463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 3 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(3)", - "id": "5464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(3)", - "id": "5465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 4 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(4)", - "id": "5466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(4)", - "id": "5467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 5 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(5)", - "id": "5468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(5)", - "id": "5469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 6 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(6)", - "id": "5470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(6)", - "id": "5471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 7 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(7)", - "id": "5472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(7)", - "id": "5473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 8 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(8)", - "id": "5474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(8)", - "id": "5475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 9 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(9)", - "id": "5476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(9)", - "id": "5477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There are 10 cabbages in this sack.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(10)", - "id": "5478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cabbages(10)", - "id": "5479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An apple tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apple seedling", - "id": "5480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A banana tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banana seedling", - "id": "5481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An orange tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange seedling", - "id": "5482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A curry tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Curry seedling", - "id": "5483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pineapple tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple seedling", - "id": "5484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A papaya tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Papaya seedling", - "id": "5485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A palm tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Palm seedling", - "id": "5486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Calquat tree seed has been sown in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Calquat seedling", - "id": "5487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An apple tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apple seedling", - "id": "5488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A banana tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banana seedling", - "id": "5489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An orange tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange seedling", - "id": "5490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A curry tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Curry seedling", - "id": "5491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pineapple tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple seedling", - "id": "5492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A papaya tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Papaya seedling", - "id": "5493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A palm tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Palm seedling", - "id": "5494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Calquat tree seed has been sown and watered in this plant pot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Calquat seedling", - "id": "5495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apple sapling", - "id": "5496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banana sapling", - "id": "5497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange sapling", - "id": "5498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Curry sapling", - "id": "5499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple sapling", - "id": "5500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Papaya sapling", - "id": "5501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a fruit tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Palm sapling", - "id": "5502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sapling is ready to be replanted in a Calquat Tree patch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Calquat sapling", - "id": "5503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A freshly picked strawberry.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Strawberry", - "id": "5504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17", - "highAlch": "0", - "shopValue": "17" - } - ], - "name": "Strawberry", - "id": "5505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Wise Old Man of Draynor Village asked you to take this to someone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Old man's message", - "id": "5506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tatty old book belonging to the Wise Old Man of Draynor Village.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange book", - "id": "5507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tatty old book belonging to the Wise Old Man of Draynor Village.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book of folklore", - "id": "5508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small pouch used for storing essence.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Small pouch", - "id": "5509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium-sized pouch used for storing essence.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Medium pouch", - "id": "5510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A damaged medium-sized pouch used for storing essence.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Medium pouch", - "id": "5511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pouch used for storing essence.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Large pouch", - "id": "5512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large damaged pouch used for storing essence.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Large pouch", - "id": "5513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A giant-sized pouch used for storing essence.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Giant pouch", - "id": "5514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A damaged giant-sized pouch used for storing essence.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Giant pouch", - "id": "5515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious power emanates from the talisman...", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Elemental talisman", - "id": "5516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Elemental talisman", - "id": "5517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This contains mystical teleport information...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrying orb", - "id": "5518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This orb apparently contains a cypher spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrying orb", - "id": "5519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some research notes on abyssal space.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Abyssal book", - "id": "5520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A necklace embedded with mystical power.", - "values": [ - { - "lowAlch": "1425", - "highAlch": "0", - "shopValue": "1425" - } - ], - "name": "Binding necklace", - "id": "5521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1425", - "highAlch": "0", - "shopValue": "1425" - } - ], - "name": "Binding necklace", - "id": "5522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mould for tiaras.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Tiara mould", - "id": "5523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Tiara mould", - "id": "5524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes me feel like a Princess.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Tiara", - "id": "5525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Tiara", - "id": "5526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of air.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Air tiara", - "id": "5527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Air tiara", - "id": "5528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of the mind.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Mind tiara", - "id": "5529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Mind tiara", - "id": "5530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of water.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Water tiara", - "id": "5531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Water tiara", - "id": "5532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of the body.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Body tiara", - "id": "5533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Body tiara", - "id": "5534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of the earth.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Earth tiara", - "id": "5535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Earth tiara", - "id": "5536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of fire.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Fire tiara", - "id": "5537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Fire tiara", - "id": "5538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of the cosmos.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Cosmic tiara", - "id": "5539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Cosmic tiara", - "id": "5540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of nature.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Nature tiara", - "id": "5541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Nature tiara", - "id": "5542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of chaos.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Chaos tiara", - "id": "5543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Chaos tiara", - "id": "5544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of law.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Law tiara", - "id": "5545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This tiara has decayed and is useless.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken tiara", - "id": "5546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of death.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Death tiara", - "id": "5547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Death tiara", - "id": "5548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of blood.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Blood tiara", - "id": "5549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Blood tiara", - "id": "5550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of the soul.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Soul tiara", - "id": "5551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Soul tiara", - "id": "5552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Black banded leather armour, a rogue's dream!", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Rogue top", - "id": "5553", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Black banded leather armour, a rogue's dream!", - "values": [ - { - "lowAlch": "375", - "highAlch": "0", - "shopValue": "375" - } - ], - "name": "Rogue mask", - "id": "5554", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 5, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Black banded leather armour, a rogue's dream!", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Rogue trousers", - "id": "5555", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 7, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": 7 - } - ] - }, - { - "examine": "Black banded leather gloves, a rogue's dream!", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Rogue gloves", - "id": "5556", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Black banded leather boots, a rogue's dream!", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Rogue boots", - "id": "5557", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "It can do almost anything!", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Rogue kit", - "id": "5558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small satchel of bright powder!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flash powder", - "id": "5559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A useful hearing aid.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Stethoscope", - "id": "5560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can escape the Maze with this!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mystic jewel", - "id": "5561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used in machines and locks the rune over.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gear", - "id": "5562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used in machines and locks the rune over.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gear", - "id": "5563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used in machines and locks the rune over.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gear", - "id": "5564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used in machines and locks the rune over.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gear", - "id": "5565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used in machines and locks the rune over.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gear", - "id": "5566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used in machines and locks the rune over.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gear", - "id": "5567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For a mosaic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tile", - "id": "5568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For a mosaic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tiles", - "id": "5569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For a mosaic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tiles", - "id": "5570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For a mosaic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tiles", - "id": "5571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what this does?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dial", - "id": "5572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "5573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An initiate Temple Knight's helm.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Initiate sallet", - "id": "5574", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 14, - "attackMagic": -6, - "prayerBonus": 3, - "attackCrush": 0, - "defenceRange": 13, - "attackStab": 0, - "defenceStab": 13, - "defenceMagic": -1 - } - ] - }, - { - "examine": "An initiate Temple Knight's Armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6000" - } - ], - "name": "Initiate hauberk", - "id": "5575", - "bonuses": [ - { - "defenceCrush": 38, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 44, - "attackMagic": -30, - "prayerBonus": 6, - "attackCrush": 0, - "defenceRange": 44, - "attackStab": 0, - "defenceStab": 46, - "defenceMagic": -6 - } - ] - }, - { - "examine": "An initiate Temple Knight's leg armour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3600" - } - ], - "name": "Initiate cuisse", - "id": "5576", - "bonuses": [ - { - "defenceCrush": 20, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 22, - "attackMagic": -21, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 24, - "defenceMagic": -4 - } - ] - }, - { - "examine": "A vial of something labelled 'Cupric Sulfate'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cupric sulfate", - "id": "5577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Acetic Acid'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Acetic acid", - "id": "5578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Gypsum'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gypsum", - "id": "5579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Sodium Chloride'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sodium chloride", - "id": "5580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Nitrous Oxide'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nitrous oxide", - "id": "5581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Dihydrogen Monoxide'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vial of liquid", - "id": "5582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Powdered Tin Ore'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tin ore powder", - "id": "5583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of something labelled 'Powdered Cupric Ore'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cupric ore powder", - "id": "5584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope the mould was accurate enough...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze key", - "id": "5585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a metal spade with a wooden handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Metal spade", - "id": "5586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a metal spade without a handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Metal spade", - "id": "5587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like a pretty boring read.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Alchemical notes", - "id": "5588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very hot vial of something or other. The label says 'Cupric Sulfate'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "??? mixture", - "id": "5589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very warm vial of something or other. It's a bit lumpy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "??? mixture", - "id": "5590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It looks horrible. I think I messed something up.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "??? mixture", - "id": "5591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could probably pour something into this.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Tin", - "id": "5592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's full of a white lumpy mixture that seems to be hardening.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an impression of a key embedded in it.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an impression of a key, filled with tin ore.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an impression of a key, filled with copper ore.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an impression of a key, filled with tin and copper ore.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a bronze key surrounded by plaster in this tin.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a strange concoction filling this tin.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tin layered with some stuff from a vial.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Tin", - "id": "5600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for detailed crafting.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chisel", - "id": "5601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for crafting items.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Bronze wire", - "id": "5602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For shearing sheep.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shears", - "id": "5603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very attractive magnet.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Magnet", - "id": "5604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dangerous looking knife.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Knife", - "id": "5605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can exchange this for one free makeover with the makeover mage.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Makeover voucher", - "id": "5606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sack full of grain.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grain", - "id": "5607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think he likes being carried.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fox", - "id": "5608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "He'd be easier to carry if I cooked and ate him first...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chicken", - "id": "5609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an hourglass.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hourglass", - "id": "5610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Initiate helm", - "id": "5611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Initiate platemail", - "id": "5612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Initiate platelegs", - "id": "5613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A flying Magic carpet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic carpet", - "id": "5614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed Shaikahan bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "5615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze arrow(p+)", - "id": "5616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron arrow(p+)", - "id": "5617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Steel arrow(p+)", - "id": "5618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Mithril arrow(p+)", - "id": "5619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Adamant arrow(p+)", - "id": "5620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune arrow(p+)", - "id": "5621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze arrow(s)", - "id": "5622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron arrow(s)", - "id": "5623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "3", - "highAlch": "4", - "shopValue": "2" - } - ], - "name": "Steel arrow(s)", - "id": "5624", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": 8, - "attackSlash": 5, - "strengthBonus": 14, - "defenceSlash": 10, - "attackMagic": 7, - "prayerBonus": 15, - "attackCrush": 6, - "defenceRange": 13, - "attackStab": 4, - "defenceStab": 9, - "defenceMagic": 12 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "32", - "highAlch": "0", - "shopValue": "32" - } - ], - "name": "Mithril arrow(s)", - "id": "5625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "80", - "highAlch": "0", - "shopValue": "80" - } - ], - "name": "Adamant arrow(s)", - "id": "5626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Venomous looking arrows.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune arrow(s)", - "id": "5627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a bronze tip.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze dart(p+)", - "id": "5628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with an iron tip.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iron dart(p+)", - "id": "5629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a steel tip.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel dart(p+)", - "id": "5630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a black tip.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black dart(p+)", - "id": "5631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a mithril tip.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Mithril dart(p+)", - "id": "5632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with an adamantite tip.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Adamant dart(p+)", - "id": "5633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a rune tip.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Rune dart(p+)", - "id": "5634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a bronze tip.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze dart(s)", - "id": "5635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with an iron tip.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Iron dart(s)", - "id": "5636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a steel tip.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel dart(s)", - "id": "5637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a black tip.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black dart(s)", - "id": "5638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a mithril tip.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Mithril dart(s)", - "id": "5639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with an adamantite tip.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Adamant dart(s)", - "id": "5640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A deadly poisoned dart with a rune tip.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Rune dart(s)", - "id": "5641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze tipped javelin.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bronze javelin(p+)", - "id": "5642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron tipped javelin.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Iron javelin(p+)", - "id": "5643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel tipped javelin.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Steel javelin(p+)", - "id": "5644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 12, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril tipped javelin.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Mithril javelin(p+)", - "id": "5645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamantite tipped javelin.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Adamant javelin(p+)", - "id": "5646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 24, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune tipped javelin.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune javelin(p+)", - "id": "5647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 38, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze tipped javelin.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Bronze javelin(s)", - "id": "5648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron tipped javelin.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Iron javelin(s)", - "id": "5649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel tipped javelin.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Steel javelin(s)", - "id": "5650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril tipped javelin.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Mithril javelin(s)", - "id": "5651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 17, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamantite tipped javelin.", - "values": [ - { - "lowAlch": "160", - "highAlch": "0", - "shopValue": "160" - } - ], - "name": "Adamant javelin(s)", - "id": "5652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 24, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune tipped javelin.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Rune javelin(s)", - "id": "5653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 38, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze knife(p+)", - "id": "5654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron knife(p+)", - "id": "5655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel knife(p+)", - "id": "5656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Mithril knife(p+)", - "id": "5657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black knife(p+)", - "id": "5658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "66", - "highAlch": "0", - "shopValue": "66" - } - ], - "name": "Adamant knife(p+)", - "id": "5659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "166", - "highAlch": "0", - "shopValue": "166" - } - ], - "name": "Rune knife(p+)", - "id": "5660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze knife(s)", - "id": "5661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Iron knife(s)", - "id": "5662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Steel knife(s)", - "id": "5663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Mithril knife(s)", - "id": "5664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Black knife(s)", - "id": "5665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "66", - "highAlch": "0", - "shopValue": "66" - } - ], - "name": "Adamant knife(s)", - "id": "5666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A finely balanced throwing knife.", - "values": [ - { - "lowAlch": "166", - "highAlch": "0", - "shopValue": "166" - } - ], - "name": "Rune knife(s)", - "id": "5667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with poison.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Iron dagger(p+)", - "id": "5668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Iron dagger(p+)", - "id": "5669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze dagger(p+)", - "id": "5670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze dagger(p+)", - "id": "5671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade has been poisoned.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Steel dagger(p+)", - "id": "5672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Steel dagger(p+)", - "id": "5673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned Mithril dagger.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Mithril dagger(p+)", - "id": "5674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Mithril dagger(p+)", - "id": "5675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very dangerous poisoned dagger.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Adamant dagger(p+)", - "id": "5676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Adamant dagger(p+)", - "id": "5677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with a nasty poison.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Rune dagger(p+)", - "id": "5678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Rune dagger(p+)", - "id": "5679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "24000", - "highAlch": "0", - "shopValue": "24000" - } - ], - "name": "Dragon dagger(p+)", - "id": "5680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "24000", - "highAlch": "0", - "shopValue": "24000" - } - ], - "name": "Dragon dagger(p+)", - "id": "5681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Black dagger(p+)", - "id": "5682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Black dagger(p+)", - "id": "5683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with poison.", - "values": [ - { - "lowAlch": "565", - "highAlch": "0", - "shopValue": "565" - } - ], - "name": "Poisoned dagger(p+)", - "id": "5684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "565", - "highAlch": "0", - "shopValue": "565" - } - ], - "name": "Poisoned dagger(p+)", - "id": "5685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with poison.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Iron dagger(s)", - "id": "5686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Iron dagger(s)", - "id": "5687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze dagger(s)", - "id": "5688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Bronze dagger(s)", - "id": "5689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade has been poisoned.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Steel dagger(s)", - "id": "5690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Steel dagger(s)", - "id": "5691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned Mithril dagger.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Mithril dagger(s)", - "id": "5692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Mithril dagger(s)", - "id": "5693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very dangerous poisoned dagger.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Adamant dagger(s)", - "id": "5694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Adamant dagger(s)", - "id": "5695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with a nasty poison.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Rune dagger(s)", - "id": "5696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Rune dagger(s)", - "id": "5697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "40", - "shopValue": "14400" - } - ], - "name": "Dragon dagger(s)", - "id": "5698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 25, - "strengthBonus": 40, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 40, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "14400" - } - ], - "name": "Dragon dagger(s)", - "id": "5699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Black dagger(s)", - "id": "5700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "Black dagger(s)", - "id": "5701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The blade is covered with poison.", - "values": [ - { - "lowAlch": "565", - "highAlch": "0", - "shopValue": "565" - } - ], - "name": "Poisoned dagger(s)", - "id": "5702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "565", - "highAlch": "0", - "shopValue": "565" - } - ], - "name": "Poisoned dagger(s)", - "id": "5703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned bronze tipped spear.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Bronze spear(p+)", - "id": "5704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Bronze spear(p+)", - "id": "5705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned iron tipped spear.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Iron spear(p+)", - "id": "5706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Iron spear(p+)", - "id": "5707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned steel tipped spear.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Steel spear(p+)", - "id": "5708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Steel spear(p+)", - "id": "5709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned mithril tipped spear.", - "values": [ - { - "lowAlch": "845", - "highAlch": "0", - "shopValue": "845" - } - ], - "name": "Mithril spear(p+)", - "id": "5710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "845", - "highAlch": "0", - "shopValue": "845" - } - ], - "name": "Mithril spear(p+)", - "id": "5711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned adamantite tipped spear.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "0", - "shopValue": "2080" - } - ], - "name": "Adamant spear(p+)", - "id": "5712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "0", - "shopValue": "2080" - } - ], - "name": "Adamant spear(p+)", - "id": "5713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned rune tipped spear.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "0", - "shopValue": "20800" - } - ], - "name": "Rune spear(p+)", - "id": "5714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "0", - "shopValue": "20800" - } - ], - "name": "Rune spear(p+)", - "id": "5715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned dragon tipped spear.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "0", - "shopValue": "62400" - } - ], - "name": "Dragon spear(p+)", - "id": "5716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "0", - "shopValue": "62400" - } - ], - "name": "Dragon spear(p+)", - "id": "5717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned bronze tipped spear.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Bronze spear(s)", - "id": "5718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Bronze spear(s)", - "id": "5719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned iron tipped spear.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Iron spear(s)", - "id": "5720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Iron spear(s)", - "id": "5721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned steel tipped spear.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Steel spear(s)", - "id": "5722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Steel spear(s)", - "id": "5723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned mithril tipped spear.", - "values": [ - { - "lowAlch": "845", - "highAlch": "0", - "shopValue": "845" - } - ], - "name": "Mithril spear(s)", - "id": "5724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "845", - "highAlch": "0", - "shopValue": "845" - } - ], - "name": "Mithril spear(s)", - "id": "5725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned adamantite tipped spear.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "0", - "shopValue": "2080" - } - ], - "name": "Adamant spear(s)", - "id": "5726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2080", - "highAlch": "0", - "shopValue": "2080" - } - ], - "name": "Adamant spear(s)", - "id": "5727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned rune tipped spear.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "0", - "shopValue": "20800" - } - ], - "name": "Rune spear(s)", - "id": "5728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20800", - "highAlch": "0", - "shopValue": "20800" - } - ], - "name": "Rune spear(s)", - "id": "5729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned dragon tipped spear.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "55", - "shopValue": "62400" - } - ], - "name": "Dragon spear(s)", - "id": "5730", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": 55, - "strengthBonus": 60, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 55, - "defenceRange": 5, - "attackStab": 55, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "62400", - "highAlch": "0", - "shopValue": "62400" - } - ], - "name": "Dragon spear(s)", - "id": "5731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stool for milking", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stool", - "id": "5732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yuk!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten potato", - "id": "5733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned black tipped spear.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(p+)", - "id": "5734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(p+)", - "id": "5735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A poisoned black tipped spear.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(s)", - "id": "5736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Black spear(s)", - "id": "5737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slightly bluish leaf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woad leaf", - "id": "5738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Asgarnian Ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale(m)", - "id": "5739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale(m)", - "id": "5740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Mature wmb", - "id": "5741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Mature wmb", - "id": "5742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Greenman's Ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Greenman's ale(m)", - "id": "5743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Greenman's ale(m)", - "id": "5744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Dragon Bitter.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dragon bitter(m)", - "id": "5745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dragon bitter(m)", - "id": "5746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Dwarven Stout.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dwarven stout(m)", - "id": "5747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dwarven stout(m)", - "id": "5748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Moonlight Mead.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Moonlight mead(m)", - "id": "5749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Moonlight mead(m)", - "id": "5750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This might help me chop harder.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Axeman's folly", - "id": "5751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Axeman's folly", - "id": "5752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Axeman's Folly.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Axeman's folly(m)", - "id": "5753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Axeman's folly(m)", - "id": "5754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruity, full-bodied ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's delight", - "id": "5755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's delight", - "id": "5756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Chef's Delight.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's delight(m)", - "id": "5757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's delight(m)", - "id": "5758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ale with bite.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Slayer's respite", - "id": "5759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Slayer's respite", - "id": "5760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal Slayer's Respite.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Slayer's respite(m)", - "id": "5761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Slayer's respite(m)", - "id": "5762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of cider.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cider", - "id": "5763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cider", - "id": "5764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks a good deal stronger than normal cider.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Mature cider", - "id": "5765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Mature cider", - "id": "5766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot filled with ale yeast.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ale yeast", - "id": "5767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ale yeast", - "id": "5768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sliced and hollowed out to form a keg.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Calquat keg", - "id": "5769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Calquat keg", - "id": "5770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(1)", - "id": "5771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(1)", - "id": "5772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(2)", - "id": "5773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(2)", - "id": "5774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(3)", - "id": "5775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(3)", - "id": "5776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(4)", - "id": "5777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(4)", - "id": "5778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(1)", - "id": "5779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(1)", - "id": "5780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(2)", - "id": "5781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(2)", - "id": "5782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(3)", - "id": "5783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(3)", - "id": "5784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(4)", - "id": "5785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(4)", - "id": "5786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(1)", - "id": "5787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(1)", - "id": "5788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(2)", - "id": "5789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(2)", - "id": "5790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(3)", - "id": "5791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(3)", - "id": "5792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(4)", - "id": "5793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(4)", - "id": "5794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(1)", - "id": "5795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(1)", - "id": "5796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(2)", - "id": "5797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(2)", - "id": "5798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(3)", - "id": "5799", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(3)", - "id": "5800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(4)", - "id": "5801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(4)", - "id": "5802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(1)", - "id": "5803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(1)", - "id": "5804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(2)", - "id": "5805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(2)", - "id": "5806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(3)", - "id": "5807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(3)", - "id": "5808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(4)", - "id": "5809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(4)", - "id": "5810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(1)", - "id": "5811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(1)", - "id": "5812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(2)", - "id": "5813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(2)", - "id": "5814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(3)", - "id": "5815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(3)", - "id": "5816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(4)", - "id": "5817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonlight mead(4)", - "id": "5818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(1)", - "id": "5819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(1)", - "id": "5820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(2)", - "id": "5821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(2)", - "id": "5822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(3)", - "id": "5823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(3)", - "id": "5824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(4)", - "id": "5825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(4)", - "id": "5826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(1)", - "id": "5827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(1)", - "id": "5828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(2)", - "id": "5829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(2)", - "id": "5830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(3)", - "id": "5831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(3)", - "id": "5832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(4)", - "id": "5833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(4)", - "id": "5834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(1)", - "id": "5835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(1)", - "id": "5836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(2)", - "id": "5837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(2)", - "id": "5838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(3)", - "id": "5839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(3)", - "id": "5840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(4)", - "id": "5841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer's respite(4)", - "id": "5842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(1)", - "id": "5843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(1)", - "id": "5844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(2)", - "id": "5845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(2)", - "id": "5846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(3)", - "id": "5847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(3)", - "id": "5848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(4)", - "id": "5849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(4)", - "id": "5850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m1)", - "id": "5851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m1)", - "id": "5852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m2)", - "id": "5853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m2)", - "id": "5854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m3)", - "id": "5855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m3)", - "id": "5856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Dwarven Stout.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m4)", - "id": "5857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven stout(m4)", - "id": "5858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m1)", - "id": "5859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m1)", - "id": "5860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m2)", - "id": "5861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m2)", - "id": "5862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m3)", - "id": "5863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m3)", - "id": "5864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Asgarnian Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m4)", - "id": "5865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale(m4)", - "id": "5866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m1)", - "id": "5867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m1)", - "id": "5868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m2)", - "id": "5869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m2)", - "id": "5870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m3)", - "id": "5871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m3)", - "id": "5872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Greenmans Ale.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m4)", - "id": "5873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenmans ale(m4)", - "id": "5874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m1)", - "id": "5875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m1)", - "id": "5876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m2)", - "id": "5877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m2)", - "id": "5878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m3)", - "id": "5879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m3)", - "id": "5880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Wizards Mind Bomb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m4)", - "id": "5881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind bomb(m4)", - "id": "5882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m1)", - "id": "5883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m1)", - "id": "5884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m2)", - "id": "5885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m2)", - "id": "5886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m3)", - "id": "5887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m3)", - "id": "5888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Dragon Bitter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m4)", - "id": "5889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter(m4)", - "id": "5890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m1)", - "id": "5891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m1)", - "id": "5892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m2)", - "id": "5893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m2)", - "id": "5894", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m3)", - "id": "5895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m3)", - "id": "5896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Moonlight Mead.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m4)", - "id": "5897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'light mead(m4)", - "id": "5898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m1)", - "id": "5899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m1)", - "id": "5900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m2)", - "id": "5901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m2)", - "id": "5902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m3)", - "id": "5903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m3)", - "id": "5904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Axeman's Folly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m4)", - "id": "5905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axeman's folly(m4)", - "id": "5906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m1)", - "id": "5907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m1)", - "id": "5908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m2)", - "id": "5909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m2)", - "id": "5910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m3)", - "id": "5911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m3)", - "id": "5912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Chef's Delight.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m4)", - "id": "5913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight(m4)", - "id": "5914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m1)", - "id": "5915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m1)", - "id": "5916", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m2)", - "id": "5917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m2)", - "id": "5918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m3)", - "id": "5919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m3)", - "id": "5920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Slayer's Respite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m4)", - "id": "5921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer respite(m4)", - "id": "5922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 1 pint of mature Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m1)", - "id": "5923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m1)", - "id": "5924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 2 pints of mature Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m2)", - "id": "5925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m2)", - "id": "5926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 3 pints of mature Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m3)", - "id": "5927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m3)", - "id": "5928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This keg contains 4 pints of mature Cider.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m4)", - "id": "5929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider(m4)", - "id": "5930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can weave this to make sacks.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Jute fibre", - "id": "5931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Jute fibre", - "id": "5932", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A branch from a willow tree.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Willow branch", - "id": "5933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Willow branch", - "id": "5934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial filled with coconut milk", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coconut milk", - "id": "5935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of coconut milk and Cactus spine.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weapon poison+(unf)", - "id": "5936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of extra-strength weapon poison, for spears and daggers.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Weapon poison(p+)", - "id": "5937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Weapon poison(p+)", - "id": "5938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of coconut milk and Deadly Nightshade.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Weapon poison++(unf)", - "id": "5939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of super-strength weapon poison, for spears and daggers.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Weapon poison(s)", - "id": "5940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Weapon poison(s)", - "id": "5941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of coconut milk and Toadflax.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antipoison+(unf)", - "id": "5942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An extra-strong antipoision potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(4)", - "id": "5943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(4)", - "id": "5944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An extra-strong antipoision potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(3)", - "id": "5945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(3)", - "id": "5946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An extra-strong antipoision potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(2)", - "id": "5947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(2)", - "id": "5948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An extra-strong antipoision potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(1)", - "id": "5949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote+(1)", - "id": "5950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of coconut milk and Irit Leaf.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antipoison++(unf)", - "id": "5951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super-strong antipoison potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super-strong antipoison potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super-strong antipoison potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A super-strong antipoison potion.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote(s)", - "id": "5958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14", - "highAlch": "0", - "shopValue": "14" - } - ], - "name": "Antidote++(1)", - "id": "5959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with tomatoes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(1)", - "id": "5960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(1)", - "id": "5961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with tomatoes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(2)", - "id": "5962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(2)", - "id": "5963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with tomatoes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(3)", - "id": "5964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(3)", - "id": "5965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with tomatoes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(4)", - "id": "5966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(4)", - "id": "5967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruit basket filled with tomatoes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(5)", - "id": "5968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomatoes(5)", - "id": "5969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could make a spicy curry with this.", - "values": [ - { - "lowAlch": "19", - "highAlch": "0", - "shopValue": "19" - } - ], - "name": "Curry leaf", - "id": "5970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "19", - "highAlch": "0", - "shopValue": "19" - } - ], - "name": "Curry leaf", - "id": "5971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks delicious.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Papaya fruit", - "id": "5972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Papaya fruit", - "id": "5973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a coconut.", - "values": [ - { - "lowAlch": "87", - "highAlch": "0", - "shopValue": "87" - } - ], - "name": "Coconut", - "id": "5974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "87", - "highAlch": "0", - "shopValue": "87" - } - ], - "name": "Coconut", - "id": "5975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a coconut.", - "values": [ - { - "lowAlch": "87", - "highAlch": "0", - "shopValue": "87" - } - ], - "name": "Coconut", - "id": "5976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "87", - "highAlch": "0", - "shopValue": "87" - } - ], - "name": "Coconut", - "id": "5977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All the milk has been removed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coconut shell", - "id": "5978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coconut shell", - "id": "5979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This is the largest fruit I've ever seen.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Calquat fruit", - "id": "5980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Calquat fruit", - "id": "5981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A juicy watermelon.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Watermelon", - "id": "5982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "48", - "highAlch": "0", - "shopValue": "48" - } - ], - "name": "Watermelon", - "id": "5983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slice of watermelon.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Watermelon slice", - "id": "5984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "16", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Watermelon slice", - "id": "5985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Raw sweetcorn.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Sweetcorn", - "id": "5986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Sweetcorn", - "id": "5987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Delicious cooked sweetcorn.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Sweetcorn", - "id": "5988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Sweetcorn", - "id": "5989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sweetcorn has been cooked for too long.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt sweetcorn", - "id": "5990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt sweetcorn", - "id": "5991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bucket of apple mush.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Apple mush", - "id": "5992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Apple mush", - "id": "5993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Hammerstone Hops.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Hammerstone hops", - "id": "5994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Hammerstone hops", - "id": "5995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Asgarnian Hops.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Asgarnian hops", - "id": "5996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Asgarnian hops", - "id": "5997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Yanillian Hops.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Yanillian hops", - "id": "5998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Yanillian hops", - "id": "5999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Krandorian Hops.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Krandorian hops", - "id": "6000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Krandorian hops", - "id": "6001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Wildblood Hops.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wildblood hops", - "id": "6002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wildblood hops", - "id": "6003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Bittercap Mushroom", - "values": [ - { - "lowAlch": "38", - "highAlch": "0", - "shopValue": "38" - } - ], - "name": "Mushroom", - "id": "6004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "38", - "highAlch": "0", - "shopValue": "38" - } - ], - "name": "Mushroom", - "id": "6005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Barley.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Barley", - "id": "6006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Barley", - "id": "6007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of barley malt.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Barley malt", - "id": "6008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Barley malt", - "id": "6009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bunch of marigolds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marigolds", - "id": "6010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marigolds", - "id": "6011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bunch of nasturtiums.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nasturtiums", - "id": "6012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Nasturtiums", - "id": "6013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some rosemary.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Rosemary", - "id": "6014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Rosemary", - "id": "6015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Don't prick yourself with this.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cactus spine", - "id": "6016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cactus spine", - "id": "6017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They look sweet and juicy, but only a fool would eat them.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Poisonivy berries", - "id": "6018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "65", - "highAlch": "0", - "shopValue": "65" - } - ], - "name": "Poisonivy berries", - "id": "6019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of leaves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of Oak tree leaves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of Willow tree leaves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of Yew tree leaves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of Maple tree leaves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of Magic tree leaves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leaves", - "id": "6031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for plants, helps them grow.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Compost", - "id": "6032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Compost", - "id": "6033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Super-good for the smallest or largest of plants.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Super compost", - "id": "6034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Super compost", - "id": "6035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Use this on plants to cure disease.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Plant cure", - "id": "6036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Plant cure", - "id": "6037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could use this to make jewellery.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic string", - "id": "6038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic string", - "id": "6039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An Amulet of Nature.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Amulet of nature", - "id": "6040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This amulet has been strung with the root of a Magic Tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald amulet", - "id": "6041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald amulet", - "id": "6042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The roots of the Oak tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak roots", - "id": "6043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak roots", - "id": "6044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The roots of the Willow tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow roots", - "id": "6045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow roots", - "id": "6046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The roots of the Maple tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple roots", - "id": "6047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple roots", - "id": "6048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The roots of the Yew tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew roots", - "id": "6049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew roots", - "id": "6050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The roots of the Magic tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic roots", - "id": "6051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic roots", - "id": "6052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The roots of the Spirit tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit roots", - "id": "6053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit roots", - "id": "6054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of weeds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weeds", - "id": "6055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weeds", - "id": "6056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sack filled with hay.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hay sack", - "id": "6057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sack of hay has a bronze spear sticking through it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hay sack", - "id": "6058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This should scare the birds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scarecrow", - "id": "6059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stool", - "id": "6060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vicious poisoned bolts.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Bolts(p+)", - "id": "6061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Vicious poisoned bolts.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Bolts(s)", - "id": "6062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Spirit Tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spirit tree", - "id": "6063", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "How do I wash blood stains out?", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Bloody mourner top", - "id": "6064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A thick heavy leather top.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Mourner top", - "id": "6065", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These are in need of a good tailor.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Mourner trousers", - "id": "6066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of mourner trousers.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Mourner trousers", - "id": "6067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Mourner gloves", - "id": "6068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Comfortable leather boots.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Mourner boots", - "id": "6069", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dull brown cape.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Mourner cloak", - "id": "6070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A letter of recommendation.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mourner letter", - "id": "6071", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bar of soap taken from Tegid.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Tegid's soap", - "id": "6072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on the history of Prifddinas.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Prifddinas' history", - "id": "6073", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Prifddinas' history", - "id": "6074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on the exploration of the eastern realm.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Eastern discovery", - "id": "6075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Eastern discovery", - "id": "6076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book on the settlement of the eastern realm.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Eastern settlement", - "id": "6077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Eastern settlement", - "id": "6078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book about the great divide.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "The great divide", - "id": "6079", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "The great divide", - "id": "6080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A strange broken device of gnomic design.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Broken device", - "id": "6081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A device for firing dye.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Fixed device", - "id": "6082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This key has seen a lot of use.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tarnished key", - "id": "6083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This key has seen a lot of use.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worn key", - "id": "6084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows filled with red dye.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Red dye bellows", - "id": "6085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows filled with blue dye.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Blue dye bellows", - "id": "6086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows filled with yellow dye.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Yellow dye bellows", - "id": "6087", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pair of ogre bellows filled with green dye.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Green dye bellows", - "id": "6088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blue dye filled toad.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue toad", - "id": "6089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red dye filled toad.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red toad", - "id": "6090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yellow dye filled toad.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow toad", - "id": "6091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A green dye filled toad.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green toad", - "id": "6092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of rotten apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rotten apples", - "id": "6093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of mushed apples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Apple barrel", - "id": "6094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of rotten apples and naphtha.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Naphtha apple mix", - "id": "6095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A barrel full of toxic naphtha.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toxic naphtha", - "id": "6096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a sieve.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Sieve", - "id": "6097", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pile of toxic powder.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Toxic powder", - "id": "6098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny crystal enchanted to return the user to Lletya.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Teleport crystal (4)", - "id": "6099", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny crystal enchanted to return the user to Lletya.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Teleport crystal (3)", - "id": "6100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny crystal enchanted to return the user to Lletya.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Teleport crystal (2)", - "id": "6101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny crystal enchanted to return the user to Lletya.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Teleport crystal (1)", - "id": "6102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny Elf crystal, I need to have this re-enchanted.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tiny elf crystal", - "id": "6103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This key is newly cut.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "New key", - "id": "6104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the fair elven folk.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elf", - "id": "6105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They seem to be not quite of this world...", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ghostly boots", - "id": "6106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "A particularly spooky robe top.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ghostly robetop", - "id": "6107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 5 - } - ] - }, - { - "examine": "An unearthly set of robe bottoms.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ghostly bottoms", - "id": "6108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A ghostly hood, fit for a ghostly head.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ghostly hood", - "id": "6109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "They seem to fade in and out of existence...", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Ghostly gloves", - "id": "6110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Made of a strange ghostly material...", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Ghostly cloak", - "id": "6111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Kelda hop seeds can only be grown underground!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Kelda seed", - "id": "6112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of Kelda Hops.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Kelda hops", - "id": "6113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pint of bluish beer.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Kelda stout", - "id": "6118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a strange yellow marking on this stone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Square stone", - "id": "6119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a strange green marking on this stone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Square stone", - "id": "6120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A letter addressed to Elstan of Falador.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Letter", - "id": "6121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For sitting on.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A chair", - "id": "6122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For drinking... if it were filled.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beer glass", - "id": "6123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coconut milk", - "id": "6124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This will teleport me to Rellekka when I play it.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Enchanted lyre(2)", - "id": "6125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This will teleport me to Rellekka when I play it.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Enchanted lyre(3)", - "id": "6126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This will teleport me to Rellekka when I play it.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Enchanted lyre(4)", - "id": "6127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Protective headwear made from crabs. Better than that sounds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rock-shell helm", - "id": "6128", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": -1 - } - ] - }, - { - "examine": "A sturdy body armour made from rock crab pieces.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rock-shell plate", - "id": "6129", - "bonuses": [ - { - "defenceCrush": 72, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 80, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 80, - "attackStab": 0, - "defenceStab": 82, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Some tough leggings made from rock crab parts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rock-shell legs", - "id": "6130", - "bonuses": [ - { - "defenceCrush": 47, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 49, - "attackMagic": -21, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 49, - "attackStab": 0, - "defenceStab": 51, - "defenceMagic": -4 - } - ] - }, - { - "examine": "A helm fit for any Fremennik ranger.", - "values": [ - { - "lowAlch": "60000", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Spined helm", - "id": "6131", - "bonuses": [ - { - "defenceCrush": -6, - "attackRange": 6, - "attackSlash": -6, - "strengthBonus": 0, - "defenceSlash": 6, - "attackMagic": -6, - "prayerBonus": 0, - "attackCrush": -6, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60000", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Spined helm", - "id": "6132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A constant reminder that I'm above a Dagannoth in the food chain.", - "values": [ - { - "lowAlch": "7800", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Spined body", - "id": "6133", - "bonuses": [ - { - "defenceCrush": 45, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 40, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7800", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "Spined body", - "id": "6134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stylish leg armour for rangers with a lingering smell of raw fish...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "Spined chaps", - "id": "6135", - "bonuses": [ - { - "defenceCrush": 24, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 16, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "Spined chaps", - "id": "6136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Make your foes cower by wearing a skull as a helmet!", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Skeletal helm", - "id": "6137", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10000", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Skeletal helm", - "id": "6138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The bones in this armour seem to vibrate with a magical quality...", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Skeletal top", - "id": "6139", - "bonuses": [ - { - "defenceCrush": 42, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": 8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 35, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Skeletal top", - "id": "6140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A superior set of strengthened slacks for any self respecting seer.", - "values": [ - { - "lowAlch": "40000", - "highAlch": "0", - "shopValue": "40000" - } - ], - "name": "Skeletal bottoms", - "id": "6141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 20, - "attackSlash": 6, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": -7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 24, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40000", - "highAlch": "0", - "shopValue": "40000" - } - ], - "name": "Skeletal bottoms", - "id": "6142", - "bonuses": [ - { - "defenceCrush": 24, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Some finely crafted Fremennik boots, made from spined dagannoth hide.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Spined boots", - "id": "6143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Spined boots", - "id": "6144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some Fremennik boots, made from the shards of a rock crabs' shell.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Rock-shell boots", - "id": "6145", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item-shell boots.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Rock-shell boots", - "id": "6146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some finely crafted Fremennik boots, made from the bones of a wallasalki.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Skeletal boots", - "id": "6147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Skeletal boots", - "id": "6148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fremennik gloves stitched together from spined dagannoth hide.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Spined gloves", - "id": "6149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Spined gloves", - "id": "6150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fremennik gloves stitched together from rock crab shell shards.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Rock-shell gloves", - "id": "6151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 2, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 1, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item-shell gloves.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Rock-shell gloves", - "id": "6152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fremennik gloves stitched together from wallasalki bones fragments.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Skeletal gloves", - "id": "6153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "650", - "highAlch": "0", - "shopValue": "650" - } - ], - "name": "Skeletal gloves", - "id": "6154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sturdy piece of dagannoth hide.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Dagannoth hide", - "id": "6155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Dagannoth hide", - "id": "6156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spherical chunk of rock-shell.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Rock-shell chunk", - "id": "6157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Rock-shell chunk", - "id": "6158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A curved piece of rock-shell.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Rock-shell shard", - "id": "6159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Rock-shell shard", - "id": "6160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slim piece of rock-shell.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Rock-shell splinter", - "id": "6161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Rock-shell splinter", - "id": "6162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fearsome looking skull.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Skull piece", - "id": "6163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Skull piece", - "id": "6164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slightly damaged ribcage.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Ribcage piece", - "id": "6165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Ribcage piece", - "id": "6166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An interesting looking bone shard.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Fibula piece", - "id": "6167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Fibula piece", - "id": "6168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A toughened chunk of dagannoth hide.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Circular hide", - "id": "6169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Circular hide", - "id": "6170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tattered chunk of dagannoth hide.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Flattened hide", - "id": "6171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Flattened hide", - "id": "6172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A weathered chunk of dagannoth hide.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Stretched hide", - "id": "6173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Stretched hide", - "id": "6174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rock-shell helm", - "id": "6175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "39000" - } - ], - "name": "Rock-shell plate", - "id": "6176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "38400" - } - ], - "name": "Rock-shell legs", - "id": "6177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Raw pheasant", - "id": "6178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to cook this first.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Raw pheasant", - "id": "6179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A leather strapped top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lederhosen top", - "id": "6180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Brown leather shorts with bright white socks?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lederhosen shorts", - "id": "6181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A hat with a goat's hair attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lederhosen hat", - "id": "6182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this at the Varrock clothes shop.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frog token", - "id": "6183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very posh!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prince tunic", - "id": "6184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very posh!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prince leggings", - "id": "6185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very posh!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Princess blouse", - "id": "6186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very posh!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Princess skirt", - "id": "6187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Now that's just silly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Frog mask", - "id": "6188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oooh, I wonder what could be inside?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mystery box", - "id": "6199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A raw... fish? Is this a fish??", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw fishlike thing", - "id": "6200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The portable version.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishmonger", - "id": "6201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a fishlike thing that appears to already be cooked. It looks disgusting.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishlike thing", - "id": "6202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Goes up and down, up and down. Like a rabbit.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sine wave", - "id": "6203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A raw... fish? Is this a fish??", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw fishlike thing", - "id": "6204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Kills people.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "9mm revolver", - "id": "6205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a fishlike thing that appears to already be cooked. It looks disgusting.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishlike thing", - "id": "6206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Talk to da brick, cos da head's got no brain.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mobile phone", - "id": "6207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an amulet of Man speak. It makes vague grunting noises.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Man speak amulet", - "id": "6208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for catching small fish.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Small fishing net", - "id": "6209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not to be patronised!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sphinx baby", - "id": "6210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Teak logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Teak pyre logs", - "id": "6211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Teak pyre logs", - "id": "6212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mahogany logs prepared with sacred oil for a funeral pyre.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Mahogany pyre log", - "id": "6213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Mahogany pyre log", - "id": "6214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (10)", - "id": "6215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (10)", - "id": "6216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "2750", - "highAlch": "0", - "shopValue": "2750" - } - ], - "name": "Broodoo shield (9)", - "id": "6217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2750", - "highAlch": "0", - "shopValue": "2750" - } - ], - "name": "Broodoo shield (9)", - "id": "6218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (8)", - "id": "6219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (8)", - "id": "6220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (7)", - "id": "6221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (7)", - "id": "6222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (6)", - "id": "6223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (6)", - "id": "6224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (5)", - "id": "6225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (5)", - "id": "6226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (4)", - "id": "6227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (4)", - "id": "6228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (3)", - "id": "6229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (3)", - "id": "6230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (2)", - "id": "6231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (2)", - "id": "6232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (1)", - "id": "6233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (1)", - "id": "6234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield", - "id": "6235", - "bonuses": [ - { - "defenceCrush": 15, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 10, - "attackMagic": 3, - "prayerBonus": 5, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 10, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield", - "id": "6236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (4)", - "id": "6249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (4)", - "id": "6250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (3)", - "id": "6251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (3)", - "id": "6252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (2)", - "id": "6253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (2)", - "id": "6254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (1)", - "id": "6255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (1)", - "id": "6256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield", - "id": "6257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield", - "id": "6258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (10)", - "id": "6259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (10)", - "id": "6260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (9)", - "id": "6261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (9)", - "id": "6262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (8)", - "id": "6263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (8)", - "id": "6264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (7)", - "id": "6265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (7)", - "id": "6266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (6)", - "id": "6267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (6)", - "id": "6268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (5)", - "id": "6269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (5)", - "id": "6270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (4)", - "id": "6271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (4)", - "id": "6272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (3)", - "id": "6273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (3)", - "id": "6274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (2)", - "id": "6275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (2)", - "id": "6276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (1)", - "id": "6277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield (1)", - "id": "6278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A scary broodoo shield.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield", - "id": "6279", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Broodoo shield", - "id": "6280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden pole for use in primitive construction.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Thatch spar light", - "id": "6281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Thatch spar light", - "id": "6282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden pole for use in primitive construction.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Thatch spar med", - "id": "6283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Thatch spar med", - "id": "6284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden pole for use in primitive construction.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Thatch spar dense", - "id": "6285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Thatch spar dense", - "id": "6286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Scaly but not slimy!", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Snake hide", - "id": "6287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Snake hide", - "id": "6288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Scaly but not slimy!", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Snakeskin", - "id": "6289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Snakeskin", - "id": "6290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Its creeping days are over!", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Spider carcass", - "id": "6291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Spider carcass", - "id": "6292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A raw spider threaded onto a skewer stick.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Spider on stick", - "id": "6293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Spider on stick", - "id": "6294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A raw spider threaded onto an arrow shaft.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Spider on shaft", - "id": "6295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Spider on shaft", - "id": "6296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nicely roasted spider threaded onto a skewer stick.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Spider on stick", - "id": "6297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Spider on stick", - "id": "6298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nicely roasted spider threaded onto an arrow shaft.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Spider on shaft", - "id": "6299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Spider on shaft", - "id": "6300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A badly burnt spider threaded onto a charred skewer stick.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt spider", - "id": "6301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt spider", - "id": "6302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A badly burnt spider threaded onto a charred arrow shaft.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spider on shaft", - "id": "6303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spider on shaft", - "id": "6304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sharp pointed stick, quite resistant to fire.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Skewer stick", - "id": "6305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Karamja currency.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trading sticks", - "id": "6306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Plant this in a herb patch to grow Goutweed.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Gout tuber", - "id": "6311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Gout tuber", - "id": "6312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jungle specific slashing device.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Opal machete", - "id": "6313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Opal machete", - "id": "6314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jungle specific slashing device.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Jade machete", - "id": "6315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Jade machete", - "id": "6316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A jungle specific slashing device.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Red topaz machete", - "id": "6317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Red topaz machete", - "id": "6318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A giant mosquito's proboscis, aerodynamic and sharp!", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Proboscis", - "id": "6319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real snakeskin.", - "values": [ - { - "lowAlch": "1250", - "highAlch": "0", - "shopValue": "1250" - } - ], - "name": "Snakeskin body", - "id": "6322", - "bonuses": [ - { - "defenceCrush": 32, - "attackRange": 12, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 38, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 35, - "attackStab": 0, - "defenceStab": 25, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1250", - "highAlch": "0", - "shopValue": "1250" - } - ], - "name": "Snakeskin body", - "id": "6323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real snake.", - "values": [ - { - "lowAlch": "1175", - "highAlch": "0", - "shopValue": "1175" - } - ], - "name": "Snakeskin chaps", - "id": "6324", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": 6, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 8, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 10, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1175", - "highAlch": "0", - "shopValue": "1175" - } - ], - "name": "Snakeskin chaps", - "id": "6325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lightweight head protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Snakeskin bandana", - "id": "6326", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 4, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 2, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "180" - } - ], - "name": "Snakeskin bandana", - "id": "6327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from snakes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Snakeskin boots", - "id": "6328", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 3, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Snakeskin boots", - "id": "6329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real snake.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "260" - } - ], - "name": "Snakeskin v'brace", - "id": "6330", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 6, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": -5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "260" - } - ], - "name": "Snakeskin v'brace", - "id": "6331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some rare mahogany logs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Mahogany logs", - "id": "6332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some rare teak logs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak logs", - "id": "6333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak logs", - "id": "6334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ceremonial wooden mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Tribal mask", - "id": "6335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Tribal mask", - "id": "6336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ceremonial wooden mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Tribal mask", - "id": "6337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Tribal mask", - "id": "6338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ceremonial wooden mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Tribal mask", - "id": "6339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Tribal mask", - "id": "6340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Local dress.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured robe prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured hat prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brown armband, as worn by the Tai Bwo Wannai locals.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured pair of local sandals.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Local dress.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured robe prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured hat prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured pair of local sandals.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A light blue armband, as worn by the Tai Bwo Wannai locals.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Local dress.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured robe prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured hat prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured pair of local sandals.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dark blue armband, as worn by the Tai Bwo Wannai locals.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Local dress.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Tribal top", - "id": "6372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured robe prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Villager robe", - "id": "6374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured hat prized by the Tai Bwo Wannai peoples.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Villager hat", - "id": "6376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A brightly coloured pair of local sandals.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Villager sandals", - "id": "6378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A white armband, as worn by the Tai Bwo Wannai locals.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Villager armband", - "id": "6380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Suitable for children.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tax relief", - "id": "6381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Fez hat. Juss like that.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Fez", - "id": "6382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Fez", - "id": "6383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bit itchy.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Desert top", - "id": "6384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Desert top", - "id": "6385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Has a coarse hard wearing texture.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Desert robes", - "id": "6386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Desert robes", - "id": "6387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for those cold desert nights.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Desert top", - "id": "6388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Desert top", - "id": "6389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Better than factor 50 sun cream.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Desert legs", - "id": "6390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Desert legs", - "id": "6391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for keeping the sun off my neck.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Menap headgear", - "id": "6392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Menap headgear", - "id": "6393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Colourful.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menaphite top", - "id": "6394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menaphite top", - "id": "6395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool light Menaphite robe.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Menaphite robe", - "id": "6396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Menaphite robe", - "id": "6397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Look at those nobbily knees.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menap action kilt", - "id": "6398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menap action kilt", - "id": "6399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for keeping the sun off my neck.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Menap headgear", - "id": "6400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Menap headgear", - "id": "6401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Colourful.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menaphite top", - "id": "6402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menaphite top", - "id": "6403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool light Menaphite robe.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Menaphite robe", - "id": "6404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Menaphite robe", - "id": "6405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Look at those nobbily knees.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menap action kilt", - "id": "6406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Menap action kilt", - "id": "6407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An assault blackjack.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Oak blackjack(a)", - "id": "6408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Oak blackjack(a)", - "id": "6409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defensive blackjack.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Oak blackjack(d)", - "id": "6410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Oak blackjack(d)", - "id": "6411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An assault blackjack.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Willow blackjack(a)", - "id": "6412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Willow blackjack(a)", - "id": "6413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defensive blackjack.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Willow blackjack(d)", - "id": "6414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Willow blackjack(d)", - "id": "6415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A solid bit of maple.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Maple blackjack", - "id": "6416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Maple blackjack", - "id": "6417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An assault blackjack.", - "values": [ - { - "lowAlch": "1600", - "highAlch": "0", - "shopValue": "1600" - } - ], - "name": "Maple blackjack(a)", - "id": "6418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1600", - "highAlch": "0", - "shopValue": "1600" - } - ], - "name": "Maple blackjack(a)", - "id": "6419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defensive blackjack.", - "values": [ - { - "lowAlch": "1600", - "highAlch": "0", - "shopValue": "1600" - } - ], - "name": "Maple blackjack(d)", - "id": "6420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1600", - "highAlch": "0", - "shopValue": "1600" - } - ], - "name": "Maple blackjack(d)", - "id": "6421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Air rune", - "id": "6422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Air rune", - "id": "6423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Water rune", - "id": "6424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Water rune", - "id": "6425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Earth rune", - "id": "6426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Earth rune", - "id": "6427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire rune", - "id": "6428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire rune", - "id": "6429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for low level missile spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chaos rune", - "id": "6430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chaos rune", - "id": "6431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for medium level missile spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Death rune", - "id": "6432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Death rune", - "id": "6433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for teleport spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Law rune", - "id": "6434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Law rune", - "id": "6435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for basic level missile spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind rune", - "id": "6436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind rune", - "id": "6437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for curse spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Body rune", - "id": "6438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Body rune", - "id": "6439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spadeful of refined coal.", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Spadeful of coke", - "id": "6448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "6450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "6452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A white rosebush seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White rose seed", - "id": "6453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red rosebush seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red rose seed", - "id": "6454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pink rosebush seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pink rose seed", - "id": "6455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A grapevine seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vine seed", - "id": "6456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A delphinium seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Delphinium seed", - "id": "6457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pink orchid seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orchid seed", - "id": "6458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yellow orchid seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orchid seed", - "id": "6459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A snowdrop seed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snowdrop seed", - "id": "6460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoot that has been cut from a dying White Tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White tree shoot", - "id": "6461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shoot that has been cut from a dying White Tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White tree shoot", - "id": "6462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This shoot from a White Tree has been watered and will soon grow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White tree shoot", - "id": "6463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A young White Tree sapling.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White tree sapling", - "id": "6464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The power within this ring has been unlocked.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ring of charos(u)", - "id": "6465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rune essence chip that has been broken into shards.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune shards", - "id": "6466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Crushed rune essence.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune dust", - "id": "6467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This plant cure emits potency.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant cure", - "id": "6468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks delicious.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White tree fruit", - "id": "6469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pour this on compost to turn it into super-compost.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Compost potion(4)", - "id": "6470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "120", - "highAlch": "0", - "shopValue": "120" - } - ], - "name": "Compost potion(4)", - "id": "6471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pour this on compost to turn it into super-compost.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Compost potion(3)", - "id": "6472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Compost potion(3)", - "id": "6473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pour this on compost to turn it into super-compost.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Compost potion(2)", - "id": "6474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Compost potion(2)", - "id": "6475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pour this on compost to turn it into super-compost.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Compost potion(1)", - "id": "6476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Compost potion(1)", - "id": "6477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can use this to move heavy objects.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trolley", - "id": "6478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A list of things that I must collect for Queen Ellamaria.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "List", - "id": "6479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to jump, swing or use monkey bars.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility jump", - "id": "6514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to balance using the agility skill.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility balance", - "id": "6515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to squeeze your body through small areas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility contortion", - "id": "6516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to climb surfaces.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility climb", - "id": "6517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to jump, swing or use monkey bars.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility jump", - "id": "6518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to balance using the agility skill.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility balance", - "id": "6519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to squeeze your body through small areas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility contortion", - "id": "6520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ability to climb surfaces.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility climb", - "id": "6521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp ring of obsidian.", - "values": [ - { - "lowAlch": "250", - "highAlch": "0", - "shopValue": "250" - } - ], - "name": "Toktz-xil-ul", - "id": "6522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 69, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword of obsidian.", - "values": [ - { - "lowAlch": "40000", - "highAlch": "47", - "shopValue": "40000" - } - ], - "name": "Toktz-xil-ak", - "id": "6523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 38, - "strengthBonus": 49, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 47, - "defenceStab": 2, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiked shield of obsidian.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Toktz-ket-xil", - "id": "6524", - "bonuses": [ - { - "defenceCrush": 38, - "attackRange": -8, - "attackSlash": 0, - "strengthBonus": 5, - "defenceSlash": 42, - "attackMagic": -12, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 65, - "attackStab": 0, - "defenceStab": 40, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large knife of obsidian.", - "values": [ - { - "lowAlch": "25000", - "highAlch": "16", - "shopValue": "25000" - } - ], - "name": "Toktz-xil-ek", - "id": "6525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 48, - "strengthBonus": 39, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 16, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A staff of obsidian.", - "values": [ - { - "lowAlch": "35000", - "highAlch": "15", - "shopValue": "35000" - } - ], - "name": "Toktz-mej-tal", - "id": "6526", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 55, - "defenceSlash": 15, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 55, - "defenceRange": 0, - "attackStab": 15, - "defenceStab": 10, - "defenceMagic": 15 - } - ] - }, - { - "examine": "A mace of obsidian.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "18000" - } - ], - "name": "Tzhaar-ket-em", - "id": "6527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 56, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 62, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A maul of obsidian.", - "values": [ - { - "lowAlch": "50000", - "highAlch": "0", - "shopValue": "50000" - } - ], - "name": "Tzhaar-ket-om", - "id": "6528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 85, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 80, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a token of some kind made from obsidian.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tokkul", - "id": "6529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40000", - "highAlch": "0", - "shopValue": "40000" - } - ], - "name": "Toktz-xil-ak", - "id": "6535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Toktz-ket-xil", - "id": "6536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25000", - "highAlch": "0", - "shopValue": "25000" - } - ], - "name": "Toktz-xil-ek", - "id": "6537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35000", - "highAlch": "0", - "shopValue": "35000" - } - ], - "name": "Toktz-mej-tal", - "id": "6538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "18000" - } - ], - "name": "Tzhaar-ket-em", - "id": "6539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50000", - "highAlch": "0", - "shopValue": "50000" - } - ], - "name": "Tzhaar-ket-om", - "id": "6540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An Advanced Combat Training Device.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mouse toy", - "id": "6541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Thanks for all your help! Love, Bob & Neite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Present", - "id": "6542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what happens if I rub it...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical Lamp", - "id": "6543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's an amulet of cat speak. It makes vague purring noises.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Catspeak amulet(e)", - "id": "6544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A list of chores that Bob gave you to do.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chores", - "id": "6545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It says on the back 'My favourite recipe.'", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Recipe", - "id": "6546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mirror helps reflect light on the subject.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Doctors hat", - "id": "6547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nurses hat, but does it have healing powers?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nurse hat", - "id": "6548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lethargic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy cat", - "id": "6549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lethargic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy cat", - "id": "6550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lethargic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy cat", - "id": "6551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lethargic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy cat", - "id": "6552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lethargic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy cat", - "id": "6553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lethargic.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy cat", - "id": "6554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wild.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily cat", - "id": "6555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wild.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily cat", - "id": "6556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wild.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily cat", - "id": "6557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wild.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily cat", - "id": "6558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wild.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily cat", - "id": "6559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Wild.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily cat", - "id": "6560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks nice.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ahab's beer", - "id": "6561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "17000", - "highAlch": "0", - "shopValue": "17000" - } - ], - "name": "Mud battlestaff", - "id": "6562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a slightly magical stick.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Mystic mud staff", - "id": "6563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onyx ring", - "id": "6564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onyx necklace", - "id": "6565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onyx amulet", - "id": "6566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cape of woven obsidian plates.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "36000" - } - ], - "name": "Obsidian cape", - "id": "6568", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "36000" - } - ], - "name": "Obsidian cape", - "id": "6569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cape of fire.", - "values": [ - { - "lowAlch": "60000", - "highAlch": "1", - "shopValue": "60000" - } - ], - "name": "Fire cape", - "id": "6570", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": 1, - "attackSlash": 1, - "strengthBonus": 4, - "defenceSlash": 11, - "attackMagic": 1, - "prayerBonus": 2, - "attackCrush": 1, - "defenceRange": 11, - "attackStab": 1, - "defenceStab": 11, - "defenceMagic": 11 - } - ] - }, - { - "examine": "This would be worth more cut.", - "values": [ - { - "lowAlch": "200000", - "highAlch": "0", - "shopValue": "200000" - } - ], - "name": "Uncut onyx", - "id": "6571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200000", - "highAlch": "0", - "shopValue": "200000" - } - ], - "name": "Uncut onyx", - "id": "6572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "200000", - "highAlch": "0", - "shopValue": "200000" - } - ], - "name": "Onyx", - "id": "6573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200000", - "highAlch": "0", - "shopValue": "200000" - } - ], - "name": "Onyx", - "id": "6574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A valuable ring.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx ring", - "id": "6575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx ring", - "id": "6576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if this is valuable.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx necklace", - "id": "6577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx necklace", - "id": "6578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It needs a string so I can wear it.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx amulet", - "id": "6579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx amulet", - "id": "6580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder if I can get this enchanted.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx amulet", - "id": "6581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "201000", - "highAlch": "0", - "shopValue": "201000" - } - ], - "name": "Onyx amulet", - "id": "6582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An enchanted ring.", - "values": [ - { - "lowAlch": "202000", - "highAlch": "0", - "shopValue": "202000" - } - ], - "name": "Ring of stone", - "id": "6583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "202000", - "highAlch": "0", - "shopValue": "202000" - } - ], - "name": "Ring of stone", - "id": "6584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very powerful onyx amulet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "10", - "shopValue": "121200" - } - ], - "name": "Amulet of fury", - "id": "6585", - "bonuses": [ - { - "defenceCrush": 15, - "attackRange": 10, - "attackSlash": 10, - "strengthBonus": 8, - "defenceSlash": 15, - "attackMagic": 10, - "prayerBonus": 5, - "attackCrush": 10, - "defenceRange": 15, - "attackStab": 10, - "defenceStab": 15, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "121200" - } - ], - "name": "Amulet of fury", - "id": "6586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A set of fighting claws.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "White claws", - "id": "6587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "360", - "highAlch": "0", - "shopValue": "360" - } - ], - "name": "White claws", - "id": "6588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious looking axe.", - "values": [ - { - "lowAlch": "1248", - "highAlch": "-2", - "shopValue": "1248" - } - ], - "name": "White battleaxe", - "id": "6589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 24, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 15, - "defenceRange": -1, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1248", - "highAlch": "0", - "shopValue": "1248" - } - ], - "name": "White battleaxe", - "id": "6590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious white dagger.", - "values": [ - { - "lowAlch": "240", - "highAlch": "10", - "shopValue": "240" - } - ], - "name": "White dagger", - "id": "6591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 5, - "strengthBonus": 7, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 1, - "attackCrush": -4, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger", - "id": "6592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger(p)", - "id": "6593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger(p)", - "id": "6594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger(p+)", - "id": "6595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger(p+)", - "id": "6596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This dagger is poisoned.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger(s)", - "id": "6597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "240", - "highAlch": "0", - "shopValue": "240" - } - ], - "name": "White dagger(s)", - "id": "6598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A white halberd.", - "values": [ - { - "lowAlch": "1920", - "highAlch": "19", - "shopValue": "1920" - } - ], - "name": "White halberd", - "id": "6599", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 25, - "strengthBonus": 20, - "defenceSlash": 2, - "attackMagic": -4, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 19, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1920", - "highAlch": "19", - "shopValue": "1920" - } - ], - "name": "White halberd", - "id": "6600", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 25, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 19, - "defenceStab": -1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spiky mace.", - "values": [ - { - "lowAlch": "432", - "highAlch": "8", - "shopValue": "432" - } - ], - "name": "White mace", - "id": "6601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -2, - "strengthBonus": 13, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 16, - "defenceRange": 0, - "attackStab": 8, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "432", - "highAlch": "0", - "shopValue": "432" - } - ], - "name": "White mace", - "id": "6602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Magical staff.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Magic staff", - "id": "6603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Magic staff", - "id": "6604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp sword.", - "values": [ - { - "lowAlch": "624", - "highAlch": "14", - "shopValue": "624" - } - ], - "name": "White sword", - "id": "6605", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 10, - "strengthBonus": 12, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 14, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "624", - "highAlch": "0", - "shopValue": "624" - } - ], - "name": "White sword", - "id": "6606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "960", - "highAlch": "13", - "shopValue": "960" - } - ], - "name": "White longsword", - "id": "6607", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 18, - "strengthBonus": 16, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 13, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "960", - "highAlch": "0", - "shopValue": "960" - } - ], - "name": "White longsword", - "id": "6608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two handed sword.", - "values": [ - { - "lowAlch": "1920", - "highAlch": "-4", - "shopValue": "1920" - } - ], - "name": "White 2h sword", - "id": "6609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 27, - "strengthBonus": 26, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 1, - "attackCrush": 21, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1920", - "highAlch": "0", - "shopValue": "1920" - } - ], - "name": "White 2h sword", - "id": "6610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vicious, curved sword.", - "values": [ - { - "lowAlch": "768", - "highAlch": "4", - "shopValue": "768" - } - ], - "name": "White scimitar", - "id": "6611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 19, - "strengthBonus": 14, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "768", - "highAlch": "0", - "shopValue": "768" - } - ], - "name": "White scimitar", - "id": "6612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I don't think it's intended for joinery.", - "values": [ - { - "lowAlch": "980", - "highAlch": "-4", - "shopValue": "980" - } - ], - "name": "White warhammer", - "id": "6613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 19, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 1, - "attackCrush": 22, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "980", - "highAlch": "0", - "shopValue": "980" - } - ], - "name": "White warhammer", - "id": "6614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A series of connected metal rings.", - "values": [ - { - "lowAlch": "1440", - "highAlch": "0", - "shopValue": "1440" - } - ], - "name": "White chainbody", - "id": "6615", - "bonuses": [ - { - "defenceCrush": 39, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -15, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 24, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1440", - "highAlch": "0", - "shopValue": "1440" - } - ], - "name": "White chainbody", - "id": "6616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Provides excellent protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "850000" - } - ], - "name": "Dragon platebody", - "id": "6617", - "bonuses": [ - { - "defenceCrush": 97, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 107, - "attackMagic": -30, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 106, - "attackStab": 0, - "defenceStab": 109, - "defenceMagic": -6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2304" - } - ], - "name": "White platebody", - "id": "6618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will protect my feet.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "White boots", - "id": "6619", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 8, - "attackMagic": -3, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 7, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "White boots", - "id": "6620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "White med helm", - "id": "6621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "576", - "highAlch": "0", - "shopValue": "576" - } - ], - "name": "White med helm", - "id": "6622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A full face helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "White full helm", - "id": "6623", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 13, - "attackMagic": -6, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 12, - "attackStab": 0, - "defenceStab": 12, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "634" - } - ], - "name": "White full helm", - "id": "6624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Big, White and heavy looking.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "White platelegs", - "id": "6625", - "bonuses": [ - { - "defenceCrush": 19, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 20, - "attackMagic": -21, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 20, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "White platelegs", - "id": "6626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Big, White and heavy looking.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "White plateskirt", - "id": "6627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "White plateskirt", - "id": "6628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These will keep my hands warm!", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "White gloves", - "id": "6629", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "White gloves", - "id": "6630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium square shield.", - "values": [ - { - "lowAlch": "1152", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "White sq shield", - "id": "6631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1152", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "White sq shield", - "id": "6632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "White kiteshield", - "id": "6633", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 1, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "White kiteshield", - "id": "6634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Temple Knight Communication Orb. Top Secret!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Commorb", - "id": "6635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Proof that I have defeated the evil mage Solus.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Solus's hat", - "id": "6636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dark beast", - "id": "6637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to the nature of light itself.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Colour wheel", - "id": "6638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small hand mirror.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hand mirror", - "id": "6639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red crystal", - "id": "6640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yellow crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow crystal", - "id": "6641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A green crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green crystal", - "id": "6642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cyan crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cyan crystal", - "id": "6643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blue crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue crystal", - "id": "6644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magenta crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magenta crystal", - "id": "6645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fractured crystal, one of the edges is clear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fractured crystal", - "id": "6646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fractured crystal, one of the edges is clear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fractured crystal", - "id": "6647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a list of items I need to collect.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item list", - "id": "6648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The journal of Nissyen Edern.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Edern's journal", - "id": "6649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blackened crystal sample.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blackened crystal", - "id": "6650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A newly formed crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Newly made crystal", - "id": "6651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A warm energy radiates from this crystal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Newly made crystal", - "id": "6652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small crystal trinket.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal trinket", - "id": "6653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Examine what?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camo top", - "id": "6654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Examine what?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camo bottoms", - "id": "6655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Examine what?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camo helmet", - "id": "6656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Examine what?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camo top", - "id": "6657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Examine what?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camo bottoms", - "id": "6658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Examine what?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camo helmet", - "id": "6659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial that explodes in water.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishing explosive", - "id": "6660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mogre", - "id": "6661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This fishing rod seems to have been bitten in half...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken fishing rod", - "id": "6662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems someone vacated this boot in a hurry...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Forlorn boot", - "id": "6663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The jar keeps shaking...I'm scared.", - "values": [ - { - "lowAlch": "60", - "highAlch": "0", - "shopValue": "60" - } - ], - "name": "Fishing explosive", - "id": "6664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fishy, damp and smelly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mudskipper hat", - "id": "6665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Strangely uncomfortable flippers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flippers", - "id": "6666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty fishbowl.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishless fishbowl.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishless fishbowl with some seaweed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishbowl with a Tiny Bluefish in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishbowl with a Tiny Greenfish in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fishbowl with a Tiny Spinefish in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty fishbowl in a net.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl and net", - "id": "6673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny net for grabbing tiny fish.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Tiny net", - "id": "6674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "'Ingredients; Ground Guam and Ground Seaweed.'", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "An empty box", - "id": "6675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "An empty box", - "id": "6676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "'Ingredients; Ground Guam Leaf and Ground Seaweed.' Well, I have the Guam Leaf...", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Guam in a box", - "id": "6677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "'Ingredients; Ground Guam Leaf and Ground Seaweed.' Well, I have the Guam Leaf...", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Guam in a box?", - "id": "6678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "'Ingredients; Ground Guam and Ground Seaweed.' Well, I have the Seaweed...", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Seaweed in a box", - "id": "6679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "'Ingredients; Ground Guam and Ground Seaweed.' Well, I have the Seaweed...", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Seaweed in a box?", - "id": "6680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the ingredients for making fish food.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ground guam", - "id": "6681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ground guam", - "id": "6682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the ingredients for making fish food.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ground seaweed", - "id": "6683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Ground seaweed", - "id": "6684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Saradomin brew.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Saradomin brew(4)", - "id": "6685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Saradomin brew(4)", - "id": "6686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Saradomin brew.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Saradomin brew(3)", - "id": "6687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "175", - "highAlch": "0", - "shopValue": "175" - } - ], - "name": "Saradomin brew(3)", - "id": "6688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Saradomin brew.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Saradomin brew(2)", - "id": "6689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Saradomin brew(2)", - "id": "6690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Saradomin brew.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Saradomin brew(1)", - "id": "6691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "125", - "highAlch": "0", - "shopValue": "125" - } - ], - "name": "Saradomin brew(1)", - "id": "6692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A crushed bird's nest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crushed nest", - "id": "6693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crushed nest", - "id": "6694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert lizard", - "id": "6695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Contains ice cubes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ice cooler", - "id": "6696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pat of freshly churned butter.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pat of butter", - "id": "6697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pat of butter", - "id": "6698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This potato doesn't look edible.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt potato", - "id": "6699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt potato", - "id": "6700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It'd taste even better with some toppings.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Baked potato", - "id": "6701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Baked potato", - "id": "6702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A baked potato with butter.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Potato with butter", - "id": "6703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Potato with butter", - "id": "6704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A baked potato with butter and cheese.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Potato with cheese", - "id": "6705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Potato with cheese", - "id": "6706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An amulet of Camel-speak. It makes vague braying noises.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camulet", - "id": "6707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Too thick for monsters to bite through.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer gloves", - "id": "6708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fever spider", - "id": "6709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Blindweed seed - plant in a Blindweed patch.", - "values": [ - { - "lowAlch": "166", - "highAlch": "0", - "shopValue": "166" - } - ], - "name": "Blindweed seed", - "id": "6710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An inedible, foul smelling herb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blindweed", - "id": "6711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of... water?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of water", - "id": "6712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy metal wrench.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Wrench", - "id": "6713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shining paragon of wrenchly virtue.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Holy wrench", - "id": "6714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They look at you balefully. 'Feed us...'", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sluglings", - "id": "6715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sinister looking squid.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karamthulhu", - "id": "6716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "My pet sinister squid.", - "values": [ - { - "lowAlch": "20000", - "highAlch": "0", - "shopValue": "20000" - } - ], - "name": "Karamthulhu", - "id": "6717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diseased deceased Fever Spider. Handle with care.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fever spider body", - "id": "6718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sorry, I mean a bucket of 'rum'.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unsanitary swill", - "id": "6719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Especially good against diseased arachnids.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Slayer gloves", - "id": "6720", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A decent enough weapon gone rusty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rusty scimitar", - "id": "6721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Alas...I hardly knew him.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie head", - "id": "6722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl", - "id": "6723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient Fremennik bow that was once used to battle the Moon Clan.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Seercull", - "id": "6724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 69, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Seercull", - "id": "6725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17000", - "highAlch": "10", - "shopValue": "17000" - } - ], - "name": "Mud battlestaff", - "id": "6726", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 35, - "defenceSlash": 3, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 40, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 2, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45000", - "highAlch": "0", - "shopValue": "45000" - } - ], - "name": "Mystic mud staff", - "id": "6727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of crushed Dagannoth-king bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "6728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These would feed a dogfish for months!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dagannoth bones", - "id": "6729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dagannoth bones", - "id": "6730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious ring that can fill the wearer with magical power...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Seer's ring", - "id": "6731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Seer's ring", - "id": "6732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fabled ring that improves the wearer's skill with a bow...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Archers ring", - "id": "6733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 4, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 4, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Archers ring", - "id": "6734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A legendary ring once worn by Fremennik warriors.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Warrior ring", - "id": "6735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 4, - "strengthBonus": 0, - "defenceSlash": 4, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Warrior ring", - "id": "6736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ring reputed to bring out a berserk fury in its wearer.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Berserker ring", - "id": "6737", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 4, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10000" - } - ], - "name": "Berserker ring", - "id": "6738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very powerful axe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-2", - "shopValue": "55000" - } - ], - "name": "Dragon axe", - "id": "6739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 38, - "strengthBonus": 42, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 32, - "defenceRange": 0, - "attackStab": -2, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this pote at any bank for a Dragon axe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "55000" - } - ], - "name": "Dragon axe", - "id": "6740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bob can fix this for me.", - "values": [ - { - "lowAlch": "1800", - "highAlch": "0", - "shopValue": "1800" - } - ], - "name": "Broken axe", - "id": "6741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1800", - "highAlch": "0", - "shopValue": "1800" - } - ], - "name": "Broken axe", - "id": "6742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's missing a handle.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "54999" - } - ], - "name": "Dragon axe head", - "id": "6743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "54999" - } - ], - "name": "Dragon axe head", - "id": "6744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The magical sword 'Silverlight', stained black with mushroom ink.", - "values": [ - { - "lowAlch": "50", - "highAlch": "9", - "shopValue": "50" - } - ], - "name": "Silverlight", - "id": "6745", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 14, - "strengthBonus": 12, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 9, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "The magical sword 'Silverlight', enhanced with the blood of Agrith-Naar.", - "values": [ - { - "lowAlch": "500", - "highAlch": "10", - "shopValue": "500" - } - ], - "name": "Darklight", - "id": "6746", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 16, - "strengthBonus": 13, - "defenceSlash": 3, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 10, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Used to make the sigil of the demon Agrith-Naar.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demonic sigil mould", - "id": "6747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sigil used for the summoning of the demon Agrith-Naar.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demonic sigil", - "id": "6748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Will this book help in summoning Agrith-Naar?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demonic tome", - "id": "6749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A desert shirt stained black with mushroom ink.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Black desert shirt", - "id": "6750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Black desert shirt", - "id": "6751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A desert robe stained black with mushroom ink.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Black desert robe", - "id": "6752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Black desert robe", - "id": "6753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems to change temperature as I walk.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchanted key", - "id": "6754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Somebody's private journal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Journal", - "id": "6755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sealed letter to the king.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Letter", - "id": "6756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sealed letter to Jorral.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Letter", - "id": "6757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A timeline of the outpost.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scroll", - "id": "6758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dirty chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chest", - "id": "6759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Guthix Mjolnir.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Guthix mjolnir", - "id": "6760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 11, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Guthix mjolnir", - "id": "6761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Saradomin Mjolnir.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Saradomin mjolnir", - "id": "6762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 14, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 11, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Saradomin mjolnir", - "id": "6763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Zamorak Mjolnir.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Zamorak mjolnir", - "id": "6764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Zamorak mjolnir", - "id": "6765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Antipoison for Pox.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cat antipoison", - "id": "6766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The book of Rats.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book", - "id": "6767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A little more smelly than usual.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Poisoned cheese", - "id": "6768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Charming.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Music scroll", - "id": "6769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Jimmy Dazzler's directions.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Directions", - "id": "6770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Contains garden weeds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of weeds", - "id": "6771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Contains slowly burning garden weeds.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Smouldering pot", - "id": "6772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole for putting rats on.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole with one rat on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole with two rats on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole with three rats on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole with four rats on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole with five rats on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pole with six rats on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat pole", - "id": "6779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mean looking.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Menaphite thug", - "id": "6780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nasty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandit", - "id": "6781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nasty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandit", - "id": "6782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Just chuck this away, it's useless!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whoopsie", - "id": "6784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A statue of the goddess Elidinis.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Statuette", - "id": "6785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks quite old.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Robe of elidinis", - "id": "6786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A patched up robe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Robe of elidinis", - "id": "6787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This robe is too torn to wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torn robe", - "id": "6788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This robe is too torn to wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torn robe", - "id": "6789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Awusah's Shoes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoes", - "id": "6790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Awusah's Sole.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sole", - "id": "6791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient key from the shrine in Nardah.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ancestral key", - "id": "6792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Ballad of Jareesh.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ballad", - "id": "6793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Better eat this before it melts.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Choc-ice", - "id": "6794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Choc-ice", - "id": "6795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ooh a nice shiny lamp.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lamp", - "id": "6796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Handy for watering crops.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watering can", - "id": "6797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Earth Warrior Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Ghoul Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6799", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Giant Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Goblin Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Hobgoblin Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Imp Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Jogre Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Lesser Demon Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Skeleton Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Zombie Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a challenge from the Human Champion!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Champion scroll", - "id": "6808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "These look pretty heavy.", - "values": [ - { - "lowAlch": "66000", - "highAlch": "0", - "shopValue": "66000" - } - ], - "name": "Granite legs", - "id": "6809", - "bonuses": [ - { - "defenceCrush": 41, - "attackRange": -18, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 45, - "attackMagic": -31, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 68, - "attackStab": 0, - "defenceStab": 43, - "defenceMagic": -4 - } - ] - }, - { - "examine": "A pot of crushed wyvern bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonemeal", - "id": "6810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeletal wyvern", - "id": "6811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bones of a large flying creature!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wyvern bones", - "id": "6812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "66000", - "highAlch": "0", - "shopValue": "66000" - } - ], - "name": "Granite legs", - "id": "6813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would make warm clothing.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Fur", - "id": "6814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Fur", - "id": "6815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wyvern bones", - "id": "6816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slender two-handed sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slender blade", - "id": "6817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sharp sword that can also fire arrows.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bow-sword", - "id": "6818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large pouch used for storing essence.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large pouch", - "id": "6819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There seems to be bits missing...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Relic", - "id": "6820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glowing orb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orb", - "id": "6821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unpainted bauble shaped like a star.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star bauble", - "id": "6822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a star painted yellow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star bauble", - "id": "6823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a star painted red.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star bauble", - "id": "6824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a star painted blue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star bauble", - "id": "6825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a star painted green.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star bauble", - "id": "6826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a star painted pink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star bauble", - "id": "6827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unpainted bauble shaped like a gift.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box bauble", - "id": "6828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a gift painted yellow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box bauble", - "id": "6829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a gift painted red.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box bauble", - "id": "6830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a gift painted blue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box bauble", - "id": "6831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a gift painted green.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box bauble", - "id": "6832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a gift painted pink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Box bauble", - "id": "6833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unpainted bauble shaped like a diamond.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bauble", - "id": "6834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a diamond painted yellow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bauble", - "id": "6835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a diamond painted red.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bauble", - "id": "6836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a diamond painted blue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bauble", - "id": "6837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a diamond painted green.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bauble", - "id": "6838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a diamond painted pink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bauble", - "id": "6839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unpainted bauble shaped like a wintumber tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree bauble", - "id": "6840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a wintumber tree painted yellow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree bauble", - "id": "6841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a wintumber tree painted red.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree bauble", - "id": "6842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a wintumber tree painted blue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree bauble", - "id": "6843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a wintumber tree painted green.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree bauble", - "id": "6844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a wintumber tree painted pink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree bauble", - "id": "6845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unpainted bauble shaped like a bell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell bauble", - "id": "6846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a bell painted yellow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell bauble", - "id": "6847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a bell painted red.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell bauble", - "id": "6848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a bell painted blue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell bauble", - "id": "6849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a bell painted green.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell bauble", - "id": "6850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bauble shaped like a bell painted pink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell bauble", - "id": "6851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A box for storing completed puppets.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Puppet box", - "id": "6852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A box for storing painted baubles.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bauble box", - "id": "6853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A box full of puppets. Bring to the Taverly members gate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Puppet box", - "id": "6854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A box full of painted baubles. Give to a Pixie or use to decorate a tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bauble box", - "id": "6855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly bobble hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bobble hat", - "id": "6856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly scarf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bobble scarf", - "id": "6857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly jester hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jester hat", - "id": "6858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly jester scarf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jester scarf", - "id": "6859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly triple bobble jester hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tri-jester hat", - "id": "6860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly jester scarf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tri-jester scarf", - "id": "6861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly tobogganing hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woolly hat", - "id": "6862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A woolly tobogganing scarf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woolly scarf", - "id": "6863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The controlling part of a marionette.", - "values": [ - { - "lowAlch": "60000", - "highAlch": "0", - "shopValue": "60000" - } - ], - "name": "Marionette handle", - "id": "6864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I've got no strings ... oh hang on!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue marionette", - "id": "6865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I've got no strings ... oh hang on!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green marionette", - "id": "6866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I've got no strings ... oh hang on!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red marionette", - "id": "6867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I want to be a real boy!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue marionette", - "id": "6868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I want to be a real boy!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green marionette", - "id": "6869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I want to be a real boy!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red marionette", - "id": "6870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The torso of a marionette.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red marionette", - "id": "6871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The torso and head of a marionette.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red marionette", - "id": "6872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The torso, head and arms of a marionette.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red marionette", - "id": "6873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "No strings attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red marionette", - "id": "6874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs a head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue marionette", - "id": "6875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs arms.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue marionette", - "id": "6876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs legs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue marionette", - "id": "6877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "No strings attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue marionette", - "id": "6878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs a head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green marionette", - "id": "6879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs arms.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green marionette", - "id": "6880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs legs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green marionette", - "id": "6881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "No strings attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green marionette", - "id": "6882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tasty fruit.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Peach", - "id": "6883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic training arena progress hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Progress hat", - "id": "6885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic training arena progress hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Progress hat", - "id": "6886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic training arena progress hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Progress hat", - "id": "6887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The statue looks like he can be moved.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guardian statue", - "id": "6888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The magical book of the Mage.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Mage's book", - "id": "6889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Mage's book", - "id": "6890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book about the Training Arena.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Arena book", - "id": "6891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Arena book", - "id": "6892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Comfortable leather boots.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "0" - } - ], - "name": "Leather boots", - "id": "6893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large metal shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "0" - } - ], - "name": "Adamant kiteshield", - "id": "6894", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -1 - } - ] - }, - { - "examine": "A medium sized helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "0" - } - ], - "name": "Adamant med helm", - "id": "6895", - "bonuses": [ - { - "defenceCrush": 13, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 15, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 14, - "attackStab": 0, - "defenceStab": 14, - "defenceMagic": -1 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald", - "id": "6896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A razor sharp longsword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "38", - "shopValue": "0" - } - ], - "name": "Rune longsword", - "id": "6897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 47, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": -2, - "defenceRange": 0, - "attackStab": 38, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A green cylinder.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cylinder", - "id": "6898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A yellow cube.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cube", - "id": "6899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blue icosahedron.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Icosahedron", - "id": "6900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A red pentamid.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pentamid", - "id": "6901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A white sphere.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orb", - "id": "6902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This looks valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragonstone", - "id": "6903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Various animals' bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Animals' bones", - "id": "6904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Various animals' bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Animals' bones", - "id": "6905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Various animals' bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Animals' bones", - "id": "6906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Various animals' bones.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Animals' bones", - "id": "6907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A beginner level wand.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Beginner wand", - "id": "6908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Beginner wand", - "id": "6909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A apprentice level wand.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Apprentice wand", - "id": "6910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 10 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Apprentice wand", - "id": "6911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A teacher level wand.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Teacher wand", - "id": "6912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2000", - "highAlch": "0", - "shopValue": "2000" - } - ], - "name": "Teacher wand", - "id": "6913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A master level wand.", - "values": [ - { - "lowAlch": "2500", - "highAlch": "0", - "shopValue": "2500" - } - ], - "name": "Master wand", - "id": "6914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 20, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2500", - "highAlch": "0", - "shopValue": "2500" - } - ], - "name": "Master wand", - "id": "6915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mystical robes.", - "values": [ - { - "lowAlch": "140000", - "highAlch": "0", - "shopValue": "140000" - } - ], - "name": "Infinity top", - "id": "6916", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 22, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "140000", - "highAlch": "0", - "shopValue": "140000" - } - ], - "name": "Infinity top", - "id": "6917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mystic hat.", - "values": [ - { - "lowAlch": "17000", - "highAlch": "0", - "shopValue": "17000" - } - ], - "name": "Infinity hat", - "id": "6918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 6 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "17000", - "highAlch": "0", - "shopValue": "17000" - } - ], - "name": "Infinity hat", - "id": "6919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mystical boots.", - "values": [ - { - "lowAlch": "12000", - "highAlch": "0", - "shopValue": "12000" - } - ], - "name": "Infinity boots", - "id": "6920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 5 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12000", - "highAlch": "0", - "shopValue": "12000" - } - ], - "name": "Infinity boots", - "id": "6921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mystical gloves.", - "values": [ - { - "lowAlch": "12000", - "highAlch": "0", - "shopValue": "12000" - } - ], - "name": "Infinity gloves", - "id": "6922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12000", - "highAlch": "0", - "shopValue": "12000" - } - ], - "name": "Infinity gloves", - "id": "6923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mystical robes.", - "values": [ - { - "lowAlch": "90000", - "highAlch": "0", - "shopValue": "90000" - } - ], - "name": "Infinity bottoms", - "id": "6924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 17, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 17 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90000", - "highAlch": "0", - "shopValue": "90000" - } - ], - "name": "Infinity bottoms", - "id": "6925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A spell to turn bones to peaches.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones to peaches", - "id": "6926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A severed hand covered with sand.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandy hand", - "id": "6945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A severed hand dripping with beer.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beer soaked hand", - "id": "6946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A copy of a work rota.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bert's rota", - "id": "6947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An original work rota.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandy's rota", - "id": "6948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This scroll glows with an inner light.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A magic scroll", - "id": "6949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ordinary looking magical scrying orb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical orb", - "id": "6950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This magical scrying orb pulsates as it stores information.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical orb (a)", - "id": "6951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fluid sloshes innocently in this vial.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Truth serum", - "id": "6952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bottle of water.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bottled water", - "id": "6953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Redberry Juice sloshes around in this vial waiting for white berries to be added.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Redberry juice", - "id": "6954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A vial of pink dye.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pink dye", - "id": "6955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This lens has a pinkish tinge to it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rose tinted lens", - "id": "6956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A decapitated, sand covered head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wizard's head", - "id": "6957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A handful of sand from Sandy's pocket.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sand", - "id": "6958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bit pink.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cape", - "id": "6959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cape", - "id": "6960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A freshly baked baguette.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Baguette", - "id": "6961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A freshly made triangle sandwich.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Triangle sandwich", - "id": "6962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A freshly made roll.", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Roll", - "id": "6963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Gets rid of all that nasty kitchen waste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Waste disposal", - "id": "6964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A freshly made square sandwich", - "values": [ - { - "lowAlch": "25", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Square sandwich", - "id": "6965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to the prison.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prison key", - "id": "6966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Gets rid of all that nasty kitchen waste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Waste disposal", - "id": "6967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Gets rid of all that nasty kitchen waste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Waste disposal", - "id": "6968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Gets rid of all that nasty kitchen waste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Waste disposal", - "id": "6969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a solid gold pyramid!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pyramid top", - "id": "6970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny chunk of sandstone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (1kg)", - "id": "6971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (1kg)", - "id": "6972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small chunk of sandstone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (2kg)", - "id": "6973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (2kg)", - "id": "6974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium-sized chunk of sandstone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (5kg)", - "id": "6975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (5kg)", - "id": "6976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large chunk of sandstone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (10kg)", - "id": "6977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (10kg)", - "id": "6978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiny chunk of granite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Granite (500g)", - "id": "6979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Granite (500g)", - "id": "6980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small chunk of granite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Granite (2kg)", - "id": "6981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Granite (2kg)", - "id": "6982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium-sized chunk of granite.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Granite (5kg)", - "id": "6983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Granite (5kg)", - "id": "6984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A huge twenty-kilo block of sandstone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (20kg)", - "id": "6985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A huge thirty-two-kilo block of sandstone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone (32kg)", - "id": "6986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The body of a sandstone statue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone body", - "id": "6987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The base and legs of a sandstone statue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandstone base", - "id": "6988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A granite head shaped like the sculptor Lazim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone head", - "id": "6989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A granite head shaped like the god Zamorak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone head", - "id": "6990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A granite head shaped like the god Icthlarin.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone head", - "id": "6991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A granite head shaped like a camel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone head", - "id": "6992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metal sigil in the shape of a Z.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Z sigil", - "id": "6993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metal sigil in the shape of an M.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M sigil", - "id": "6994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metal sigil in the shape of an R.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "R sigil", - "id": "6995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A metal sigil in the shape of a K.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "K sigil", - "id": "6996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The left arm of a large stone statue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone left arm", - "id": "6997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The right arm of a large stone statue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone right arm", - "id": "6998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The left leg of a large stone statue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone left leg", - "id": "6999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The right leg of a large stone statue.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone right leg", - "id": "7000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A positive clay mould of a camel's head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camel mould (p)", - "id": "7001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A granite head that will fit exactly into the pedestal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone head", - "id": "7002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blend in in the desert.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camel mask", - "id": "7003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For chipping at stuff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chisel", - "id": "7004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Swarm", - "id": "7050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lantern to aid attacking Harpie bugs.", - "values": [ - { - "lowAlch": "130", - "highAlch": "0", - "shopValue": "130" - } - ], - "name": "Unlit bug lantern", - "id": "7051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "130", - "highAlch": "0", - "shopValue": "130" - } - ], - "name": "Unlit bug lantern", - "id": "7052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A lantern to aid attacking Harpie bugs.", - "values": [ - { - "lowAlch": "130", - "highAlch": "0", - "shopValue": "130" - } - ], - "name": "Lit bug lantern", - "id": "7053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A baked potato with chilli con carne.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Chilli potato", - "id": "7054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Chilli potato", - "id": "7055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A baked potato with egg and tomato.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Egg potato", - "id": "7056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Egg potato", - "id": "7057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A baked potato with mushroom and onions.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Mushroom potato", - "id": "7058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Mushroom potato", - "id": "7059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A baked potato with tuna and sweetcorn.", - "values": [ - { - "lowAlch": "113", - "highAlch": "0", - "shopValue": "113" - } - ], - "name": "Tuna potato", - "id": "7060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "113", - "highAlch": "0", - "shopValue": "113" - } - ], - "name": "Tuna potato", - "id": "7061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of meat in chilli-con-carne sauce.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Chilli con carne", - "id": "7062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Chilli con carne", - "id": "7063", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of scrambled eggs and tomato.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Egg and tomato", - "id": "7064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Egg and tomato", - "id": "7065", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of fried mushroom and onions.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Mushroom & onion", - "id": "7066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item& onion.", - "values": [ - { - "lowAlch": "45", - "highAlch": "0", - "shopValue": "45" - } - ], - "name": "Mushroom & onion", - "id": "7067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of cooked tuna and sweetcorn.", - "values": [ - { - "lowAlch": "113", - "highAlch": "0", - "shopValue": "113" - } - ], - "name": "Tuna and corn", - "id": "7068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "113", - "highAlch": "0", - "shopValue": "113" - } - ], - "name": "Tuna and corn", - "id": "7069", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of finely minced meat.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Minced meat", - "id": "7070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Minced meat", - "id": "7071", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of spicy sauce.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Spicy sauce", - "id": "7072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9", - "highAlch": "0", - "shopValue": "9" - } - ], - "name": "Spicy sauce", - "id": "7073", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of chopped garlic.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Chopped garlic", - "id": "7074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Chopped garlic", - "id": "7075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of uncooked egg.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Uncooked egg", - "id": "7076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Uncooked egg", - "id": "7077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of scrambled egg.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Scrambled egg", - "id": "7078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Scrambled egg", - "id": "7079", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of sliced Bittercap mushrooms.", - "values": [ - { - "lowAlch": "42", - "highAlch": "0", - "shopValue": "42" - } - ], - "name": "Sliced mushrooms", - "id": "7080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "42", - "highAlch": "0", - "shopValue": "42" - } - ], - "name": "Sliced mushrooms", - "id": "7081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of fried Bittercap mushrooms.", - "values": [ - { - "lowAlch": "42", - "highAlch": "0", - "shopValue": "42" - } - ], - "name": "Fried mushrooms", - "id": "7082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "42", - "highAlch": "0", - "shopValue": "42" - } - ], - "name": "Fried mushrooms", - "id": "7083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of sliced, fried onions.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Fried onions", - "id": "7084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Fried onions", - "id": "7085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of finely chopped tuna.", - "values": [ - { - "lowAlch": "104", - "highAlch": "0", - "shopValue": "104" - } - ], - "name": "Chopped tuna", - "id": "7086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "104", - "highAlch": "0", - "shopValue": "104" - } - ], - "name": "Chopped tuna", - "id": "7087", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of cooked sweetcorn.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Sweetcorn", - "id": "7088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "13", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Sweetcorn", - "id": "7089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of burnt, overcooked egg.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Burnt egg", - "id": "7090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Burnt egg", - "id": "7091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of blackened onions.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Burnt onion", - "id": "7092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Burnt onion", - "id": "7093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bowl of burnt sliced mushroom.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Burnt mushroom", - "id": "7094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Burnt mushroom", - "id": "7095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7097", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7099", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A piece used in board games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Board game piece", - "id": "7107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Best keep this away from naked flames.", - "values": [ - { - "lowAlch": "52", - "highAlch": "0", - "shopValue": "52" - } - ], - "name": "Gunpowder", - "id": "7108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Burns very well.", - "values": [ - { - "lowAlch": "52", - "highAlch": "0", - "shopValue": "52" - } - ], - "name": "Fuse", - "id": "7109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy shirt.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not for land lubbers.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate boots", - "id": "7114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate boots", - "id": "7115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy pair of trousers.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cannister holding shrapnel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cannister", - "id": "7118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy metal ball.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cannon ball", - "id": "7119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "For cleaning and packing the cannon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ramrod", - "id": "7120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Quite short, but not that thick.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Repair plank", - "id": "7121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy shirt.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy pair of trousers.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy shirt.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7129", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7131", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy pair of trousers.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy shirt.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Stripy pirate shirt", - "id": "7135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Pirate bandanna", - "id": "7137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sea worthy pair of trousers.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "350", - "highAlch": "0", - "shopValue": "350" - } - ], - "name": "Pirate leggings", - "id": "7139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Feels quite lucky.", - "values": [ - { - "lowAlch": "2560", - "highAlch": "0", - "shopValue": "2560" - } - ], - "name": "Lucky cutlass", - "id": "7140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope he doesn't want it back.", - "values": [ - { - "lowAlch": "1040", - "highAlch": "0", - "shopValue": "1040" - } - ], - "name": "Harry's cutlass", - "id": "7141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The very butcher of a silk button.", - "values": [ - { - "lowAlch": "25600", - "highAlch": "0", - "shopValue": "25600" - } - ], - "name": "Rapier", - "id": "7142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks valuable.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plunder", - "id": "7143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "By Cap'n Hook-Hand Morrisane.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book o' piracy", - "id": "7144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A working cannon barrel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cannon barrel", - "id": "7145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not likely to work again.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken cannon", - "id": "7146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some cannon balls.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cannon balls", - "id": "7147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plank of wood to repair the hull with.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Repair plank", - "id": "7148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cannister holding shrapnel.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cannister", - "id": "7149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for pinning up paintings.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tacks", - "id": "7150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A coil of rope.", - "values": [ - { - "lowAlch": "18", - "highAlch": "0", - "shopValue": "18" - } - ], - "name": "Rope", - "id": "7155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useful for lighting a fire.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tinderbox", - "id": "7156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I think it is eating through the bottle.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Braindeath 'rum'", - "id": "7157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A two-handed Dragon Sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "-4", - "shopValue": "132000" - } - ], - "name": "Dragon 2h sword", - "id": "7158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 92, - "strengthBonus": 93, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 80, - "defenceRange": -1, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They're heavily insulated wellies.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Slayer boots", - "id": "7159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Killerwatt", - "id": "7160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Slayer boots", - "id": "7161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lots of pie recipes for me to try.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Pie recipe book", - "id": "7162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Pie recipe book", - "id": "7163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs two more ingredients.", - "values": [ - { - "lowAlch": "22", - "highAlch": "0", - "shopValue": "22" - } - ], - "name": "Part mud pie", - "id": "7164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "22", - "highAlch": "0", - "shopValue": "22" - } - ], - "name": "Part mud pie", - "id": "7165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs one more ingredient.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Part mud pie", - "id": "7166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "26", - "highAlch": "0", - "shopValue": "26" - } - ], - "name": "Part mud pie", - "id": "7167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs to be baked before I can use it.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Raw mud pie", - "id": "7168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "27", - "highAlch": "0", - "shopValue": "27" - } - ], - "name": "Raw mud pie", - "id": "7169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All the good of the earth.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Mud pie", - "id": "7170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Mud pie", - "id": "7171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs two more ingredients.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Part garden pie", - "id": "7172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8", - "highAlch": "0", - "shopValue": "8" - } - ], - "name": "Part garden pie", - "id": "7173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs one more ingredient.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Part garden pie", - "id": "7174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "11", - "highAlch": "0", - "shopValue": "11" - } - ], - "name": "Part garden pie", - "id": "7175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Needs cooking before I eat it.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Raw garden pie", - "id": "7176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Raw garden pie", - "id": "7177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "What I wouldn't give for a good steak about now...", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Garden pie", - "id": "7178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Garden pie", - "id": "7179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "What I wouldn't give for a good steak about now...", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Half a garden pie", - "id": "7180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "12", - "highAlch": "0", - "shopValue": "12" - } - ], - "name": "Half a garden pie", - "id": "7181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs two more ingredients.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Part fish pie", - "id": "7182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "24", - "highAlch": "0", - "shopValue": "24" - } - ], - "name": "Part fish pie", - "id": "7183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs one more ingredient.", - "values": [ - { - "lowAlch": "49", - "highAlch": "0", - "shopValue": "49" - } - ], - "name": "Part fish pie", - "id": "7184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "49", - "highAlch": "0", - "shopValue": "49" - } - ], - "name": "Part fish pie", - "id": "7185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Raw fish is risky, better cook it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Raw fish pie", - "id": "7186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Raw fish pie", - "id": "7187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bounty of the sea.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Fish pie", - "id": "7188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Fish pie", - "id": "7189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bounty of the sea.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Half a fish pie", - "id": "7190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Half a fish pie", - "id": "7191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs two more ingredients.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Part admiral pie", - "id": "7192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "54", - "highAlch": "0", - "shopValue": "54" - } - ], - "name": "Part admiral pie", - "id": "7193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs one more ingredient.", - "values": [ - { - "lowAlch": "154", - "highAlch": "0", - "shopValue": "154" - } - ], - "name": "Part admiral pie", - "id": "7194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "154", - "highAlch": "0", - "shopValue": "154" - } - ], - "name": "Part admiral pie", - "id": "7195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This would taste a lot better cooked.", - "values": [ - { - "lowAlch": "155", - "highAlch": "0", - "shopValue": "155" - } - ], - "name": "Raw admiral pie", - "id": "7196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "155", - "highAlch": "0", - "shopValue": "155" - } - ], - "name": "Raw admiral pie", - "id": "7197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Much tastier than a normal fish pie.", - "values": [ - { - "lowAlch": "310", - "highAlch": "0", - "shopValue": "310" - } - ], - "name": "Admiral pie", - "id": "7198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "310", - "highAlch": "0", - "shopValue": "310" - } - ], - "name": "Admiral pie", - "id": "7199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Much tastier than a normal fish pie.", - "values": [ - { - "lowAlch": "155", - "highAlch": "0", - "shopValue": "155" - } - ], - "name": "Half a admiral pie", - "id": "7200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "155", - "highAlch": "0", - "shopValue": "155" - } - ], - "name": "Half a admiral pie", - "id": "7201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs two more ingredients.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Part wild pie", - "id": "7202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Part wild pie", - "id": "7203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs one more ingredient.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Part wild pie", - "id": "7204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "90", - "highAlch": "0", - "shopValue": "90" - } - ], - "name": "Part wild pie", - "id": "7205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good as it looks, I'd better cook it.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Raw wild pie", - "id": "7206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Raw wild pie", - "id": "7207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A triumph of man over nature.", - "values": [ - { - "lowAlch": "182", - "highAlch": "0", - "shopValue": "182" - } - ], - "name": "Wild pie", - "id": "7208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "182", - "highAlch": "0", - "shopValue": "182" - } - ], - "name": "Wild pie", - "id": "7209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A triumph of man over nature.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Half a wild pie", - "id": "7210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "91", - "highAlch": "0", - "shopValue": "91" - } - ], - "name": "Half a wild pie", - "id": "7211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs two more ingredients.", - "values": [ - { - "lowAlch": "21", - "highAlch": "0", - "shopValue": "21" - } - ], - "name": "Part summer pie", - "id": "7212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "21", - "highAlch": "0", - "shopValue": "21" - } - ], - "name": "Part summer pie", - "id": "7213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still needs one more ingredient.", - "values": [ - { - "lowAlch": "69", - "highAlch": "0", - "shopValue": "69" - } - ], - "name": "Part summer pie", - "id": "7214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "69", - "highAlch": "0", - "shopValue": "69" - } - ], - "name": "Part summer pie", - "id": "7215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh fruit may be good for you, but I should really cook this.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Raw summer pie", - "id": "7216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Raw summer pie", - "id": "7217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All the fruits of a very small forest.", - "values": [ - { - "lowAlch": "140", - "highAlch": "0", - "shopValue": "140" - } - ], - "name": "Summer pie", - "id": "7218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "140", - "highAlch": "0", - "shopValue": "140" - } - ], - "name": "Summer pie", - "id": "7219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All the fruits of a very small forest.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Half a summer pie", - "id": "7220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "70", - "highAlch": "0", - "shopValue": "70" - } - ], - "name": "Half a summer pie", - "id": "7221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This could be mistaken for charcoal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt rabbit", - "id": "7222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A delicious looking piece of roast rabbit.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Roast rabbit", - "id": "7223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All ready to be used on a fire.", - "values": [ - { - "lowAlch": "84", - "highAlch": "0", - "shopValue": "84" - } - ], - "name": "Skewered rabbit", - "id": "7224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron spit.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Iron spit", - "id": "7225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Overly crispy chompy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt chompy", - "id": "7226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt chompy", - "id": "7227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Roasted chompy bird.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Cooked chompy", - "id": "7228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "85", - "highAlch": "0", - "shopValue": "85" - } - ], - "name": "Cooked chompy", - "id": "7229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A skewered chompy bird.", - "values": [ - { - "lowAlch": "149", - "highAlch": "0", - "shopValue": "149" - } - ], - "name": "Skewered chompy", - "id": "7230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt rabbit", - "id": "7231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Roast rabbit", - "id": "7232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "84", - "highAlch": "0", - "shopValue": "84" - } - ], - "name": "Skewered rabbit", - "id": "7233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "64", - "highAlch": "0", - "shopValue": "64" - } - ], - "name": "Iron spit", - "id": "7234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "149", - "highAlch": "0", - "shopValue": "149" - } - ], - "name": "Skewered chompy", - "id": "7235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7279", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to answer this correctly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Challenge scroll", - "id": "7285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Part of the world map, but where?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to a chest.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "7297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "7299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key to some drawers.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "7302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clue!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perhaps someone at the observatory can teach me to navigate?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clue scroll", - "id": "7317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Casket", - "id": "7318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stylish!", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Red boater", - "id": "7319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Red boater", - "id": "7320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stylish!", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Orange boater", - "id": "7321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Orange boater", - "id": "7322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stylish!", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Green boater", - "id": "7323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Green boater", - "id": "7324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stylish!", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Blue boater", - "id": "7325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Blue boater", - "id": "7326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Stylish!", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Black boater", - "id": "7327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "225", - "highAlch": "0", - "shopValue": "225" - } - ], - "name": "Black boater", - "id": "7328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes firelighting lots easier", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Red firelighter", - "id": "7329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes firelighting lots easier", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Green firelighter", - "id": "7330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes firelighting lots easier", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Blue firelighter", - "id": "7331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7332", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7334", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7336", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7338", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7340", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7342", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7344", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7346", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7348", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7350", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7352", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7354", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": 44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7356", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 18, - "attackStab": 0, - "defenceStab": 17, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1272" - } - ], - "name": "Black kiteshield(h)", - "id": "7357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7358", - "bonuses": [ - { - "defenceCrush": 29, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 31, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 29, - "attackStab": 0, - "defenceStab": 21, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "3264" - } - ], - "name": "Adam kiteshield(h)", - "id": "7359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shield with a heraldic design", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7360", - "bonuses": [ - { - "defenceCrush": 46, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": -48, - "attackMagic": -8, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 46, - "attackStab": 0, - "defenceStab": -44, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "21120" - } - ], - "name": "Rune kiteshield(h)", - "id": "7361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Those studs should provide a bit more protection, nice trim too!", - "values": [ - { - "lowAlch": "850", - "highAlch": "0", - "shopValue": "850" - } - ], - "name": "Studded body (g)", - "id": "7362", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 18, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "850", - "highAlch": "0", - "shopValue": "850" - } - ], - "name": "Studded body (g)", - "id": "7363", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 8, - "defenceSlash": 8, - "attackMagic": 0, - "prayerBonus": 25, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": -4, - "defenceMagic": 25 - } - ] - }, - { - "examine": "Those studs should provide a bit more protection, nice trim too!", - "values": [ - { - "lowAlch": "850", - "highAlch": "0", - "shopValue": "850" - } - ], - "name": "Studded body (t)", - "id": "7364", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 18, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "850", - "highAlch": "0", - "shopValue": "850" - } - ], - "name": "Studded body (t)", - "id": "7365", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 8, - "defenceSlash": 8, - "attackMagic": 0, - "prayerBonus": 25, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": -4, - "defenceMagic": 25 - } - ] - }, - { - "examine": "Those studs should provide a bit more protection. Nice trim too!", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Studded chaps (g)", - "id": "7366", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 18, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Studded chaps (g)", - "id": "7367", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 8, - "defenceSlash": 8, - "attackMagic": 0, - "prayerBonus": 25, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": -4, - "defenceMagic": 25 - } - ] - }, - { - "examine": "Those studs should provide a bit more protection. Nice trim too!", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Studded chaps (t)", - "id": "7368", - "bonuses": [ - { - "defenceCrush": 22, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 25, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 18, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "750", - "highAlch": "0", - "shopValue": "750" - } - ], - "name": "Studded chaps (t)", - "id": "7369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "7800", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "D-hide body(g)", - "id": "7370", - "bonuses": [ - { - "defenceCrush": 45, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 40, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7800", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "D-hide body(g)", - "id": "7371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "7800", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "D-hide body (t)", - "id": "7372", - "bonuses": [ - { - "defenceCrush": 45, - "attackRange": 15, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 32, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 40, - "attackStab": 0, - "defenceStab": 40, - "defenceMagic": 20 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "7800", - "highAlch": "0", - "shopValue": "7800" - } - ], - "name": "D-hide body (t)", - "id": "7373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "9360", - "highAlch": "0", - "shopValue": "9360" - } - ], - "name": "D-hide body (g)", - "id": "7374", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 20, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 45, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9360", - "highAlch": "0", - "shopValue": "9360" - } - ], - "name": "D-hide body (g)", - "id": "7375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "9360", - "highAlch": "0", - "shopValue": "9360" - } - ], - "name": "D-hide body (t)", - "id": "7376", - "bonuses": [ - { - "defenceCrush": 50, - "attackRange": 20, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 37, - "attackMagic": -15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 45, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": 30 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "9360", - "highAlch": "0", - "shopValue": "9360" - } - ], - "name": "D-hide body (t)", - "id": "7377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "D-hide chaps (g)", - "id": "7378", - "bonuses": [ - { - "defenceCrush": 24, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 16, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "D-hide chaps (g)", - "id": "7379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "D-hide chaps (t)", - "id": "7380", - "bonuses": [ - { - "defenceCrush": 24, - "attackRange": 8, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 16, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 22, - "attackStab": 0, - "defenceStab": 22, - "defenceMagic": 8 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2340" - } - ], - "name": "D-hide chaps (t)", - "id": "7381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "D-hide chaps (g)", - "id": "7382", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 25, - "defenceMagic": 14 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "D-hide chaps (g)", - "id": "7383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Made from 100% real dragonhide. With colourful trim!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "D-hide chaps (t)", - "id": "7384", - "bonuses": [ - { - "defenceCrush": 27, - "attackRange": 11, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": -10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 25, - "attackStab": 0, - "defenceStab": 25, - "defenceMagic": 14 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "2592" - } - ], - "name": "D-hide chaps (t)", - "id": "7385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Leg covering favoured by women and wizards. With a colourful trim!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue skirt (g)", - "id": "7386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue skirt (g)", - "id": "7387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Leg covering favoured by women and wizards. With a colourful trim!", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue skirt (t)", - "id": "7388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Blue skirt (t)", - "id": "7389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can do magic better in this.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wizard robe (g)", - "id": "7390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wizard robe (g)", - "id": "7391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I can do magic better in this.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wizard robe (t)", - "id": "7392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "15", - "highAlch": "0", - "shopValue": "15" - } - ], - "name": "Wizard robe (t)", - "id": "7393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat, with colourful trim.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat (g)", - "id": "7394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat (g)", - "id": "7395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silly pointed hat, with colourful trim.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat (t)", - "id": "7396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Wizard hat (t)", - "id": "7397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted Wizards robes.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Enchanted bottoms", - "id": "7398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 15, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 15 - } - ] - }, - { - "examine": "Enchanted Wizards robes.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Enchanted top", - "id": "7399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 20, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 20 - } - ] - }, - { - "examine": "A three pointed hat of magic.", - "values": [ - { - "lowAlch": "1500", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Enchanted hat", - "id": "7400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "800", - "highAlch": "0", - "shopValue": "800" - } - ], - "name": "Enchanted bottoms", - "id": "7401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1200", - "highAlch": "0", - "shopValue": "1200" - } - ], - "name": "Enchanted top", - "id": "7402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "1500" - } - ], - "name": "Enchanted hat", - "id": "7403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A number of chemical covered wooden logs.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Red logs", - "id": "7404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A number of chemical covered wooden logs.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Green logs", - "id": "7405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A number of chemical covered wooden logs.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Blue logs", - "id": "7406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "132000" - } - ], - "name": "Dragon 2h sword", - "id": "7407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I shouldn't joke, this is a grave matter.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Draynor skull", - "id": "7408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The only way to kill a Tanglefoot.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic secateurs", - "id": "7409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Contains the Fairy Queen's magic essence.", - "values": [ - { - "lowAlch": "1", - "highAlch": "7", - "shopValue": "1" - } - ], - "name": "Queen's secateurs", - "id": "7410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 9, - "strengthBonus": 1, - "defenceSlash": 1, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": -5, - "defenceRange": 0, - "attackStab": 7, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "A list of the Fairy Queen's symptoms.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Symptoms list", - "id": "7411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bird's nest with some seeds in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bird nest", - "id": "7413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "With it, you row.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Paddle", - "id": "7414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Paddle", - "id": "7415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mole claw.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Mole claw", - "id": "7416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "600", - "highAlch": "0", - "shopValue": "600" - } - ], - "name": "Mole claw", - "id": "7417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The skin of a large mole.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Mole skin", - "id": "7418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "400", - "highAlch": "0", - "shopValue": "400" - } - ], - "name": "Mole skin", - "id": "7419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A slayer monster.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mutated zygomite", - "id": "7420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Fungicide spray 10", - "id": "7421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 9", - "id": "7422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 8", - "id": "7423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 7", - "id": "7424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 6", - "id": "7425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 5", - "id": "7426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 4", - "id": "7427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 3", - "id": "7428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 2", - "id": "7429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 1", - "id": "7430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Pumps fungicide.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fungicide spray 0", - "id": "7431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Does exactly what it says on the tin. (Kills Fungi.)", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Fungicide", - "id": "7432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Spoooooon!", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Wooden spoon", - "id": "7433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Wooden spoon", - "id": "7434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large whisk of death.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Egg whisk", - "id": "7435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Egg whisk", - "id": "7436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Use the spork.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Spork", - "id": "7437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "325", - "highAlch": "0", - "shopValue": "325" - } - ], - "name": "Spork", - "id": "7438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large spatula... of doom!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Spatula", - "id": "7439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1152" - } - ], - "name": "Spatula", - "id": "7440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Looks like it's non-stick too!", - "values": [ - { - "lowAlch": "1660", - "highAlch": "0", - "shopValue": "1660" - } - ], - "name": "Frying pan", - "id": "7441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1660", - "highAlch": "0", - "shopValue": "1660" - } - ], - "name": "Frying pan", - "id": "7442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Generally used for impaling fresh meat.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "0", - "shopValue": "3200" - } - ], - "name": "Skewer", - "id": "7443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3200", - "highAlch": "0", - "shopValue": "3200" - } - ], - "name": "Skewer", - "id": "7444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "That's how I roll!", - "values": [ - { - "lowAlch": "14400", - "highAlch": "0", - "shopValue": "14400" - } - ], - "name": "Rolling pin", - "id": "7445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "14400", - "highAlch": "0", - "shopValue": "14400" - } - ], - "name": "Rolling pin", - "id": "7446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sharp, dependable knife, for filleting meat.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Kitchen knife", - "id": "7447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Kitchen knife", - "id": "7448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Often used to soften tough meat up.", - "values": [ - { - "lowAlch": "41500", - "highAlch": "000", - "shopValue": "41500" - } - ], - "name": "Meat tenderiser", - "id": "7449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "41500", - "highAlch": "0", - "shopValue": "41500" - } - ], - "name": "Meat tenderiser", - "id": "7450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An effective tool for chopping tough meat.", - "values": [ - { - "lowAlch": "25600", - "highAlch": "0", - "shopValue": "25600" - } - ], - "name": "Cleaver", - "id": "7451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "25600", - "highAlch": "0", - "shopValue": "25600" - } - ], - "name": "Cleaver", - "id": "7452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of gloves.", - "values": [ - { - "lowAlch": "50", - "highAlch": "2", - "shopValue": "50" - } - ], - "name": "Donkey Gloves", - "id": "7453", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 2, - "attackSlash": 2, - "strengthBonus": 2, - "defenceSlash": 2, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 2, - "attackStab": 2, - "defenceStab": 2, - "defenceMagic": 1 - } - ] - }, - { - "examine": "A pair of gloves.", - "values": [ - { - "lowAlch": "100", - "highAlch": "2", - "shopValue": "100" - } - ], - "name": "Bronze Gloves", - "id": "7454", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 2, - "attackSlash": 2, - "strengthBonus": 2, - "defenceSlash": 2, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": 2, - "defenceRange": 2, - "attackStab": 2, - "defenceStab": 2, - "defenceMagic": 1 - } - ] - }, - { - "examine": "A pair of gloves.", - "values": [ - { - "lowAlch": "250", - "highAlch": "3", - "shopValue": "250" - } - ], - "name": "Gloves", - "id": "7455", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": 3, - "attackSlash": 3, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 3, - "defenceRange": 3, - "attackStab": 3, - "defenceStab": 3, - "defenceMagic": 2 - } - ] - }, - { - "examine": "A pair of gloves.", - "values": [ - { - "lowAlch": "500", - "highAlch": "4", - "shopValue": "500" - } - ], - "name": "Gloves", - "id": "7456", - "bonuses": [ - { - "defenceCrush": 4, - "attackRange": 4, - "attackSlash": 4, - "strengthBonus": 4, - "defenceSlash": 4, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 4, - "defenceRange": 4, - "attackStab": 4, - "defenceStab": 4, - "defenceMagic": 2 - } - ] - }, - { - "examine": "A pair of nice gloves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "5", - "shopValue": "1000" - } - ], - "name": "Gloves", - "id": "7457", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": 5, - "attackSlash": 5, - "strengthBonus": 5, - "defenceSlash": 5, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": 5, - "attackStab": 5, - "defenceStab": 5, - "defenceMagic": 3 - } - ] - }, - { - "examine": "A pair of nice gloves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "6", - "shopValue": "1500" - } - ], - "name": "Gloves", - "id": "7458", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": 6, - "attackSlash": 6, - "strengthBonus": 6, - "defenceSlash": 6, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 6, - "defenceRange": 6, - "attackStab": 6, - "defenceStab": 6, - "defenceMagic": 3 - } - ] - }, - { - "examine": "A pair of nice gloves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "7", - "shopValue": "2500" - } - ], - "name": "Gloves", - "id": "7459", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": 7, - "attackSlash": 7, - "strengthBonus": 7, - "defenceSlash": 7, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 7, - "attackStab": 7, - "defenceStab": 7, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A pair of very nice gloves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "8", - "shopValue": "5000" - } - ], - "name": "Gloves", - "id": "7460", - "bonuses": [ - { - "defenceCrush": 8, - "attackRange": 8, - "attackSlash": 8, - "strengthBonus": 8, - "defenceSlash": 8, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 8, - "defenceRange": 8, - "attackStab": 8, - "defenceStab": 8, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A pair of very nice gloves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "9", - "shopValue": "100000" - } - ], - "name": "Gloves", - "id": "7461", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 9, - "attackSlash": 9, - "strengthBonus": 9, - "defenceSlash": 9, - "attackMagic": 5, - "prayerBonus": 0, - "attackCrush": 9, - "defenceRange": 9, - "attackStab": 9, - "defenceStab": 9, - "defenceMagic": 5 - } - ] - }, - { - "examine": "A pair of very nice gloves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "12", - "shopValue": "60000" - } - ], - "name": "Gloves", - "id": "7462", - "bonuses": [ - { - "defenceCrush": 12, - "attackRange": 12, - "attackSlash": 12, - "strengthBonus": 12, - "defenceSlash": 12, - "attackMagic": 6, - "prayerBonus": 0, - "attackCrush": 12, - "defenceRange": 12, - "attackStab": 12, - "defenceStab": 12, - "defenceMagic": 6 - } - ] - }, - { - "examine": "A little heap of cornflour.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cornflour", - "id": "7463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tatty old book belonging to the Wise Old Man of Draynor Village.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Book on chickens", - "id": "7464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Surprise, it looks like a vanilla pod.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vanilla pod", - "id": "7465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's cornflour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cornflour", - "id": "7466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cornflour", - "id": "7467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's cornflour in a pot.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pot of cornflour", - "id": "7468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pot of cornflour", - "id": "7469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mixture of milk, cream and cornflour.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cornflour mixture", - "id": "7470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bucket of milk and cream.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Milky mixture", - "id": "7471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some cinnamon sticks.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cinnamon", - "id": "7472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's just missing a sprinkling of cinnamon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brulee", - "id": "7473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of brulee mixture - needs egg.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brulee", - "id": "7474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perfect, it just needs flambeing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brulee", - "id": "7475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of brulee supreme.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brulee supreme", - "id": "7476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "What came first, the chicken or...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Evil chicken's egg", - "id": "7477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's got a dragon on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon token", - "id": "7478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a meat and potato stew with fancy seasoning.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Spicy stew", - "id": "7479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red spice (4)", - "id": "7480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red spice (3)", - "id": "7481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red spice (2)", - "id": "7482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red spice (1)", - "id": "7483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange spice (4)", - "id": "7484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange spice (3)", - "id": "7485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange spice (2)", - "id": "7486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange spice (1)", - "id": "7487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown spice (4)", - "id": "7488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown spice (3)", - "id": "7489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown spice (2)", - "id": "7490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown spice (1)", - "id": "7491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow spice (4)", - "id": "7492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow spice (3)", - "id": "7493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow spice (2)", - "id": "7494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow spice (1)", - "id": "7495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Allows for equal distribution of spice.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty spice shaker", - "id": "7496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A cool refreshing fruit mix. With ash in for some reason.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Dirty blast", - "id": "7497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I wonder what happens if I rub it...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Antique lamp", - "id": "7498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Evil Dave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Evil dave", - "id": "7499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a Dwarf.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarf", - "id": "7500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Still arguing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goblins", - "id": "7501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A helpful man.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lumbridge guide", - "id": "7502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The monkey King.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey", - "id": "7503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "From the desert.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Osman", - "id": "7504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "AARGH.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pirate pete", - "id": "7505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The whitest of knights.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sir amik varze", - "id": "7506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Huge and dumb.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skrach", - "id": "7507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There appears to be a coin in the bottom. Liked by dwarves.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale (g)", - "id": "7508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Red hot and glowing, ouch! Only for dwarf consumption.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven rock cake", - "id": "7509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Cool and heavy as a brick. Only for dwarf consumption.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dwarven rock cake", - "id": "7510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Two out of two goblin generals prefer it!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Slop of compromise", - "id": "7511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Previously a nice crispy loaf of bread. Now just kind of icky.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Soggy bread", - "id": "7512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "They clearly taste so much better this way!", - "values": [ - { - "lowAlch": "3", - "highAlch": "0", - "shopValue": "3" - } - ], - "name": "Spicy maggots", - "id": "7513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Orange slices which have been dyed, but it looks more like they died.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dyed orange", - "id": "7514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Glad these aren't in my bed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Breadcrumbs", - "id": "7515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Slightly damp seaweed.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kelp", - "id": "7516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Kelp flakes. Smells of the sea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground kelp", - "id": "7517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A smelly meat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crab meat", - "id": "7518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A smelly meat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crab meat", - "id": "7519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oh dear, it's burnt.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt crab meat", - "id": "7520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice and tasty!", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Cooked crab meat", - "id": "7521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Cooked crab meat", - "id": "7522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice and tasty!", - "values": [ - { - "lowAlch": "40", - "highAlch": "0", - "shopValue": "40" - } - ], - "name": "Cooked crab meat", - "id": "7523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice and tasty!", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Cooked crab meat", - "id": "7524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice and tasty!", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Cooked crab meat", - "id": "7525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice and tasty!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cooked crab meat", - "id": "7526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A smelly paste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground crab meat", - "id": "7527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A smelly paste.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground cod", - "id": "7528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Would taste nicer if I cooked it.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Raw fishcake", - "id": "7529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmmm, reminds me of the seaside.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Cooked fishcake", - "id": "7530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Darn thing's all burnt!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt fishcake", - "id": "7531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Hmmm, what can I use this for?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mudskipper hide", - "id": "7532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rock.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "7533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You'll look daft, but at least you won't drown!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishbowl helmet", - "id": "7534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'll need a helmet to make this work.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diving apparatus", - "id": "7535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh off the crab itself.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fresh crab claw", - "id": "7536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "If it's good enough for crabs, it's good enough for me!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crab claw", - "id": "7537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fresh off the crab itself.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fresh crab shell", - "id": "7538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "If it's good enough for crabs, it's good enough for me!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crab helmet", - "id": "7539", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 4, - "defenceMagic": -1 - } - ] - }, - { - "examine": "Darn, it's useless now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken crab claw", - "id": "7540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Darn, it's useless now.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken crab shell", - "id": "7541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Imbued with knowledge itself.", - "values": [ - { - "lowAlch": "50", - "highAlch": "0", - "shopValue": "50" - } - ], - "name": "Cake of guidance", - "id": "7542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Now all I need to do is cook it.", - "values": [ - { - "lowAlch": "20", - "highAlch": "0", - "shopValue": "20" - } - ], - "name": "Raw guide cake", - "id": "7543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Egg containing knowledge.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Enchanted egg", - "id": "7544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Guiding milk.", - "values": [ - { - "lowAlch": "6", - "highAlch": "0", - "shopValue": "6" - } - ], - "name": "Enchanted milk", - "id": "7545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pot of special flour.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Enchanted flour", - "id": "7546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A druid pouch.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Druid pouch", - "id": "7547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A potato seed - plant in an allotment.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potato seed", - "id": "7548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Potato seed", - "id": "7549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An onion seed - plant in an allotment.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onion seed", - "id": "7550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onion seed", - "id": "7551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Arrows with mithril heads.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril arrow", - "id": "7552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril arrow", - "id": "7553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire rune", - "id": "7554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire rune", - "id": "7555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Water rune", - "id": "7556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Water rune", - "id": "7557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "One of the 4 basic elemental Runes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Air rune", - "id": "7558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Air rune", - "id": "7559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Used for low level missile spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chaos rune", - "id": "7560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chaos rune", - "id": "7561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tomato seed - plant in an allotment.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomato seed", - "id": "7562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tomato seed", - "id": "7563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An inflated toad tied to a rock like a balloon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Balloon toad", - "id": "7564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An inflated toad tied to a rock like a balloon.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Balloon toad", - "id": "7565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The uncooked meat of a Jubbly bird.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Raw jubbly", - "id": "7566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Raw jubbly", - "id": "7567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Lovely Jubbly!", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Cooked jubbly", - "id": "7568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "150", - "highAlch": "0", - "shopValue": "150" - } - ], - "name": "Cooked jubbly", - "id": "7569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The burnt meat of a Jubbly bird.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt jubbly", - "id": "7570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt jubbly", - "id": "7571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Like a banana only redder.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Red banana", - "id": "7572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Like Monkey Nuts only Tchikier.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Tchiki monkey nuts", - "id": "7573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Perfect for stuffing snakes.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Sliced red banana", - "id": "7574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mixing this with jam would just be wrong.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Tchiki nut paste", - "id": "7575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Like a snake only not alive.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake corpse", - "id": "7576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This snake is stuffed right up.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw stuffed snake", - "id": "7577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Is this really what you wanted to do?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Odd stuffed snake", - "id": "7578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Fit for a Monkey King.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stuffed snake", - "id": "7579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a burnt snake.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake over-cooked", - "id": "7580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Your hellish pet cat!!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Overgrown hellcat", - "id": "7581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Your hellish pet cat!!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hell cat", - "id": "7582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Your hellish pet cat!!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hell-kitten", - "id": "7583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Your hellish pet cat!!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lazy hell cat", - "id": "7584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Your hellish pet cat!!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wily hellcat", - "id": "7585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "All is white!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dummy", - "id": "7586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Filled with items. Like a bank, but spookier!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coffin", - "id": "7587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Filled with items. Like a bank, but spookier!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coffin", - "id": "7588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Filled with items. Like a bank, but spookier!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coffin", - "id": "7589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Filled with items. Like a bank, but spookier!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coffin", - "id": "7590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Filled with items. Like a bank, but spookier!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coffin", - "id": "7591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Aside from the braaaains on the lapel, it's still quite good.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie shirt", - "id": "7592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for a shamble about town.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie trousers", - "id": "7593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I look 40,000 years old in this...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie mask", - "id": "7594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Smells pretty funky.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie gloves", - "id": "7595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Thrilling.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie boots", - "id": "7596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It seems bleached with age.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Its a symbol.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Its a symbol.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Its a symbol.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Its a symbol.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Its a symbol.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Item", - "id": "7618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A rod made from Silver and Mithril.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silvthrill rod", - "id": "7620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bucket partially filled with rubble.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of rubble", - "id": "7622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of rubble", - "id": "7623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bucket almost full of rubble.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of rubble", - "id": "7624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of rubble", - "id": "7625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bucket totally filled with rubble.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of rubble", - "id": "7626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of rubble", - "id": "7627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A frament of plaster with some impressions on it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plaster fragment", - "id": "7628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient tattered scroll.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dusty scroll", - "id": "7629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An old and musty looking crate.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crate", - "id": "7630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crate", - "id": "7631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A key for the Temple Library.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Temple library key", - "id": "7632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book about seven warrior priests, written about 200 years ago.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ancient book", - "id": "7633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient history book.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Battered tome", - "id": "7634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An ancient leather-bound tome.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Leather book", - "id": "7635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Rod of Ivandis dust.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rod dust", - "id": "7636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silvery rod of mithril and silver with a sapphire on the top.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silvthrill rod", - "id": "7637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A silvery rod of mithril and silver with a sapphire on the top, it has been enchanted.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silvthrill rod", - "id": "7638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fully charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(10)", - "id": "7639", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(9)", - "id": "7640", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(8)", - "id": "7641", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(7)", - "id": "7642", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(6)", - "id": "7643", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(5)", - "id": "7644", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(4)", - "id": "7645", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(3)", - "id": "7646", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "2! 2 charges left! Ha Ha Ha.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(2)", - "id": "7647", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "A partially charged rod.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Rod of ivandis(1)", - "id": "7648", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": -1, - "strengthBonus": 3, - "defenceSlash": 3, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Rod of Ivandis mould.", - "values": [ - { - "lowAlch": "100", - "highAlch": "0", - "shopValue": "100" - } - ], - "name": "Rod clay mould", - "id": "7649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's ground up silver.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Silver dust", - "id": "7650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "8000", - "highAlch": "0", - "shopValue": "8000" - } - ], - "name": "Silver dust", - "id": "7651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An unfinished potion.", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item", - "values": [ - { - "lowAlch": "110", - "highAlch": "0", - "shopValue": "110" - } - ], - "name": "Guthix balance(unf)", - "id": "7659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(4)", - "id": "7660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(4)", - "id": "7661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(3)", - "id": "7662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(3)", - "id": "7663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(2)", - "id": "7664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(2)", - "id": "7665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A potion of harralander, red spiders eggs, garlic and silver dust.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(1)", - "id": "7666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "200", - "highAlch": "0", - "shopValue": "200" - } - ], - "name": "Guthix balance(1)", - "id": "7667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A specially crafted hammer with strange markings on it.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "-4", - "shopValue": "3000" - } - ], - "name": "Gadderhammer", - "id": "7668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": -4, - "strengthBonus": 35, - "defenceSlash": 0, - "attackMagic": -4, - "prayerBonus": 0, - "attackCrush": 35, - "defenceRange": 0, - "attackStab": -4, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "3000", - "highAlch": "0", - "shopValue": "3000" - } - ], - "name": "Gadderhammer", - "id": "7669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I think they look a bit silly.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Boxing gloves", - "id": "7671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Boxing gloves", - "id": "7672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I think they look a bit silly.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Boxing gloves", - "id": "7673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "75", - "highAlch": "0", - "shopValue": "75" - } - ], - "name": "Boxing gloves", - "id": "7674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A less-than razor sharp sword.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden sword", - "id": "7675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A less-than strong shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden shield", - "id": "7676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It knows where the treasure is.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic stone", - "id": "7677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You can use this to open the prize chest!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prize key", - "id": "7678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A good tool for bashing someone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pugel", - "id": "7679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pugel", - "id": "7680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Party Pete's Bumper Book Of Games", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Game book", - "id": "7681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Try to throw it over the stick.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hoop", - "id": "7682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hoop", - "id": "7683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Not much good in combat, but perfect for the dart board!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dart", - "id": "7684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dart", - "id": "7685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A safe arrow for indoor ranging games.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bow and arrow", - "id": "7686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bow and arrow", - "id": "7687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The kettle is empty", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kettle", - "id": "7688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kettle", - "id": "7689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's full of cold water.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Full kettle", - "id": "7690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's full of boiling water.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hot kettle", - "id": "7691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 4", - "id": "7692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 4", - "id": "7693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 3", - "id": "7694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 3", - "id": "7695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 2", - "id": "7696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 2", - "id": "7697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 1", - "id": "7698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea 1", - "id": "7699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Add boiling water to make a tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot with leaves", - "id": "7700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot with leaves", - "id": "7701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This teapot is empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot", - "id": "7702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot", - "id": "7703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Add boiling water to make a tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot with leaves", - "id": "7712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot with leaves", - "id": "7713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This teapot is empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot", - "id": "7714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot", - "id": "7715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I'd really like a nice cup of tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of tea", - "id": "7723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Add boiling water to make a tea.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot with leaves", - "id": "7724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot with leaves", - "id": "7725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This teapot is empty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot", - "id": "7726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teapot", - "id": "7727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An empty cup.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Empty cup", - "id": "7728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Empty cup", - "id": "7729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A nice cup of nettle tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "7730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A milky cup of nettle tea.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "7731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A porcelain cup.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Porcelain cup", - "id": "7732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nettle tea in a porcelain cup.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "7733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some milky nettle tea in a porcelain cup.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "7734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A porcelain cup.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Porcelain cup", - "id": "7735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some nettle tea in a porcelain cup.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "7736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some milky nettle tea in a porcelain cup.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Cup of tea", - "id": "7737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mmm, how about a nice cup of tea?", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tea leaves", - "id": "7738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tea leaves", - "id": "7739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of frothy ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer", - "id": "7740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer", - "id": "7741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I need to fill this with beer.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer glass", - "id": "7742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Beer glass", - "id": "7743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Probably the finest ale in Asgarnia.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale", - "id": "7744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Asgarnian ale", - "id": "7745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of frothy ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Greenman's ale", - "id": "7746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item's ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Greenman's ale", - "id": "7747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of bitter.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dragon bitter", - "id": "7748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Dragon bitter", - "id": "7749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A foul smelling brew.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Moonlight mead", - "id": "7750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "5", - "highAlch": "0", - "shopValue": "5" - } - ], - "name": "Moonlight mead", - "id": "7751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A glass of cider.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cider", - "id": "7752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Cider", - "id": "7753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A fruity, full-bodied ale.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's delight", - "id": "7754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "2", - "highAlch": "0", - "shopValue": "2" - } - ], - "name": "Chef's delight", - "id": "7755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Try dipping it in paint and applying it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Paintbrush", - "id": "7756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Paintbrush", - "id": "7757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A decent enough weapon gone rusty.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rusty sword", - "id": "7758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy soldier", - "id": "7759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy soldier", - "id": "7760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy soldier (wound)", - "id": "7761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy soldier (wound)", - "id": "7762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy doll", - "id": "7763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy doll", - "id": "7764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy doll (wound)", - "id": "7765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "ISwap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy doll (wound)", - "id": "7766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy mouse", - "id": "7767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy mouse", - "id": "7768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy mouse (wound)", - "id": "7769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy mouse (wound)", - "id": "7770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Nice bit of crafting!", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy cat", - "id": "7771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Toy cat", - "id": "7772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Leafless bush branch.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Branch", - "id": "7773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Yellow reward token.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Reward token", - "id": "7774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Red reward token.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Reward token", - "id": "7775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blue reward token.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Reward token", - "id": "7776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A long section of vine made up of lots of shorter sections.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Long vine", - "id": "7777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A short section of vines.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Short vine", - "id": "7778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on fishing.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Fishing tome", - "id": "7779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on fishing.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Fishing tome", - "id": "7780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on fishing.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Fishing tome", - "id": "7781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on agility.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Agility tome", - "id": "7782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on agility.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Agility tome", - "id": "7783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on agility.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Agility tome", - "id": "7784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on thieving.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Thieving tome", - "id": "7785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on thieving.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Thieving tome", - "id": "7786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on thieving.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Thieving tome", - "id": "7787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the slayer skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Slayer tome", - "id": "7788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the slayer skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Slayer tome", - "id": "7789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the slayer skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Slayer tome", - "id": "7790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the mining skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Mining tome", - "id": "7791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the mining skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Mining tome", - "id": "7792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the mining skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Mining tome", - "id": "7793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the firemaking skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Firemaking tome", - "id": "7794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the firemaking skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Firemaking tome", - "id": "7795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the firemaking skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Firemaking tome", - "id": "7796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the woodcutting skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Woodcutting tome", - "id": "7797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the woodcutting skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Woodcutting tome", - "id": "7798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tome of learning which focuses on the woodcutting skill.", - "values": [ - { - "lowAlch": "5000", - "highAlch": "0", - "shopValue": "5000" - } - ], - "name": "Woodcutting tome", - "id": "7799", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A shell from a Giant Snail.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snail shell", - "id": "7800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Scaly but not slimy!", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Snake hide", - "id": "7801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "35", - "highAlch": "0", - "shopValue": "35" - } - ], - "name": "Snake hide", - "id": "7802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A non-magical copy of the make-over mage's amulet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yin yang amulet", - "id": "7803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Zaros Mjolnir.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Zaros mjolnir", - "id": "7804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "625", - "highAlch": "0", - "shopValue": "625" - } - ], - "name": "Zaros mjolnir", - "id": "7805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy duty sword.", - "values": [ - { - "lowAlch": "26", - "highAlch": "20", - "shopValue": "26" - } - ], - "name": "Anger sword", - "id": "7806", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 5, - "defenceSlash": 2, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 20, - "defenceRange": 0, - "attackStab": 20, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy duty axe.", - "values": [ - { - "lowAlch": "182", - "highAlch": "20", - "shopValue": "182" - } - ], - "name": "Anger battleaxe", - "id": "7807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 13, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 20, - "defenceRange": -1, - "attackStab": 20, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy duty mace.", - "values": [ - { - "lowAlch": "18", - "highAlch": "20", - "shopValue": "18" - } - ], - "name": "Anger mace", - "id": "7808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 5, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 20, - "defenceRange": 0, - "attackStab": 20, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heavy duty spear.", - "values": [ - { - "lowAlch": "26", - "highAlch": "20", - "shopValue": "26" - } - ], - "name": "Anger spear", - "id": "7809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 20, - "strengthBonus": 6, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 20, - "defenceRange": 0, - "attackStab": 20, - "defenceStab": 1, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This wine clearly did not age well.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jug of vinegar", - "id": "7810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Well, this pot is certainly full of vinegar and no mistake.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pot of vinegar", - "id": "7811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goblin skull", - "id": "7812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a goblin bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goblin skull", - "id": "7814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bear ribs", - "id": "7815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a bear bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bear ribs", - "id": "7817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ram skull", - "id": "7818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a ram bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ram skull", - "id": "7820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unicorn bone", - "id": "7821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a unicorn bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unicorn bone", - "id": "7823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant rat bone", - "id": "7824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a giant rat bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant rat bone", - "id": "7826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant bat wing", - "id": "7827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a giant bat bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant bat wing", - "id": "7829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wolf bone", - "id": "7830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a wolf bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wolf bone", - "id": "7832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bat wing", - "id": "7833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a bat bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bat wing", - "id": "7835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat bone", - "id": "7836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a rat bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rat bone", - "id": "7838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Baby dragon bone", - "id": "7839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a baby blue dragon bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Baby dragon bone", - "id": "7841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre ribs", - "id": "7842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an ogre bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ogre ribs", - "id": "7844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jogre bone", - "id": "7845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a jogre bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jogre bone", - "id": "7847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zogre bone", - "id": "7848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a zogre bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zogre bone", - "id": "7850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mogre bone", - "id": "7851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a mogre bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mogre bone", - "id": "7853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey paw", - "id": "7854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a monkey bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey paw", - "id": "7856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dagannoth ribs", - "id": "7857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a Dagannoth bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dagannoth ribs", - "id": "7859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake spine", - "id": "7860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a snake bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Snake spine", - "id": "7862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie bone", - "id": "7863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a zombie bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zombie bone", - "id": "7865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Werewolf bone", - "id": "7866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a werewolf bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Werewolf bone", - "id": "7868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moss giant bone", - "id": "7869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A Moss Giant's bone", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moss giant bone", - "id": "7871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire giant bone", - "id": "7872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a fire giant bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire giant bone", - "id": "7874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ice giant ribs", - "id": "7875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an ice giant bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ice giant ribs", - "id": "7877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Terrorbird wing", - "id": "7878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a terrorbird bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Terrorbird wing", - "id": "7880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghoul bone", - "id": "7881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a ghoul bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghoul bone", - "id": "7883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Troll bone", - "id": "7884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a troll bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Troll bone", - "id": "7886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Seagull wing", - "id": "7887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a seagull bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Seagull wing", - "id": "7889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Undead cow ribs", - "id": "7890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an undead cow bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Undead cow ribs", - "id": "7892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Experiment bone", - "id": "7893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is an experiment bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7894", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Experiment bone", - "id": "7895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rabbit bone", - "id": "7896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a rabbit bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rabbit bone", - "id": "7898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basilisk bone", - "id": "7899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a basilisk bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basilisk bone", - "id": "7901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert lizard bone", - "id": "7902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a desert lizard bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert lizard bone", - "id": "7904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cave goblin skull", - "id": "7905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a cave goblin bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cave goblin skull", - "id": "7907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big frog leg", - "id": "7908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a big frog bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big frog leg", - "id": "7910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vulture wing", - "id": "7911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a vulture bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vulture wing", - "id": "7913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs a good polish.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jackal bone", - "id": "7914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "There is a jackal bone in here.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone in vinegar", - "id": "7915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This bone belongs in a museum!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jackal bone", - "id": "7916", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Makes me feel baaad to the bone.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ram skull helm", - "id": "7917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The Bonesack is a little old item that protects like leather.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bonesack", - "id": "7918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very good vintage.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Bottle of wine", - "id": "7919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "500", - "highAlch": "0", - "shopValue": "500" - } - ], - "name": "Bottle of wine", - "id": "7920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This one has clearly been taken down and passed around.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty wine bottle", - "id": "7921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The money off voucher has expired.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Al kharid flyer", - "id": "7922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A ring given to you by the Easter Bunny.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter ring", - "id": "7927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "\"Best before 24th April.\"", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter egg", - "id": "7928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "\"Best before 24th April.\"", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter egg", - "id": "7929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "\"Best before 24th April.\"", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter egg", - "id": "7930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "\"Best before 24th April.\"", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter egg", - "id": "7931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "\"Best before 24th April.\"", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter egg", - "id": "7932", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "\"Best before 24th April.\"", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Easter egg", - "id": "7933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A field ration to help your wounds go away.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Field ration", - "id": "7934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "300", - "highAlch": "0", - "shopValue": "300" - } - ], - "name": "Field ration", - "id": "7935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An uncharged Rune Stone of extra capability.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pure essence", - "id": "7936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "4", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Pure essence", - "id": "7937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Bobbity bob!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bob", - "id": "7938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A word in your shell-like.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Tortoise shell", - "id": "7939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "1000", - "highAlch": "0", - "shopValue": "1000" - } - ], - "name": "Tortoise shell", - "id": "7940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A sturdy sheet of iron.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Iron sheet", - "id": "7941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Freshly caught. Needs cooking.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Fresh monkfish", - "id": "7942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Freshly caught and cooked - perfect for storing. Not so good for eating.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Fresh monkfish", - "id": "7943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should try cooking this.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Raw monkfish", - "id": "7944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Raw monkfish", - "id": "7945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tasty fish.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Monkfish", - "id": "7946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Monkfish", - "id": "7947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Maybe a little less heat next time.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Burnt monkfish", - "id": "7948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "230", - "highAlch": "0", - "shopValue": "230" - } - ], - "name": "Burnt monkfish", - "id": "7949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An highly portable army of skeletal magi.", - "values": [ - { - "lowAlch": "30", - "highAlch": "0", - "shopValue": "30" - } - ], - "name": "Bone seeds", - "id": "7950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book taken from the desk of Herman Caranos.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herman's book", - "id": "7951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Useless without the head.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axe handle", - "id": "7952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Axe handle", - "id": "7953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oops!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt shrimp", - "id": "7954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt shrimp", - "id": "7955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I hope there's treasure in it.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Casket", - "id": "7956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mostly clean apron.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White apron", - "id": "7957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A prop for holding up a tunnel roof.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mining prop", - "id": "7958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A box full of stolen Etceterian items.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Heavy box", - "id": "7959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty box", - "id": "7960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diary with one page.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt diary", - "id": "7961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diary with two pages.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt diary", - "id": "7962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diary with three pages.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt diary", - "id": "7963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diary with four pages.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt diary", - "id": "7964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A diary with five pages.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Burnt diary", - "id": "7965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sigrid's letter to Vargas.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Letter", - "id": "7966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A dwarf-made coal engine. It looks very sturdy.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Engine", - "id": "7967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An official-looking scroll.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scroll", - "id": "7968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A beam with a pulley attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pulley beam", - "id": "7969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A long beam with a pulley attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Long pulley beam", - "id": "7970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A very long beam with a pulley attached.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Longer pulley beam", - "id": "7971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The manual for an AMCE Lift-In-A-Box.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lift manual", - "id": "7972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A wooden beam.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beam", - "id": "7973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Servant bell", - "id": "7974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crawling hand", - "id": "7975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cockatrice head", - "id": "7976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basilisk head", - "id": "7977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kurask head", - "id": "7978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Abyssal head", - "id": "7979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kbd heads", - "id": "7980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kq head", - "id": "7981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crawling hand", - "id": "7982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cockatrice head", - "id": "7983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basilisk head", - "id": "7984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kurask head", - "id": "7985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Abyssal head", - "id": "7986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kbd heads", - "id": "7987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kq head", - "id": "7988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big bass", - "id": "7989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big bass", - "id": "7990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big swordfish", - "id": "7991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big swordfish", - "id": "7992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I should get it stuffed!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big shark", - "id": "7993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "I could mount this on my wall!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Big shark", - "id": "7994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A portrait of King Arthur.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Arthur portrait", - "id": "7995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A portrait of Elena.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elena portrait", - "id": "7996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A painting of the statue of King Alvis of Keldagrim.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Keldagrim portrait", - "id": "7997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A portrait of Prince Brand and Princess Astrid of Miscellania.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Misc. portrait", - "id": "7998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The searing Kharid Desert.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert painting", - "id": "7999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The exotic land of the Elves.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Isafdar painting", - "id": "8000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The tropical coast of Karamja.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karamja painting", - "id": "8001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Oxtable's famous painting of the Lumbridge water mill.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lumbridge painting", - "id": "8002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A painting of the spooky forests of Morytania.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Morytania painting", - "id": "8003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A small map of Runescape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small map", - "id": "8004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A medium map of Runescape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Medium map", - "id": "8005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A large map of Runescape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large map", - "id": "8006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Varrock teleport", - "id": "8007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lumbridge teleport", - "id": "8008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Falador teleport", - "id": "8009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Camelot teleport", - "id": "8010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ardougne teleport", - "id": "8011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Watchtower t'port", - "id": "8012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teleport to house", - "id": "8013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones to bananas", - "id": "8014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bones to peaches", - "id": "8015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchant sapphire", - "id": "8016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchant emerald", - "id": "8017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchant ruby", - "id": "8018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchant diamond", - "id": "8019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchant dragonstn.", - "id": "8020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Enchant onyx", - "id": "8021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tablet containing a magic spell.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Telekinetic grab", - "id": "8022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Boxing ring", - "id": "8023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fencing ring", - "id": "8024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat ring", - "id": "8025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ranging pedestals", - "id": "8026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Balance beam", - "id": "8027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Glove rack", - "id": "8028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weapons rack", - "id": "8029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Extra weapons rack", - "id": "8030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bed", - "id": "8031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bed", - "id": "8032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large oak bed", - "id": "8033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak bed", - "id": "8034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large teak bed", - "id": "8035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "4-poster", - "id": "8036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded 4-poster", - "id": "8037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe box", - "id": "8038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak drawers", - "id": "8039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak wardrobe", - "id": "8040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak drawers", - "id": "8041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak wardrobe", - "id": "8042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany 'drobe", - "id": "8043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded wardrobe", - "id": "8044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shaving stand", - "id": "8045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak shaving stand", - "id": "8046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak dresser", - "id": "8047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak dresser", - "id": "8048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy teak dresser", - "id": "8049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany dresser", - "id": "8050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded dresser", - "id": "8051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak clock", - "id": "8052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak clock", - "id": "8053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded clock", - "id": "8054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Saradomin symbol", - "id": "8055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zamorak symbol", - "id": "8056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guthix symbol", - "id": "8057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Saradomin icon", - "id": "8058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zamorak icon", - "id": "8059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guthix icon", - "id": "8060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Icon of bob", - "id": "8061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak altar", - "id": "8062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak altar", - "id": "8063", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cloth-cover'd altar", - "id": "8064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany altar", - "id": "8065", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Limestone altar", - "id": "8066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble altar", - "id": "8067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded altar", - "id": "8068", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden torches", - "id": "8069", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel torches", - "id": "8070", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel candlesticks", - "id": "8071", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold candlesticks", - "id": "8072", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Incense burners", - "id": "8073", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany burners", - "id": "8074", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble burners", - "id": "8075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shuttered window", - "id": "8076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Decorative window", - "id": "8077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stained glass", - "id": "8078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Windchimes", - "id": "8079", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bells", - "id": "8080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Organ", - "id": "8081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small statues", - "id": "8082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Medium statues", - "id": "8083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large statues", - "id": "8084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Suit of armour", - "id": "8085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small portrait", - "id": "8086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Minor head", - "id": "8087", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Medium head", - "id": "8088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Major head", - "id": "8089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mounted sword", - "id": "8090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small landscape", - "id": "8091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guild trophy", - "id": "8092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large portrait", - "id": "8093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large landscape", - "id": "8094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune display case", - "id": "8095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Low-level plants", - "id": "8096", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mid-level plants", - "id": "8097", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "High-level plants", - "id": "8098", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rope bell-pull", - "id": "8099", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bell-pull", - "id": "8100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Posh bell-pull", - "id": "8101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak decoration", - "id": "8102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak decoration", - "id": "8103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded decoration", - "id": "8104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Round shield", - "id": "8105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Square shield", - "id": "8106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kite shield", - "id": "8107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bench", - "id": "8108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bench", - "id": "8109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak bench", - "id": "8110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak dining bench", - "id": "8111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak bench", - "id": "8112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany bench", - "id": "8113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded bench", - "id": "8114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wood dining table", - "id": "8115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak dining table", - "id": "8116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak table", - "id": "8117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak table", - "id": "8118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak table", - "id": "8119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany table", - "id": "8120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Opulent table", - "id": "8121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak door", - "id": "8122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel-plated door", - "id": "8123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble door", - "id": "8124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Decorative blood", - "id": "8125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Decorative pipe", - "id": "8126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hanging skeleton", - "id": "8127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Candles", - "id": "8128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torches", - "id": "8129", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skull torches", - "id": "8130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton guard", - "id": "8131", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guard dog", - "id": "8132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hobgoblin guard", - "id": "8133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Baby red dragon", - "id": "8134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Huge spider", - "id": "8135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Troll guard", - "id": "8136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hellhound", - "id": "8137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demon", - "id": "8138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kalphite soldier", - "id": "8139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tok-xil", - "id": "8140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dagannoth", - "id": "8141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel dragon", - "id": "8142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spike trap", - "id": "8143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Man trap", - "id": "8144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tangle vine", - "id": "8145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble trap", - "id": "8146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teleport trap", - "id": "8147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden crate", - "id": "8148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak chest", - "id": "8149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak chest", - "id": "8150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany chest", - "id": "8151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic chest", - "id": "8152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clay attack stone", - "id": "8153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Attack stone", - "id": "8154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble att. stone", - "id": "8155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical balance 1", - "id": "8156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical balance 2", - "id": "8157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical balance 3", - "id": "8158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jester", - "id": "8159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Treasure hunt", - "id": "8160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hangman game", - "id": "8161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hoop and stick", - "id": "8162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dartboard", - "id": "8163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Archery target", - "id": "8164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak prize chest", - "id": "8165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak prize chest", - "id": "8166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany chest", - "id": "8167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Exit portal", - "id": "8168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Decorative rock", - "id": "8169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pond", - "id": "8170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Imp statue", - "id": "8171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dungeon entrance", - "id": "8172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tree", - "id": "8173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nice tree", - "id": "8174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak tree", - "id": "8175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow tree", - "id": "8176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple tree", - "id": "8177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew tree", - "id": "8178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic tree", - "id": "8179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Plant", - "id": "8180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small fern", - "id": "8181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fern", - "id": "8182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dock leaf", - "id": "8183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thistle", - "id": "8184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Reeds", - "id": "8185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fern", - "id": "8186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bush", - "id": "8187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall plant", - "id": "8188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Short plant", - "id": "8189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large-leaf plant", - "id": "8190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Huge plant", - "id": "8191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gazebo", - "id": "8192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small fountain", - "id": "8193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large fountain", - "id": "8194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Posh fountain", - "id": "8195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Boundary stones", - "id": "8196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden fence", - "id": "8197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone wall", - "id": "8198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron railings", - "id": "8199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Picket fence", - "id": "8200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Garden fence", - "id": "8201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble wall", - "id": "8202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thorny hedge", - "id": "8203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nice hedge", - "id": "8204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small box hedge", - "id": "8205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Topiary hedge", - "id": "8206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy hedge", - "id": "8207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall fancy hedge", - "id": "8208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall box hedge", - "id": "8209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rosemary", - "id": "8210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Daffodils", - "id": "8211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bluebells", - "id": "8212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sunflower", - "id": "8213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marigolds", - "id": "8214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Roses", - "id": "8215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firepit", - "id": "8216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firepit with hook", - "id": "8217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firepit with pot", - "id": "8218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small oven", - "id": "8219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large oven", - "id": "8220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel range", - "id": "8221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy range", - "id": "8222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden shelves 1", - "id": "8223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden shelves 2", - "id": "8224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden shelves 3", - "id": "8225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak shelves 1", - "id": "8226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak shelves 2", - "id": "8227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak shelves 1", - "id": "8228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak shelves 2", - "id": "8229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pump and drain", - "id": "8230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pump and tub", - "id": "8231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sink", - "id": "8232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden larder", - "id": "8233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak larder", - "id": "8234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak larder", - "id": "8235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cat blanket", - "id": "8236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cat basket", - "id": "8237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cushioned basket", - "id": "8238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beer barrel", - "id": "8239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider barrel", - "id": "8240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale", - "id": "8241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenman's ale", - "id": "8242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter", - "id": "8243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight", - "id": "8244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blank poh entity", - "id": "8245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wood kitchen table", - "id": "8246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak kitchen table", - "id": "8247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak kitchen table", - "id": "8248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak staircase", - "id": "8249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak staircase", - "id": "8250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak staircase", - "id": "8251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak staircase", - "id": "8252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak staircase", - "id": "8253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak staircase", - "id": "8254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble staircase", - "id": "8255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble staircase", - "id": "8256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble staircase", - "id": "8257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spiral staircase", - "id": "8258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble spiral", - "id": "8259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crawling hand", - "id": "8260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cockatrice head", - "id": "8261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Basilisk head", - "id": "8262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kurask head", - "id": "8263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Abyssal head", - "id": "8264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kbd heads", - "id": "8265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kq head", - "id": "8266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mounted bass", - "id": "8267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mounted swordfish", - "id": "8268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mounted shark", - "id": "8269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril armour", - "id": "8270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamantite armour", - "id": "8271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite armour", - "id": "8272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cw armour 1", - "id": "8273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cw armour 2", - "id": "8274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cw armour 3", - "id": "8275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune case 1", - "id": "8276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune case 2", - "id": "8277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune case 3", - "id": "8278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silverlight", - "id": "8279", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Excalibur", - "id": "8280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Darklight", - "id": "8281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Anti-dragon shield", - "id": "8282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Amulet of glory", - "id": "8283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cape of legends", - "id": "8284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "King arthur", - "id": "8285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elena", - "id": "8286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant dwarf", - "id": "8287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Miscellanians", - "id": "8288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lumbridge", - "id": "8289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "The desert", - "id": "8290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Morytania", - "id": "8291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Karamja", - "id": "8292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Isafdar", - "id": "8293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small map", - "id": "8294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Medium map", - "id": "8295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large map", - "id": "8296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak cage", - "id": "8297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak and steel cage", - "id": "8298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel cage", - "id": "8299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spiked cage", - "id": "8300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone cage", - "id": "8301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spikes", - "id": "8302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tentacle pool", - "id": "8303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Flame pit", - "id": "8304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rocnar", - "id": "8305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak ladder", - "id": "8306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak ladder", - "id": "8307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany ladder", - "id": "8308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crude wooden chair", - "id": "8309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden chair", - "id": "8310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rocking chair", - "id": "8311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak chair", - "id": "8312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak armchair", - "id": "8313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak armchair", - "id": "8314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany armchair", - "id": "8315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown rug", - "id": "8316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rug", - "id": "8317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Opulent rug", - "id": "8318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bookcase", - "id": "8319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bookcase", - "id": "8320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany b'kcase", - "id": "8321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torn curtains", - "id": "8322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Curtains", - "id": "8323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Opulent curtains", - "id": "8324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clay fireplace", - "id": "8325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone fireplace", - "id": "8326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble fireplace", - "id": "8327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak portal", - "id": "8328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany portal", - "id": "8329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble portal", - "id": "8330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teleport focus", - "id": "8331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greater focus", - "id": "8332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrying pool", - "id": "8333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak lectern", - "id": "8334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Eagle lectern", - "id": "8335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demon lectern", - "id": "8336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak eagle lectern", - "id": "8337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak demon lectern", - "id": "8338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany eagle", - "id": "8339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany demon", - "id": "8340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Globe", - "id": "8341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ornamental globe", - "id": "8342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar globe", - "id": "8343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Celestial globe", - "id": "8344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Armillary sphere", - "id": "8345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small orrery", - "id": "8346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large orrery", - "id": "8347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden telescope", - "id": "8348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak telescope", - "id": "8349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany 'scope", - "id": "8350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal ball", - "id": "8351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elemental sphere", - "id": "8352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal of power", - "id": "8353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Alchemical chart", - "id": "8354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Astronomical chart", - "id": "8355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Infernal chart", - "id": "8356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak throne", - "id": "8357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak throne", - "id": "8358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany throne", - "id": "8359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded throne", - "id": "8360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton throne", - "id": "8361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal throne", - "id": "8362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demonic throne", - "id": "8363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak lever", - "id": "8364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak lever", - "id": "8365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany lever", - "id": "8366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trapdoor", - "id": "8367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trapdoor", - "id": "8368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trapdoor", - "id": "8369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Floor decoration", - "id": "8370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel cage", - "id": "8371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Trapdoor", - "id": "8372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lesser magic cage", - "id": "8373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greater magic cage", - "id": "8374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden workbench", - "id": "8375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak workbench", - "id": "8376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel framed bench", - "id": "8377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bench with vice", - "id": "8378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bench with lathe", - "id": "8379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting table 1", - "id": "8380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting table 2", - "id": "8381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting table 3", - "id": "8382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting table 4", - "id": "8383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tool store 1", - "id": "8384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tool store 2", - "id": "8385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tool store 3", - "id": "8386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tool store 4", - "id": "8387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tool store 5", - "id": "8388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Repair bench", - "id": "8389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Whetstone", - "id": "8390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Armour stand", - "id": "8391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pluming stand", - "id": "8392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shield easel", - "id": "8393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner easel", - "id": "8394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Parlour", - "id": "8395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kitchen", - "id": "8396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dining room", - "id": "8397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bedroom", - "id": "8398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Games room", - "id": "8399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat room", - "id": "8400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hall", - "id": "8401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hall", - "id": "8402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hall", - "id": "8403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hall", - "id": "8404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chapel", - "id": "8405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Workshop", - "id": "8406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Study", - "id": "8407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Portal chamber", - "id": "8408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Throne room", - "id": "8409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oubliette", - "id": "8410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dungeon corridor", - "id": "8411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dungeon cross", - "id": "8412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dungeon stairs", - "id": "8413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Treasure room", - "id": "8414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Garden", - "id": "8415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Formal garden", - "id": "8416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged dead tree", - "id": "8417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged dead tree", - "id": "8418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged nice tree", - "id": "8419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged nice tree", - "id": "8420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged oak tree", - "id": "8421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged oak tree", - "id": "8422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged willow tree", - "id": "8423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged willow tree", - "id": "8424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged maple tree", - "id": "8425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged maple tree", - "id": "8426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged yew tree", - "id": "8427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged yew tree", - "id": "8428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged magic tree", - "id": "8429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged magic tree", - "id": "8430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged plant 1", - "id": "8431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged plant 1", - "id": "8432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged plant 2", - "id": "8433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged plant 2", - "id": "8434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged plant 3", - "id": "8435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged plant 3", - "id": "8436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thorny hedge", - "id": "8437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thorny hedge", - "id": "8438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nice hedge", - "id": "8439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nice hedge", - "id": "8440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small box hedge", - "id": "8441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small box hedge", - "id": "8442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Topiary hedge", - "id": "8443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Topiary hedge", - "id": "8444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy hedge", - "id": "8445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy hedge", - "id": "8446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall fancy hedge", - "id": "8447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall fancy hedge", - "id": "8448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall box hedge", - "id": "8449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tall box hedge", - "id": "8450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged rosemary", - "id": "8451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged rosemary", - "id": "8452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged daffodils", - "id": "8453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged daffodils", - "id": "8454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged bluebells", - "id": "8455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged bluebells", - "id": "8456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged sunflower", - "id": "8457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged sunflower", - "id": "8458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged marigolds", - "id": "8459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged marigolds", - "id": "8460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged roses", - "id": "8461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bagged roses", - "id": "8462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Construction guide", - "id": "8463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune heraldic helm", - "id": "8494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crude wooden chair", - "id": "8496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crude wooden chair", - "id": "8497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden chair", - "id": "8498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden chair", - "id": "8499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rocking chair", - "id": "8500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rocking chair", - "id": "8501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak chair", - "id": "8502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak chair", - "id": "8503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak armchair", - "id": "8504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak armchair", - "id": "8505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak armchair", - "id": "8506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak armchair", - "id": "8507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany armchair", - "id": "8508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany armchair", - "id": "8509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bookcase", - "id": "8510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bookcase", - "id": "8511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bookcase", - "id": "8512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bookcase", - "id": "8513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany b'kcase", - "id": "8514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany b'kcase", - "id": "8515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beer barrel", - "id": "8516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beer barrel", - "id": "8517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider barrel", - "id": "8518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cider barrel", - "id": "8519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale", - "id": "8520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Asgarnian ale", - "id": "8521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenman's ale", - "id": "8522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Greenman's ale", - "id": "8523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter", - "id": "8524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bitter", - "id": "8525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight", - "id": "8526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chef's delight", - "id": "8527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wood kitchen table", - "id": "8528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wood kitchen table", - "id": "8529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak kitchen table", - "id": "8530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak kitchen table", - "id": "8531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak kitchen table", - "id": "8532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak kitchen table", - "id": "8533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak lectern", - "id": "8534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak lectern", - "id": "8535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Eagle lectern", - "id": "8536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Eagle lectern", - "id": "8537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demon lectern", - "id": "8538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Demon lectern", - "id": "8539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak eagle lectern", - "id": "8540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak eagle lectern", - "id": "8541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak demon lectern", - "id": "8542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak demon lectern", - "id": "8543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany eagle", - "id": "8544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany eagle", - "id": "8545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany demon", - "id": "8546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany demon", - "id": "8547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wood dining table", - "id": "8548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wood dining table", - "id": "8549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak dining table", - "id": "8550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak dining table", - "id": "8551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak table", - "id": "8552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak table", - "id": "8553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak table", - "id": "8554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak table", - "id": "8555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak table", - "id": "8556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak table", - "id": "8557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany table", - "id": "8558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany table", - "id": "8559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Opulent table", - "id": "8560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Opulent table", - "id": "8561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bench", - "id": "8562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bench", - "id": "8563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bench", - "id": "8564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bench", - "id": "8565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak bench", - "id": "8566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak bench", - "id": "8567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak dining bench", - "id": "8568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak dining bench", - "id": "8569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak bench", - "id": "8570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak bench", - "id": "8571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany bench", - "id": "8572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany bench", - "id": "8573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded bench", - "id": "8574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded bench", - "id": "8575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bed", - "id": "8576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden bed", - "id": "8577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bed", - "id": "8578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak bed", - "id": "8579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large oak bed", - "id": "8580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large oak bed", - "id": "8581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak bed", - "id": "8582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak bed", - "id": "8583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large teak bed", - "id": "8584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large teak bed", - "id": "8585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "4-poster", - "id": "8586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "4-poster", - "id": "8587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded 4-poster", - "id": "8588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded 4-poster", - "id": "8589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak clock", - "id": "8590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak clock", - "id": "8591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak clock", - "id": "8592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak clock", - "id": "8593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded clock", - "id": "8594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded clock", - "id": "8595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shaving stand", - "id": "8596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shaving stand", - "id": "8597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak shaving stand", - "id": "8598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak shaving stand", - "id": "8599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak dresser", - "id": "8600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak dresser", - "id": "8601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak dresser", - "id": "8602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak dresser", - "id": "8603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy teak dresser", - "id": "8604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy teak dresser", - "id": "8605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany dresser", - "id": "8606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany dresser", - "id": "8607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded dresser", - "id": "8608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded dresser", - "id": "8609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe box", - "id": "8610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shoe box", - "id": "8611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak drawers", - "id": "8612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak drawers", - "id": "8613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak wardrobe", - "id": "8614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak wardrobe", - "id": "8615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak drawers", - "id": "8616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak drawers", - "id": "8617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak wardrobe", - "id": "8618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak wardrobe", - "id": "8619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany 'drobe", - "id": "8620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany 'drobe", - "id": "8621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded wardrobe", - "id": "8622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded wardrobe", - "id": "8623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal ball", - "id": "8624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal ball", - "id": "8625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elemental sphere", - "id": "8626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elemental sphere", - "id": "8627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal of power", - "id": "8628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal of power", - "id": "8629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Globe", - "id": "8630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Globe", - "id": "8631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ornamental globe", - "id": "8632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ornamental globe", - "id": "8633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar globe", - "id": "8634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar globe", - "id": "8635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Celestial globe", - "id": "8636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Celestial globe", - "id": "8637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Armillary sphere", - "id": "8638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Armillary sphere", - "id": "8639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small orrery", - "id": "8640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small orrery", - "id": "8641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large orrery", - "id": "8642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large orrery", - "id": "8643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden telescope", - "id": "8644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden telescope", - "id": "8645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak telescope", - "id": "8646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak telescope", - "id": "8647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany 'scope", - "id": "8648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany 'scope", - "id": "8649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Banner", - "id": "8680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel heraldic helm", - "id": "8712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune kiteshield", - "id": "8744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8747", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8748", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8750", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8751", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8753", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8754", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8756", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8757", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8759", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8760", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8762", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8763", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8765", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8766", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8768", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8769", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8771", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8772", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8774", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8775", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel kiteshield", - "id": "8776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8777", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plank of sturdy oak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak plank", - "id": "8778", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak plank", - "id": "8779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plank of fine teak.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak plank", - "id": "8780", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak plank", - "id": "8781", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A plank of expensive mahogany.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany plank", - "id": "8782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany plank", - "id": "8783", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Very delicate thin pressed gold.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold leaf", - "id": "8784", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold leaf", - "id": "8785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A beautifully carved marble block.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble block", - "id": "8786", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble block", - "id": "8787", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Doesn't look very special.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic stone", - "id": "8788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic stone", - "id": "8789", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bolt of ordinary cloth.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bolt of cloth", - "id": "8790", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bolt of cloth", - "id": "8791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A clockwork mechanism.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clockwork", - "id": "8792", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Clockwork", - "id": "8793", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good for cutting wood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Saw", - "id": "8794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Saw", - "id": "8795", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A well carved thing.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thing", - "id": "8796", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Picture", - "id": "8797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8798", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8799", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8801", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8802", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8804", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8805", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8807", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8808", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8810", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8811", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8813", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some rare mahogany logs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany logs", - "id": "6332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany logs", - "id": "8836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A hefty beam of timber, perfect for building temples.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Timber beam", - "id": "8837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Timber beam", - "id": "8838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Torso armour of the order of the Void Knights.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Void knight top", - "id": "8839", - "bonuses": [ - { - "defenceCrush": 45, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 45, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 45, - "attackStab": 0, - "defenceStab": 45, - "defenceMagic": 45 - } - ] - }, - { - "examine": "Leg armour of the order of the Void Knights.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Void knight robe", - "id": "8840", - "bonuses": [ - { - "defenceCrush": 30, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 30, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 30, - "attackStab": 0, - "defenceStab": 30, - "defenceMagic": 30 - } - ] - }, - { - "examine": "A mace used by the order of the Void knights.", - "values": [ - { - "lowAlch": "1", - "highAlch": "22", - "shopValue": "1" - } - ], - "name": "Void knight mace", - "id": "8841", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 38, - "defenceSlash": 2, - "attackMagic": 8, - "prayerBonus": 6, - "attackCrush": 41, - "defenceRange": 2, - "attackStab": 22, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Gloves as used by the order of the void knights.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Void knight gloves", - "id": "8842", - "bonuses": [ - { - "defenceCrush": 6, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 6, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 6, - "attackStab": 0, - "defenceStab": 6, - "defenceMagic": 4 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "3", - "shopValue": "1" - } - ], - "name": "Bronze defender", - "id": "8844", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": -2, - "attackSlash": 2, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 1, - "defenceRange": -2, - "attackStab": 3, - "defenceStab": 3, - "defenceMagic": -3 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "5", - "shopValue": "1" - } - ], - "name": "Iron defender", - "id": "8845", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": -2, - "attackSlash": 4, - "strengthBonus": 0, - "defenceSlash": 4, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 3, - "defenceRange": -2, - "attackStab": 5, - "defenceStab": 5, - "defenceMagic": -3 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "7", - "shopValue": "1" - } - ], - "name": "Steel defender", - "id": "8846", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": -2, - "attackSlash": 6, - "strengthBonus": 1, - "defenceSlash": 6, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 5, - "defenceRange": -2, - "attackStab": 7, - "defenceStab": 7, - "defenceMagic": -3 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "9", - "shopValue": "1" - } - ], - "name": "Black defender", - "id": "8847", - "bonuses": [ - { - "defenceCrush": 7, - "attackRange": -2, - "attackSlash": 8, - "strengthBonus": 2, - "defenceSlash": 8, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 7, - "defenceRange": -2, - "attackStab": 9, - "defenceStab": 9, - "defenceMagic": -3 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "11", - "shopValue": "1" - } - ], - "name": "Mithril defender", - "id": "8848", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": -2, - "attackSlash": 10, - "strengthBonus": 3, - "defenceSlash": 10, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 9, - "defenceRange": -2, - "attackStab": 11, - "defenceStab": 11, - "defenceMagic": -3 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "13", - "shopValue": "1" - } - ], - "name": "Adamant defender", - "id": "8849", - "bonuses": [ - { - "defenceCrush": 11, - "attackRange": -2, - "attackSlash": 12, - "strengthBonus": 4, - "defenceSlash": 12, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 11, - "defenceRange": -2, - "attackStab": 13, - "defenceStab": 13, - "defenceMagic": -3 - } - ] - }, - { - "examine": "A defensive weapon.", - "values": [ - { - "lowAlch": "1", - "highAlch": "20", - "shopValue": "1" - } - ], - "name": "Rune defender", - "id": "8850", - "bonuses": [ - { - "defenceCrush": 18, - "attackRange": -2, - "attackSlash": 19, - "strengthBonus": 5, - "defenceSlash": 19, - "attackMagic": -3, - "prayerBonus": 0, - "attackCrush": 18, - "defenceRange": -2, - "attackStab": 20, - "defenceStab": 20, - "defenceMagic": -3 - } - ] - }, - { - "examine": "Warrior Guild Token.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Warrior guild token", - "id": "8851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Large, round, heavy shield.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Defensive shield", - "id": "8856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shot", - "id": "8857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "18lb shot", - "id": "8858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "22lb shot", - "id": "8859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "One barrel", - "id": "8860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Two barrels", - "id": "8861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Three barrels", - "id": "8862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Four barrels", - "id": "8863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Five barrels", - "id": "8864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A heap of finely ground ashes.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground ashes", - "id": "8865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You stole this key from a guard deep in the HAM cave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel key", - "id": "8866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You stole this key from a guard deep in the HAM cave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze key", - "id": "8867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You stole this key from a guard deep in the HAM cave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver key", - "id": "8868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "You stole this key from a guard deep in the HAM cave.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron key", - "id": "8869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "She's dead, but the mark on her forehead is glowing brightly.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zanik", - "id": "8870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crate with zanik", - "id": "8871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger", - "id": "8872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger", - "id": "8873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger (p)", - "id": "8874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger (p)", - "id": "8875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger..", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger (p+)", - "id": "8876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger (p+)", - "id": "8877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A powerful dagger.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger (s)", - "id": "8878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone dagger (s)", - "id": "8879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This fires crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dorgeshuun c'bow", - "id": "8880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dorgeshuun c'bow", - "id": "8881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Good if you have a bone crossbow!", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bone bolts", - "id": "8882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zanik", - "id": "8887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zanik (ham)", - "id": "8888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Zanik (showdown)", - "id": "8889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Coins", - "id": "8890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8894", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cave horror", - "id": "8900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (10)", - "id": "8901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (10)", - "id": "8902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (9)", - "id": "8903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (9)", - "id": "8904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (8)", - "id": "8905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (8)", - "id": "8906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (7)", - "id": "8907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (7)", - "id": "8908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (6)", - "id": "8909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (6)", - "id": "8910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (5)", - "id": "8911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (5)", - "id": "8912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (4)", - "id": "8913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (4)", - "id": "8914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (3)", - "id": "8915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (3)", - "id": "8916", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (2)", - "id": "8917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (2)", - "id": "8918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A magic cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (1)", - "id": "8919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask (1)", - "id": "8920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An inert-seeming cave horror mask.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask", - "id": "8921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black mask", - "id": "8922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A stick on a string... pure style.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Witchwood icon", - "id": "8923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hat and eyepatch", - "id": "8928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crabclaw and hook", - "id": "8929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pipe section", - "id": "8930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pipe section", - "id": "8931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lumber patch", - "id": "8932", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lumber patch", - "id": "8933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrapey tree logs", - "id": "8934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrapey tree logs", - "id": "8935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue flowers", - "id": "8936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue flowers", - "id": "8937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red flowers", - "id": "8938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red flowers", - "id": "8939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Alcohol in the loosest sense of the word.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rum", - "id": "8940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rum", - "id": "8941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Monkey", - "id": "8942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue monkey", - "id": "8943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue monkey", - "id": "8944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue monkey", - "id": "8945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red monkey", - "id": "8946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red monkey", - "id": "8947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red monkey", - "id": "8948", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pirate bandana", - "id": "8949", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Essential pirate wear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pirate hat", - "id": "8950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Piratical currency.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pieces of eight", - "id": "8951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue naval shirt", - "id": "8952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green naval shirt", - "id": "8953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red naval shirt", - "id": "8954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown naval shirt", - "id": "8955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black naval shirt", - "id": "8956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple naval shirt", - "id": "8957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grey naval shirt", - "id": "8958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue tricorn hat", - "id": "8959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green tricorn hat", - "id": "8960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red tricorn hat", - "id": "8961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown tricorn hat", - "id": "8962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black tricorn hat", - "id": "8963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple tricorn hat", - "id": "8964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grey tricorn hat", - "id": "8965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cutthroat flag", - "id": "8966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guilded smile flag", - "id": "8967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze fist flag", - "id": "8968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lucky shot flag", - "id": "8969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Treasure flag", - "id": "8970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Phasmatys flag", - "id": "8971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bowl of red water", - "id": "8972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bowl of red water", - "id": "8973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bowl of blue water", - "id": "8974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bowl of blue water", - "id": "8975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bitternut", - "id": "8976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrapey bark", - "id": "8977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scrapey bark", - "id": "8978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bridge section", - "id": "8979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bridge section", - "id": "8980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sweetgrubs", - "id": "8981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sweetgrubs", - "id": "8982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "8985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket", - "id": "8986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torch", - "id": "8987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "The stuff", - "id": "8988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brewin' guide", - "id": "8989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brewin' guide", - "id": "8990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue navy slacks", - "id": "8991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green navy slacks", - "id": "8992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red navy slacks", - "id": "8993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Brown navy slacks", - "id": "8994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black navy slacks", - "id": "8995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple navy slacks", - "id": "8996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grey navy slacks", - "id": "8997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "9000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "8927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bandana and eyepatch", - "id": "9001", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hat and eyepatch", - "id": "8928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hat and eyepatch", - "id": "9002", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Security book", - "id": "9003", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stronghold notes", - "id": "9004", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fancy boots", - "id": "9005", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fighting boots", - "id": "9006", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Right skull half", - "id": "9007", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Left skull half", - "id": "9008", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strange skull", - "id": "9009", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Top of sceptre", - "id": "9010", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bottom of sceptre", - "id": "9011", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runed sceptre", - "id": "9012", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skull sceptre", - "id": "9013", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Security book", - "id": "9014", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stronghold notes", - "id": "9015", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gorak claws", - "id": "9016", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Star flower", - "id": "9017", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gorak claw powder", - "id": "9018", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic essence(unf)", - "id": "9019", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Queen's secateurs", - "id": "9020", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic essence(4)", - "id": "9021", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic essence(3)", - "id": "9022", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic essence(2)", - "id": "9023", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic essence(1)", - "id": "9024", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Nuff's certificate", - "id": "9025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ivory comb", - "id": "9026", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ivory comb", - "id": "9027", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden scarab", - "id": "9028", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden scarab", - "id": "9029", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone scarab", - "id": "9030", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone scarab", - "id": "9031", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pottery scarab", - "id": "9032", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pottery scarab", - "id": "9033", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden statuette", - "id": "9034", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden statuette", - "id": "9035", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pottery statuette", - "id": "9036", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pottery statuette", - "id": "9037", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone statuette", - "id": "9038", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone statuette", - "id": "9039", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold seal", - "id": "9040", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gold seal", - "id": "9041", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone seal", - "id": "9042", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stone seal", - "id": "9043", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sceptre has 3 remaining charges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9044", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9045", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sceptre has 2 remaining charges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9046", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9047", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sceptre has 1 remaining charges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9048", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9049", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This sceptre has 0 remaining charges.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9050", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pharaoh's sceptre", - "id": "9051", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locust meat", - "id": "9052", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Locust meat", - "id": "9053", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red goblin mail", - "id": "9054", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black goblin mail", - "id": "9055", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow goblin mail", - "id": "9056", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green goblin mail", - "id": "9057", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple goblin mail", - "id": "9058", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pink goblin mail", - "id": "9059", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9060", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9061", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9062", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9063", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald lantern", - "id": "9064", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald lantern", - "id": "9065", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald lens", - "id": "9066", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dream log", - "id": "9067", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mystical headgear.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan helm", - "id": "9068", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": -5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -5, - "attackStab": 0, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "A mystical hat.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan hat", - "id": "9069", - "bonuses": [ - { - "defenceCrush": 3, - "attackRange": -5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 3, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -5, - "attackStab": 0, - "defenceStab": 3, - "defenceMagic": 3 - } - ] - }, - { - "examine": "Provides good protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan armour", - "id": "9070", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": 5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -10, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "This should protect my legs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan skirt", - "id": "9071", - "bonuses": [ - { - "defenceCrush": 5, - "attackRange": -7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 5, - "attackMagic": 5, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -7, - "attackStab": 0, - "defenceStab": 5, - "defenceMagic": 5 - } - ] - }, - { - "examine": "These should keep my hands safe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan gloves", - "id": "9072", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": -5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -5, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Groovy foot protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan boots", - "id": "9073", - "bonuses": [ - { - "defenceCrush": 2, - "attackRange": -5, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 2, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -5, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "A mystical cape.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan cape", - "id": "9074", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": -2, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Used for Lunar spells.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Astral rune", - "id": "9075", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "This needs refining.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar ore", - "id": "9076", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "It's a bar of magic metal.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar bar", - "id": "9077", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A book of moonclan history.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Moonclan manual", - "id": "9078", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Suqah tooth", - "id": "9079", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Suqah hide", - "id": "9080", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Suqah leather", - "id": "9081", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground tooth", - "id": "9082", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Seal of passage", - "id": "9083", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A moonclan staff.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar staff", - "id": "9084", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Empty vial", - "id": "9085", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vial of water", - "id": "9086", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Waking sleep vial", - "id": "9087", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guam vial", - "id": "9088", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marr vial", - "id": "9089", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Guam-marr vial", - "id": "9090", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A staff enchanted by air.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar staff - pt1", - "id": "9091", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A staff enchanted by air and fire.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar staff - pt2", - "id": "9092", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A staff enchanted by air , fire, and water.", - "values": [ - { - "lowAlch": "10", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar staff - pt3", - "id": "9093", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Small bits of wood from the first magic tree.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kindling", - "id": "9094", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Soaked kindling", - "id": "9095", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mystical helmet.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar helm", - "id": "9096", - "bonuses": [ - { - "defenceCrush": 10, - "attackRange": -2, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 7, - "attackMagic": 3, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 8, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Provides good protection", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar torso", - "id": "9097", - "bonuses": [ - { - "defenceCrush": 40, - "attackRange": -10, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 22, - "attackMagic": 10, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 34, - "defenceMagic": 12 - } - ] - }, - { - "examine": "These should protect my legs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar legs", - "id": "9098", - "bonuses": [ - { - "defenceCrush": 23, - "attackRange": 7, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 19, - "attackMagic": 7, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 20, - "defenceMagic": 9 - } - ] - }, - { - "examine": "These should keep my hands safe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar gloves", - "id": "9099", - "bonuses": [ - { - "defenceCrush": 1, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 4, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 2, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Mystical foot protection.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar boots", - "id": "9100", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": -1, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "Oooo pretty!", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar cape", - "id": "9101", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 1, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 1, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Awesome.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar amulet", - "id": "9102", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 1, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 1 - } - ] - }, - { - "examine": "'ll be the take of the town with this... maybe.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A special tiara", - "id": "9103", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mysterious ring that can fill the wearer with magical power...", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lunar ring", - "id": "9104", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 2, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 2 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Suqah monster", - "id": "9105", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A tiara infused with the properties of astral.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Astral tiara", - "id": "9106", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9107", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9108", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9109", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9110", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9111", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9112", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9113", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9114", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9115", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9116", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9117", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9118", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9119", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9120", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9121", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9122", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9123", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9124", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9125", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9126", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9127", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9128", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9129", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9130", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9131", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9132", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9133", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9134", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9135", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9136", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9137", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9138", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Blurite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite bolts", - "id": "9139", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Iron crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron bolts", - "id": "9140", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Steel crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel bolts", - "id": "9141", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Mithril crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril bolts", - "id": "9142", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Adamant crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamant bolts", - "id": "9143", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Runite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite bolts", - "id": "9144", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Silver crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bolts", - "id": "9145", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9146", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9147", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9148", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9149", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9150", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9151", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9152", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9153", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9154", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9155", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9156", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9157", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9158", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9159", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9160", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9161", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9162", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9163", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9167", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9168", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9169", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9170", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9171", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9172", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9173", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A bronze crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze c'bow", - "id": "9174", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze c'bow", - "id": "9175", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A blurite crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite c'bow", - "id": "9176", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An iron crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron c'bow", - "id": "9177", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron c'bow", - "id": "9178", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A steel crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel c'bow", - "id": "9179", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel c'bow", - "id": "9180", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mith c'bow", - "id": "9181", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mith c'bow", - "id": "9182", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "An adamant crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamant c'bow", - "id": "9183", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamant c'bow", - "id": "9184", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A runite crossbow.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune c'bow", - "id": "9185", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 90, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rune c'bow", - "id": "9186", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Jade bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jade bolt tips", - "id": "9187", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Topaz bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Topaz bolt tips", - "id": "9188", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sapphire bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sapphire bolt tips", - "id": "9189", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Emerald bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald bolt tips", - "id": "9190", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ruby bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruby bolt tips", - "id": "9191", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Diamond bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bolt tips", - "id": "9192", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dragon bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dragon bolt tips", - "id": "9193", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Onyx bolt tips.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Onyx bolt tips", - "id": "9194", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9195", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9196", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9197", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9198", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9199", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9200", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9201", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9203", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9204", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9205", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9206", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9207", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9208", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9209", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9210", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9211", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9212", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9213", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9214", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9215", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9216", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9217", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9218", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9219", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9220", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9221", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9222", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9223", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9224", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9225", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9226", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9227", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9228", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9229", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9230", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9231", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9232", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9233", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9234", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9235", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted opal tipped bronze crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "4" - } - ], - "name": "Opal bolts (e)", - "id": "9236", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted jade tipped blurite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "7" - } - ], - "name": "Jade bolts (e)", - "id": "9237", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted pearl tipped iron crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "10" - } - ], - "name": "Pearl bolts (e)", - "id": "9238", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted red topaz tipped steel crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "13" - } - ], - "name": "Topaz bolts (e)", - "id": "9239", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted sapphire tipped mithril crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "16" - } - ], - "name": "Sapphire bolts (e)", - "id": "9240", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted emerald tipped mithril crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "19" - } - ], - "name": "Emerald bolts (e)", - "id": "9241", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted ruby tipped adamantite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "22" - } - ], - "name": "Ruby bolts (e)", - "id": "9242", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted diamond tipped adamantite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "25" - } - ], - "name": "Diamond bolts (e)", - "id": "9243", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted dragonstone tipped rune crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "6200" - } - ], - "name": "Dragon bolts (e)", - "id": "9244", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Enchanted onyx tipped runite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9000" - } - ], - "name": "Onyx bolts (e)", - "id": "9245", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9246", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9247", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9248", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9249", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9250", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9251", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9252", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9253", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9254", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9255", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9256", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9257", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9258", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9259", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9260", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9261", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9262", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9263", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9264", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9265", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9266", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9267", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9268", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9269", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9270", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9271", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9272", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9273", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9274", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9275", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9276", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9277", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9278", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9279", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9280", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9281", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9282", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9283", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9284", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9285", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned blurite bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite bolts(p)", - "id": "9286", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned iron bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron bolts (p)", - "id": "9287", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned steel bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel bolts (p)", - "id": "9288", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned mithril bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril bolts (p)", - "id": "9289", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned adamant bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Addy bolts (p)", - "id": "9290", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned runite bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite bolts (p)", - "id": "9291", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned silver bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bolts (p)", - "id": "9292", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned blurite bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite bolts(p+)", - "id": "9293", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned iron bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron bolts(p+)", - "id": "9294", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned steel bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel bolts(p+)", - "id": "9295", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned mithril bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril bolts(p+)", - "id": "9296", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned adamant bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Addy bolts(p+)", - "id": "9297", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned runite bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite bolts(p+)", - "id": "9298", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned silver bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bolts(p+)", - "id": "9299", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned blurite bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite bolts(s)", - "id": "9300", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned iron bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron bolts(s)", - "id": "9301", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned steel bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel bolts(s)", - "id": "9302", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned mithril bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril bolts(s)", - "id": "9303", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned adamant bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Addy bolts(s)", - "id": "9304", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned runite bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite bolts(s)", - "id": "9305", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Some poisoned silver bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bolts(s)", - "id": "9306", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9307", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9308", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9309", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9310", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9311", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9312", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9313", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9314", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9315", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9316", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9317", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9318", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9319", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9320", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9321", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9322", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9323", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9324", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9325", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9326", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9327", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9328", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9329", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9330", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9331", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9332", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9333", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9334", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Jade tipped Blurite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jade bolts", - "id": "9335", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Topaz tipped Steel crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Topaz bolts", - "id": "9336", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Sapphire tipped Mithril crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sapphire bolts", - "id": "9337", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Emerald tipped Mithril crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Emerald bolts", - "id": "9338", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Ruby tipped Adamantite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ruby bolts", - "id": "9339", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Diamond tipped Adamantite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Diamond bolts", - "id": "9340", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Dragonstone tipped Runite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "637" - } - ], - "name": "Dragon bolts", - "id": "9341", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Onyx tipped Runite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "9000" - } - ], - "name": "Onyx bolts", - "id": "9342", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9343", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9344", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9345", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9346", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9347", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9348", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9349", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9350", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9351", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9352", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9353", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9354", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9355", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9356", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9357", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9358", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9359", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9360", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9361", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9362", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9363", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9364", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9365", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9366", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9367", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9368", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9369", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9370", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9371", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9372", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9373", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9374", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered bronze crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze bolts (unf)", - "id": "9375", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered blurite crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite bolts (unf)", - "id": "9376", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered iron crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron bolts (unf)", - "id": "9377", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered steel crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel bolts (unf)", - "id": "9378", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered mithril crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril bolts (unf)", - "id": "9379", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered adamant crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamant bolts(unf)", - "id": "9380", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered rune crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite bolts (unf)", - "id": "9381", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Unfeathered silver crossbow bolts.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Silver bolts (unf)", - "id": "9382", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9383", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9384", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9385", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9386", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9387", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9388", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9389", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9390", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9391", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9392", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9393", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9394", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9395", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9396", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9397", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9398", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9399", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9400", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9401", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9402", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9403", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9404", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9405", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9406", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9407", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9408", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9409", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9410", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9411", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9412", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9413", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9414", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grapple", - "id": "9415", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril grapple tip.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mith grapple tip", - "id": "9416", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for te equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mith grapple tip", - "id": "9417", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A mithril grapple tipped bolt - needs a rope.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mith grapple", - "id": "9418", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mith grapple", - "id": "9419", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of bronze crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze limbs", - "id": "9420", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze limbs", - "id": "9421", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of blurite crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite limbs", - "id": "9422", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of iron crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron limbs", - "id": "9423", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron limbs", - "id": "9424", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of steel crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel limbs", - "id": "9425", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel limbs", - "id": "9426", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of mithril crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril limbs", - "id": "9427", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril limbs", - "id": "9428", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of adamant crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamantite limbs", - "id": "9429", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamantite limbs", - "id": "9430", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A pair of rune crossbow limbs.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite limbs", - "id": "9431", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivelent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite limbs", - "id": "9432", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bolt pouch", - "id": "9433", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bolt mould", - "id": "9434", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bolt mould", - "id": "9435", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sinew", - "id": "9436", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sinew", - "id": "9437", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crossbow string", - "id": "9438", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crossbow string", - "id": "9439", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden stock", - "id": "9440", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wooden stock", - "id": "9441", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak stock", - "id": "9442", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak stock", - "id": "9443", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow stock", - "id": "9444", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Willow stock", - "id": "9445", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak stock", - "id": "9446", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak stock", - "id": "9447", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple stock", - "id": "9448", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Maple stock", - "id": "9449", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany stock", - "id": "9450", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany stock", - "id": "9451", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew stock", - "id": "9452", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yew stock", - "id": "9453", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze c'bow (u)", - "id": "9454", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bronze c'bow (u)", - "id": "9455", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite c'bow (u)", - "id": "9456", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron c'bow (u)", - "id": "9457", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Iron c'bow (u)", - "id": "9458", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel c'bow (u)", - "id": "9459", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Steel c'bow (u)", - "id": "9460", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril c'bow (u)", - "id": "9461", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mithril c'bow (u)", - "id": "9462", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamant c'bow (u)", - "id": "9463", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Adamant c'bow (u)", - "id": "9464", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite c'bow (u)", - "id": "9465", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runite c'bow (u)", - "id": "9466", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurite bar", - "id": "9467", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sawdust", - "id": "9468", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Grand seed pod", - "id": "9469", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome scarf", - "id": "9470", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome scarf", - "id": "9471", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome goggles", - "id": "9472", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnome goggles", - "id": "9473", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Reward token", - "id": "9474", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mint cake", - "id": "9475", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mint cake", - "id": "9476", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Aluft aloft box", - "id": "9477", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made batta", - "id": "9478", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "9479", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made batta", - "id": "9480", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "9481", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made batta", - "id": "9482", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made batta", - "id": "9483", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "9484", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made batta", - "id": "9485", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished batta", - "id": "9486", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wizard blizzard", - "id": "9487", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wizard blizzard", - "id": "9488", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wizard blizzard", - "id": "9489", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Picture", - "id": "9490", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9491", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9492", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9493", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9494", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9495", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9496", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9497", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9498", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9499", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9500", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9501", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9502", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9503", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9504", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9505", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9506", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9507", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wizard blizzard", - "id": "9508", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Wizard blizzard", - "id": "9509", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Short green guy", - "id": "9510", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Short green guy", - "id": "9511", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple punch", - "id": "9512", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pineapple punch", - "id": "9513", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fruit blast", - "id": "9514", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fruit blast", - "id": "9515", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Drunk dragon", - "id": "9516", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Drunk dragon", - "id": "9517", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Choc saturday", - "id": "9518", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Choc saturday", - "id": "9519", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurberry special", - "id": "9520", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blurberry special", - "id": "9521", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "9522", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "9523", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "9524", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "9525", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9526", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fruit batta", - "id": "9527", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fruit batta", - "id": "9528", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toad batta", - "id": "9529", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toad batta", - "id": "9530", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm batta", - "id": "9531", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm batta", - "id": "9532", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vegetable batta", - "id": "9533", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vegetable batta", - "id": "9534", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cheese+tom batta", - "id": "9535", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cheese+tom batta", - "id": "9536", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9537", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toad crunchies", - "id": "9538", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Toad crunchies", - "id": "9539", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spicy crunchies", - "id": "9540", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Spicy crunchies", - "id": "9541", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm crunchies", - "id": "9542", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm crunchies", - "id": "9543", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chocchip crunchies", - "id": "9544", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chocchip crunchies", - "id": "9545", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9546", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm hole", - "id": "9547", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Worm hole", - "id": "9548", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Veg ball", - "id": "9549", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Veg ball", - "id": "9550", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tangled toads' legs", - "id": "9551", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tangled toads' legs", - "id": "9552", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chocolate bomb", - "id": "9553", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chocolate bomb", - "id": "9554", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9555", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9556", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9557", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made bowl", - "id": "9558", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made bowl", - "id": "9559", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "9560", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made bowl", - "id": "9561", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "9562", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made bowl", - "id": "9563", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished bowl", - "id": "9564", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cocktail shaker", - "id": "2025", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cocktail shaker", - "id": "9565", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed blizzard", - "id": "9566", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed sgg", - "id": "9567", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed blast", - "id": "9568", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed punch", - "id": "9569", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed blurberry special", - "id": "9570", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed saturday", - "id": "9571", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed saturday", - "id": "9572", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed saturday", - "id": "9573", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed dragon", - "id": "9574", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed dragon", - "id": "9575", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mixed dragon", - "id": "9576", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made crunchy", - "id": "9577", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "9578", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made crunchy", - "id": "9579", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "9580", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made crunchy", - "id": "9581", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "9582", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Half made crunchy", - "id": "9583", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Unfinished crunchy", - "id": "9584", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "2164", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Batta tin", - "id": "9585", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crunchy tray", - "id": "2165", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crunchy tray", - "id": "9586", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnomebowl mould", - "id": "2166", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gnomebowl mould", - "id": "9587", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw crunchies", - "id": "2202", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Raw crunchies", - "id": "9588", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dossier", - "id": "9589", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dossier", - "id": "9590", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Broken cauldron", - "id": "9591", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic glue", - "id": "9592", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Weird gloop", - "id": "9593", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ground mud runes", - "id": "9594", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hazelmere's book", - "id": "9595", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Picture", - "id": "9596", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red circle", - "id": "9597", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red triangle", - "id": "9598", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red square", - "id": "9599", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red pentagon", - "id": "9600", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange circle", - "id": "9601", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange triangle", - "id": "9602", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange square", - "id": "9603", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange pentagon", - "id": "9604", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow circle", - "id": "9605", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow triangle", - "id": "9606", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow square", - "id": "9607", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow pentagon", - "id": "9608", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green circle", - "id": "9609", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green triangle", - "id": "9610", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green square", - "id": "9611", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green pentagon", - "id": "9612", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue circle", - "id": "9613", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue triangle", - "id": "9614", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue square", - "id": "9615", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue pentagon", - "id": "9616", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Indigo circle", - "id": "9617", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Indigo triangle", - "id": "9618", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Indigo square", - "id": "9619", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Indigo pentagon", - "id": "9620", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Violet circle", - "id": "9621", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Violet triangle", - "id": "9622", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Violet square", - "id": "9623", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Violet pentagon", - "id": "9624", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crystal saw", - "id": "9625", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small crystal seed", - "id": "9626", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "A handwritten book", - "id": "9627", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9628", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tyras helm", - "id": "9629", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tyras helm", - "id": "9630", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9631", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Daeyalt ore", - "id": "9632", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Message", - "id": "9633", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vyrewatch top", - "id": "9634", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vyrewatch top", - "id": "9635", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vyrewatch legs", - "id": "9636", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vyrewatch legs", - "id": "9637", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vyrewatch shoes", - "id": "9638", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Vyrewatch shoes", - "id": "9639", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Citizen top", - "id": "9640", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Citizen top", - "id": "9641", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Citizen trousers", - "id": "9642", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Citizen trousers", - "id": "9643", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Citizen shoes", - "id": "9644", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Citizen shoes", - "id": "9645", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Castle sketch 1", - "id": "9646", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Castle sketch 2", - "id": "9647", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Castle sketch 3", - "id": "9648", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Message", - "id": "9649", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blood tithe pouch", - "id": "9650", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large ornate key", - "id": "9651", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Haemalchemy", - "id": "9652", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sealed message", - "id": "9653", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Door key", - "id": "9654", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ladder top", - "id": "9655", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tome of xp (3)", - "id": "9656", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tome of xp (2)", - "id": "9657", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tome of xp (1)", - "id": "9658", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket of water", - "id": "9659", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bucket", - "id": "9660", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9661", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Shortcut key", - "id": "9662", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9663", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9664", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torch", - "id": "9665", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pros'yte harness m", - "id": "9666", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pros'yte harness m", - "id": "9667", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Initiate harness m", - "id": "9668", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Initiate harness m", - "id": "9669", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pros'yte harness f", - "id": "9670", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pros'yte harness f", - "id": "9671", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte sallet", - "id": "9672", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte sallet", - "id": "9673", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte hauberk", - "id": "9674", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte hauberk", - "id": "9675", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte cuisse", - "id": "9676", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte cuisse", - "id": "9677", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte tasset", - "id": "9678", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Proselyte tasset", - "id": "9679", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sea slug glue", - "id": "9680", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Commorb v2", - "id": "9681", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Door transcription", - "id": "9682", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Dead sea slug", - "id": "9683", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Page 1", - "id": "9684", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Page 2", - "id": "9685", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Page 3", - "id": "9686", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fragment 1", - "id": "9687", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fragment 2", - "id": "9688", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fragment 3", - "id": "9689", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blank water rune", - "id": "9690", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Water rune", - "id": "9691", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blank air rune", - "id": "9692", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Air rune", - "id": "9693", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blank earth rune", - "id": "9694", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Earth rune", - "id": "9695", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blank mind rune", - "id": "9696", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind rune", - "id": "9697", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blank fire rune", - "id": "9698", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fire rune", - "id": "9699", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Picture", - "id": "9700", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Torch", - "id": "9701", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Stick", - "id": "9702", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Training sword", - "id": "9703", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Training shield", - "id": "9704", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Training bow", - "id": "9705", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Training arrows", - "id": "9706", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9707", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9708", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9709", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9710", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9711", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9712", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9713", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9714", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slashed book", - "id": "9715", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rock", - "id": "9716", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Beaten book", - "id": "9717", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crane schematic", - "id": "9718", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Lever schematic", - "id": "9719", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crane claw", - "id": "9720", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Scroll", - "id": "9721", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Key", - "id": "9722", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pipe", - "id": "9723", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Large cog", - "id": "9724", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Medium cog", - "id": "9725", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Small cog", - "id": "9726", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Primed bar", - "id": "9727", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elemental mind bar", - "id": "9728", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elemental helmet", - "id": "9729", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Elemental helmet", - "id": "9730", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind shield", - "id": "9731", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind shield", - "id": "9732", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind helmet", - "id": "9733", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mind helmet", - "id": "9734", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert goat horn", - "id": "9735", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goat horn dust", - "id": "9736", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goat horn dust", - "id": "9737", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Desert goat horn", - "id": "9738", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combat potion.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(4)", - "id": "9739", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(4)", - "id": "9740", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combat potion.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(3)", - "id": "9741", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(3)", - "id": "9742", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combat potion.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(2)", - "id": "9743", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(2)", - "id": "9744", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "A combat potion", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(1)", - "id": "9745", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Swap this note at any bank for the equivalent item.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Combat potion(1)", - "id": "9746", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Attack.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Attack cape", - "id": "9747", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Attack.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Attack cape(t)", - "id": "9748", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Attack skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Attack hood", - "id": "9749", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Strength.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strength cape", - "id": "9750", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Strength.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strength cape(t)", - "id": "9751", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Strength skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Strength hood", - "id": "9752", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Defence.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Defence cape", - "id": "9753", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Defence.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Defence cape(t)", - "id": "9754", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Defence skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Defence hood", - "id": "9755", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Ranging.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ranging cape", - "id": "9756", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Ranging.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ranging cape(t)", - "id": "9757", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Ranging skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ranging hood", - "id": "9758", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Prayer.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prayer cape", - "id": "9759", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Prayer.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prayer cape(t)", - "id": "9760", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Prayer skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Prayer hood", - "id": "9761", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Magic.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic cape", - "id": "9762", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Magic.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic cape(t)", - "id": "9763", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Magic skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magic hood", - "id": "9764", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Runecraft.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runecraft cape", - "id": "9765", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Runecraft.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runecraft cape(t)", - "id": "9766", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Runecraft skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Runecraft hood", - "id": "9767", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Hitpoints.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hitpoints cape", - "id": "9768", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Hitpoints.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hitpoints cape(t)", - "id": "9769", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Hitpoints skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hitpoints hood", - "id": "9770", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Agility.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility cape", - "id": "9771", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Agility.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility cape(t)", - "id": "9772", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Agility skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Agility hood", - "id": "9773", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Herblore.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herblore cape", - "id": "9774", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Herblore.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herblore cape(t)", - "id": "9775", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Herblore skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Herblore hood", - "id": "9776", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Thieving.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thieving cape", - "id": "9777", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Thieving.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thieving cape(t)", - "id": "9778", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Thieving skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Thieving hood", - "id": "9779", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Crafting.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting cape", - "id": "9780", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Crafting.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting cape(t)", - "id": "9781", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Crafting skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crafting hood", - "id": "9782", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Fletching.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fletching cape", - "id": "9783", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Fletching.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fletching cape(t)", - "id": "9784", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Fletching skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fletching hood", - "id": "9785", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Slayer.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer cape", - "id": "9786", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Slayer.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer cape(t)", - "id": "9787", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Slayer skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Slayer hood", - "id": "9788", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Construct..", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Construct. cape", - "id": "9789", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Construct..", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Construct. cape(t)", - "id": "9790", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Construct. skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Construct. hood", - "id": "9791", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Mining.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mining cape", - "id": "9792", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Mining.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mining cape(t)", - "id": "9793", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Mining skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mining hood", - "id": "9794", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Smithing.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Smithing cape", - "id": "9795", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Smithing.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Smithing cape(t)", - "id": "9796", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Smithing skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Smithing hood", - "id": "9797", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Fishing.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishing cape", - "id": "9798", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Fishing.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishing cape(t)", - "id": "9799", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Fishing skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Fishing hood", - "id": "9800", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Cooking.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking cape", - "id": "9801", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Cooking.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking cape(t)", - "id": "9802", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Cooking skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cooking hood", - "id": "9803", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Firemaking.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firemaking cape", - "id": "9804", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Firemaking.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firemaking cape(t)", - "id": "9805", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Firemaking skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Firemaking hood", - "id": "9806", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Woodcutting.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woodcutting cape", - "id": "9807", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Woodcutting.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woodcutting cape(t)", - "id": "9808", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Woodcutting skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Woodcutting hood", - "id": "9809", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Farming.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farming cape", - "id": "9810", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Farming.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farming cape(t)", - "id": "9811", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Farming skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farming hood", - "id": "9812", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Quests.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Quest point cape", - "id": "9813", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Quest point hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Quest point hood", - "id": "9814", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bobble hat", - "id": "9815", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bobble scarf", - "id": "9816", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak cape rack", - "id": "9817", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak cape rack", - "id": "9818", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany cape rack", - "id": "9819", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded cape rack", - "id": "9820", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble cape rack", - "id": "9821", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical cape rack", - "id": "9822", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak costume box", - "id": "9823", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak costume box", - "id": "9824", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany cos box", - "id": "9825", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak armour case", - "id": "9826", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak armour case", - "id": "9827", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany arm'r case", - "id": "9828", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak magic wardrobe", - "id": "9829", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak magic wardrobe", - "id": "9830", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak magic wardrobe", - "id": "9831", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak magic wardrobe", - "id": "9832", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany magic wardrobe", - "id": "9833", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded magic wardrobe", - "id": "9834", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble magic wardrobe", - "id": "9835", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak toy box", - "id": "9836", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak toy box", - "id": "9837", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany toy box", - "id": "9838", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak treasure chest", - "id": "9839", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak treas' chest", - "id": "9840", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany treas' chest", - "id": "9841", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Costume room", - "id": "9842", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak cape rack", - "id": "9843", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak cape rack", - "id": "9844", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany cape rack", - "id": "9845", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded cape rack", - "id": "9846", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble cape rack", - "id": "9847", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical cape rack", - "id": "9848", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak toy box", - "id": "9849", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak toy box", - "id": "9850", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany toy box", - "id": "9851", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak magic wardrobe", - "id": "9852", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak magic wardrobe", - "id": "9853", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak magic wardrobe", - "id": "9854", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak magic wardrobe", - "id": "9855", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany magic wardrobe", - "id": "9856", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded magic wardrobe", - "id": "9857", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble magic wardrobe", - "id": "9858", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak armour case", - "id": "9859", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak armour case", - "id": "9860", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany arm'r case", - "id": "9861", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak treasure chest", - "id": "9862", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak treas' chest", - "id": "9863", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany treas' chest", - "id": "9864", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak costume box", - "id": "9865", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak costume box", - "id": "9866", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany cos box", - "id": "9867", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak cape rack", - "id": "9868", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak cape rack", - "id": "9869", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany cape rack", - "id": "9870", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded cape rack", - "id": "9871", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble cape rack", - "id": "9872", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Magical cape rack", - "id": "9873", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak toy box", - "id": "9874", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak toy box", - "id": "9875", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany toy box", - "id": "9876", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak magic wardrobe", - "id": "9877", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved oak magic wardrobe", - "id": "9878", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak magic wardrobe", - "id": "9879", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Carved teak magic wardrobe", - "id": "9880", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany magic wardrobe", - "id": "9881", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Gilded magic wardrobe", - "id": "9882", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Marble magic wardrobe", - "id": "9883", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak armour case", - "id": "9884", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak armour case", - "id": "9885", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany arm'r case", - "id": "9886", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak treasure chest", - "id": "9887", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak treas' chest", - "id": "9888", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "M'gany treas' chest", - "id": "9889", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Oak costume box", - "id": "9890", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Teak costume box", - "id": "9891", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Mahogany cos box", - "id": "9892", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9893", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9894", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9895", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9896", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9897", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9898", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9899", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9900", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Goutweedy lump", - "id": "9901", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hardy gout tubers", - "id": "9902", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Farming manual", - "id": "9903", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sailing book", - "id": "9904", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9905", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9906", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9907", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9908", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9909", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9910", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9911", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Ghost buster 500", - "id": "9912", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "White destabiliser", - "id": "9913", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red destabiliser", - "id": "9914", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue destabiliser", - "id": "9915", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green destabiliser", - "id": "9916", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow destabiliser", - "id": "9917", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black destabiliser", - "id": "9918", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Evil root", - "id": "9919", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Jack lantern mask", - "id": "9920", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton boots", - "id": "9921", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton gloves", - "id": "9922", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton leggings", - "id": "9923", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton shirt", - "id": "9924", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Skeleton mask", - "id": "9925", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9926", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9927", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9928", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9929", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9930", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Null", - "id": "9931", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Auguste's sapling", - "id": "9932", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Balloon structure", - "id": "9933", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Origami balloon", - "id": "9934", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Yellow balloon", - "id": "9935", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Blue balloon", - "id": "9936", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red balloon", - "id": "9937", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Orange balloon", - "id": "9938", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Green balloon", - "id": "9939", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Purple balloon", - "id": "9940", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Pink balloon", - "id": "9941", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Black balloon", - "id": "9942", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Sandbag", - "id": "9943", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bomber jacket", - "id": "9944", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Bomber cap", - "id": "9945", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cap and goggles", - "id": "9946", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Old red disk", - "id": "9947", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "The cape worn by masters of Hunting.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hunter cape", - "id": "9948", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "The cape worn by masters of Hunting.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hunter cape(t)", - "id": "9949", - "bonuses": [ - { - "defenceCrush": 9, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 9, - "attackMagic": 0, - "prayerBonus": 4, - "attackCrush": 0, - "defenceRange": 9, - "attackStab": 0, - "defenceStab": 9, - "defenceMagic": 9 - } - ] - }, - { - "examine": "Hunting skillcape hood.", - "values": [ - { - "lowAlch": "0", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Hunter hood", - "id": "9950", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Footprint", - "id": "9951", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Imp", - "id": "9952", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9953", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9954", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9955", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9956", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9957", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9958", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9959", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9960", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9961", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9962", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9963", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Kebbit", - "id": "9964", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Crimson swift", - "id": "9965", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Copper longtail", - "id": "9966", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Cerulean twitch", - "id": "9967", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Golden warbler", - "id": "9968", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Tropical wagtail", - "id": "9969", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Butterfly", - "id": "9970", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Butterfly", - "id": "9971", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Butterfly", - "id": "9972", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Butterfly", - "id": "9973", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Giant eagle", - "id": "9974", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Rabbit", - "id": "9975", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Handle with care.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Chinchompa", - "id": "9976", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 45, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Even more volatile than its vegetarian counterpart.", - "values": [ - { - "lowAlch": "1", - "highAlch": "0", - "shopValue": "1" - } - ], - "name": "Red chinchompa", - "id": "9977", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 70, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Raw bird meat", - "id": "9978", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Raw bird meat", - "id": "9979", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Roast bird meat", - "id": "9980", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Roast bird meat", - "id": "9981", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Burnt bird meat", - "id": "9982", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Burnt bird meat", - "id": "9983", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Skewered bird meat", - "id": "9984", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Skewered bird meat", - "id": "9985", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Raw beast meat", - "id": "9986", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Raw beast meat", - "id": "9987", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Roast beast meat", - "id": "9988", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Roast beast meat", - "id": "9989", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Burnt beast meat", - "id": "9990", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Burnt beast meat", - "id": "9991", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Skewered beast", - "id": "9992", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Skewered beast", - "id": "9993", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Spicy tomato", - "id": "9994", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Spicy tomato", - "id": "9995", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Spicy minced meat", - "id": "9996", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Spicy minced meat", - "id": "9997", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Hunter potion(4)", - "id": "9998", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Hunter potion(4)", - "id": "9999", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - }, - { - "examine": "Null", - "values": [ - { - "lowAlch": "1", - "highAlch": "1", - "shopValue": "1" - } - ], - "name": "Hunter potion(3)", - "id": "10000", - "bonuses": [ - { - "defenceCrush": 0, - "attackRange": 0, - "attackSlash": 0, - "strengthBonus": 0, - "defenceSlash": 0, - "attackMagic": 0, - "prayerBonus": 0, - "attackCrush": 0, - "defenceRange": 0, - "attackStab": 0, - "defenceStab": 0, - "defenceMagic": 0 - } - ] - } -] \ No newline at end of file diff --git a/2006Scape Server/data/data/itemdef.json b/2006Scape Server/data/data/itemdef.json deleted file mode 100644 index a3bf31f0..00000000 --- a/2006Scape Server/data/data/itemdef.json +++ /dev/null @@ -1,20694 +0,0 @@ -{name:"Dwarf remains", itemDescription:"The body of a Dwarf savaged by Goblins.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Toolkit", itemDescription:"Good for repairing a broken cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1} -{name:"Cannonball", itemDescription:"Ammo for the Dwarf Cannon.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2} -{name:"Nulodion's notes", itemDescription:"Construction notes for Dwarf cannon ammo.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3} -{name:"Ammo mould", itemDescription:"Used to make cannon ammunition.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4} -{name:"Instruction manual", itemDescription:"An old note book.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5} -{name:"Cannon base", itemDescription:"The cannon is built on this.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6} -{name:"Cannon base", itemDescription:"The cannon is built on this.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7} -{name:"Cannon stand", itemDescription:"The mounting for the multicannon.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8} -{name:"Cannon stand", itemDescription:"The mounting for the multicannon.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9} -{name:"Cannon barrels", itemDescription:"The barrels for the multicannon.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10} -{name:"Cannon barrels", itemDescription:"The barrels for the multicannon.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11} -{name:"Cannon furnace", itemDescription:"This powers the multicannon.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12} -{name:"Cannon furnace", itemDescription:"This powers the multicannon.", shopValue:187500, lowAlch:75000, highAlch:112500, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13} -{name:"Railing", itemDescription:"A metal railing replacement.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14} -{name:"Holy table napkin", itemDescription:"A cloth given to me by Sir Galahad.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15} -{name:"Magic whistle", itemDescription:"A small tin whistle.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16} -{name:"Grail bell", itemDescription:"I wonder what happens when I ring it?", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17} -{name:"Magic gold feather", itemDescription:"It will point the way for me.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18} -{name:"Holy grail", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19} -{name:"White cog", itemDescription:"A cog from some machinery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20} -{name:"Black cog", itemDescription:"A cog from some machinery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:21} -{name:"Blue cog", itemDescription:"A cog from some machinery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:22} -{name:"Red cog", itemDescription:"A cog from some machinery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:23} -{name:"Rat poison", itemDescription:"Doesn't look very tasty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:24} -{name:"Red vine worm", itemDescription:"Wormy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:25} -{name:"Fishing trophy", itemDescription:"Hemenster fishing contest trophy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:26} -{name:"Fishing pass", itemDescription:"Pass to the Hemenster fishing contest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:27} -{name:"Insect repellent", itemDescription:"Drives away all known 6 legged creatures.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:28} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:29} -{name:"Bucket of wax", itemDescription:"It's a bucket of wax.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:30} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:31} -{name:"Lit black candle", itemDescription:"A spooky candle.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:32} -{name:"Lit candle", itemDescription:"A candle.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:33} -{name:"Lit candle", itemDescription:"A candle.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:34} -{name:"Excalibur", itemDescription:"This used to belong to King Arthur.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:35} -{name:"Candle", itemDescription:"A candle.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:36} -{name:"Candle", itemDescription:"A candle.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:37} -{name:"Black candle", itemDescription:"A spooky candle.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:38} -{name:"Bronze arrowtips", itemDescription:"I can make an arrow with these.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:39} -{name:"Iron arrowtips", itemDescription:"I can make an arrow with these.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:40} -{name:"Steel arrowtips", itemDescription:"I can make an arrow with these.", shopValue:36, lowAlch:14, highAlch:21, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:41} -{name:"Mithril arrowtips", itemDescription:"I can make an arrow with these.", shopValue:68, lowAlch:27, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:42} -{name:"Adamant arrowtips", itemDescription:"I can make an arrow with these.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:43} -{name:"Rune arrowtips", itemDescription:"I can make an arrow with these.", shopValue:460, lowAlch:184, highAlch:276, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:44} -{name:"Opal bolt tips", itemDescription:"Opal bolt tips.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:45} -{name:"Pearl bolt tips", itemDescription:"Pearl bolt tips.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:46} -{name:"Barb bolttips", itemDescription:"I can make bolts with these.", shopValue:95, lowAlch:38, highAlch:57, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:47} -{name:"Longbow (u)", itemDescription:"An unstrung longbow; I need a bowstring for this.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:48} -{name:"Longbow (u)", itemDescription:"An unstrung longbow; I need a bowstring for this.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:49} -{name:"Shortbow (u)", itemDescription:"I need to find a string for this.", shopValue:23, lowAlch:9, highAlch:13, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:50} -{name:"Shortbow (u)", itemDescription:"I need to find a string for this.", shopValue:23, lowAlch:9, highAlch:13, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:51} -{name:"Arrow shaft", itemDescription:"A wooden arrow shaft", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:52} -{name:"Headless arrow", itemDescription:"A wooden arrow shaft with flights attached.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:53} -{name:"Oak shortbow (u)", itemDescription:"An unstrung oak bow; I need a bowstring for this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:54} -{name:"Oak shortbow (u)", itemDescription:"An unstrung oak bow; I need a bowstring for this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:55} -{name:"Oak longbow (u)", itemDescription:"An unstrung oak longbow; I need a bowstring for this.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:56} -{name:"Oak longbow (u)", itemDescription:"An unstrung oak longbow; I need a bowstring for this.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:57} -{name:"Willow longbow (u)", itemDescription:"An unstrung willow longbow; I need a bowstring for this.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:58} -{name:"Willow longbow (u)", itemDescription:"An unstrung willow longbow; I need a bowstring for this.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:59} -{name:"Willow shortbow (u)", itemDescription:"An unstrung willow shortbow; I need a bowstring for this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:60} -{name:"Willow shortbow (u)", itemDescription:"An unstrung willow shortbow; I need a bowstring for this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:61} -{name:"Maple longbow (u)", itemDescription:"An unstrung maple bow; I need a bowstring for this.", shopValue:320, lowAlch:128, highAlch:192, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:62} -{name:"Maple longbow (u)", itemDescription:"An unstrung maple bow; I need a bowstring for this.", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:63} -{name:"Maple shortbow (u)", itemDescription:"An unstrung maple bow; I need a bowstring for this.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:64} -{name:"Maple shortbow (u)", itemDescription:"An unstrung maple bow; I need a bowstring for this.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:65} -{name:"Yew longbow (u)", itemDescription:"An unstrung yew longbow; I need a bowstring for this.", shopValue:640, lowAlch:256, highAlch:384, isStackable:false, isNoteable:false, weight:132.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:66} -{name:"Yew longbow (u)", itemDescription:"An unstrung yew longbow; I need a bowstring for this.", shopValue:640, lowAlch:256, highAlch:384, isStackable:true, isNoteable:true, weight:132.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:67} -{name:"Yew shortbow (u)", itemDescription:"An unstrung yew shortbow; I need a bowstring for this.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:132.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:68} -{name:"Yew shortbow (u)", itemDescription:"An unstrung yew shortbow; I need a bowstring for this.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:132.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:69} -{name:"Magic longbow (u)", itemDescription:"An unstrung magic longbow; I need a bowstring for this.", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:70} -{name:"Magic longbow (u)", itemDescription:"An unstrung magic longbow; I need a bowstring for this.", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:71} -{name:"Magic shortbow (u)", itemDescription:"An unstrung magic shortbow; I need a bowstring for this.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:72} -{name:"Magic shortbow (u)", itemDescription:"An unstrung magic shortbow; I need a bowstring for this.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:73} -{name:"Khazard helmet", itemDescription:"A helmet, as worn by the minions of General Khazard.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:74} -{name:"Khazard armour", itemDescription:"", shopValue:12, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:75} -{name:"Khazard cell keys", itemDescription:"These keys open the cells at the Khazard Fight Arena. (Fight Arena)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:76} -{name:"Khali brew", itemDescription:"A bottle of Khazard's worst brew.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:77} -{name:"Ice arrows", itemDescription:"Can only be fired from yew, magic, or dark bows.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:78} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:79} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:80} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:81} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:82} -{name:"Lever", itemDescription:"", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:83} -{name:"Staff of armadyl", itemDescription:"The power in this staff causes it to vibrate gently.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:84} -{name:"Shiny key", itemDescription:"It catches the light! (Temple of Ikov)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:85} -{name:"Pendant of lucien", itemDescription:"An amulet made by Lucien.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:86} -{name:"Armadyl pendant", itemDescription:"Yet another amulet.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:87} -{name:"Boots of lightness", itemDescription:"Magic boots that make you lighter than normal.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:88} -{name:"Boots of lightness", itemDescription:"Magic boots that make you lighter than normal.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:89} -{name:"Child's blanket", itemDescription:"It's very soft!", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:90} -{name:"Guam potion (unf)", itemDescription:"I need another ingredient to finish this guam potion.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:91} -{name:"Guam potion (unf)", itemDescription:"I need another ingredient to finish this guam potion.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:92} -{name:"Marrentill potion (unf)", itemDescription:"I need another ingredient to finish this marrentill potion.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:93} -{name:"Marrentill potion (unf)", itemDescription:"I need another ingredient to finish this marrentill potion.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:94} -{name:"Tarromin potion (unf)", itemDescription:"I need another ingredient to finish this tarromin potion.", shopValue:11, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:95} -{name:"Tarromin potion (unf)", itemDescription:"I need another ingredient to finish this tarromin potion.", shopValue:11, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:96} -{name:"Harralander potion (unf)", itemDescription:"I need another ingredient to finish this potion.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:97} -{name:"Harralander potion (unf)", itemDescription:"I need another ingredient to finish this potion.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:98} -{name:"Ranarr potion (unf)", itemDescription:"I need another ingredient to finish this ranarr potion.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:99} -{name:"Ranarr potion (unf)", itemDescription:"I need another ingredient to finish this ranarr potion.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:100} -{name:"Irit potion (unf)", itemDescription:"I need another ingredient to finish this irit potion.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:101} -{name:"Irit potion (unf)", itemDescription:"I need another ingredient to finish this irit potion.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:102} -{name:"Avantoe potion (unf)", itemDescription:"I need another ingredient to finish this avantoe potion.", shopValue:48, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:103} -{name:"Avantoe potion (unf)", itemDescription:"I need another ingredient to finish this avantoe potion.", shopValue:48, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:104} -{name:"Kwuarm potion (unf)", itemDescription:"I need another ingredient to finish this kwuarm potion.", shopValue:54, lowAlch:21, highAlch:32, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:105} -{name:"Kwuarm potion (unf)", itemDescription:"I need another ingredient to finish this kwuarm potion.", shopValue:54, lowAlch:21, highAlch:32, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:106} -{name:"Cadantine potion (unf)", itemDescription:"I need another ingredient to finish this cadantine potion.", shopValue:65, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:107} -{name:"Cadantine potion (unf)", itemDescription:"I need another ingredient to finish this cadantine potion.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:108} -{name:"Dwarf weed potion (unf)", itemDescription:"I need another ingredient to finish this dwarf weed potion.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:109} -{name:"Dwarf weed potion (unf)", itemDescription:"I need another ingredient to finish this dwarf weed potion.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:110} -{name:"Torstol potion (unf)", itemDescription:"I need another ingredient to finish this torstol potion.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:111} -{name:"Torstol potion (unf)", itemDescription:"I need another ingredient to finish this torstol potion.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:112} -{name:"Strength potion (4)", itemDescription:"X doses of Strength potion.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:113} -{name:"Strength potion (4)", itemDescription:"X doses of Strength potion.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:114} -{name:"Strength potion (3)", itemDescription:"X doses of Strength potion.", shopValue:1200, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:115} -{name:"Strength potion (3)", itemDescription:"X doses of Strength potion.", shopValue:1200, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:116} -{name:"Strength potion (2)", itemDescription:"X doses of Strength potion.", shopValue:900, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:117} -{name:"Strength potion (2)", itemDescription:"X doses of Strength potion.", shopValue:900, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:118} -{name:"Strength potion (1)", itemDescription:"X doses of Strength potion.", shopValue:600, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:119} -{name:"Strength potion (1)", itemDescription:"X doses of Strength potion.", shopValue:600, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:120} -{name:"Attack potion (3)", itemDescription:"X doses of Attack potion.", shopValue:560, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:121} -{name:"Attack potion (3)", itemDescription:"X doses of Attack potion.", shopValue:560, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:122} -{name:"Attack potion (2)", itemDescription:"X doses of Attack potion.", shopValue:420, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:123} -{name:"Attack potion (2)", itemDescription:"X doses of Attack potion.", shopValue:420, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:124} -{name:"Attack potion (1)", itemDescription:"X doses of Attack potion.", shopValue:280, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:125} -{name:"Attack potion (1)", itemDescription:"X doses of Attack potion.", shopValue:280, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:126} -{name:"Restore potion (3)", itemDescription:"X dose(s) of restore potion.", shopValue:88, lowAlch:35, highAlch:52, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:127} -{name:"Restore potion (3)", itemDescription:"X dose(s) of restore potion.", shopValue:88, lowAlch:35, highAlch:52, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:128} -{name:"Restore potion (2)", itemDescription:"X dose(s) of restore potion.", shopValue:66, lowAlch:35, highAlch:52, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:129} -{name:"Restore potion (2)", itemDescription:"X dose(s) of restore potion.", shopValue:66, lowAlch:35, highAlch:52, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:130} -{name:"Restore potion (1)", itemDescription:"X dose(s) of restore potion.", shopValue:44, lowAlch:35, highAlch:52, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:131} -{name:"Restore potion (1)", itemDescription:"X dose(s) of restore potion.", shopValue:44, lowAlch:35, highAlch:52, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:132} -{name:"Defence potion (3)", itemDescription:"(x) doses of Defence Potion.", shopValue:880, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:133} -{name:"Defence potion (3)", itemDescription:"(x) doses of Defence Potion.", shopValue:880, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:134} -{name:"Defence potion (2)", itemDescription:"(x) doses of Defence Potion.", shopValue:660, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:135} -{name:"Defence potion (2)", itemDescription:"(x) doses of Defence Potion.", shopValue:660, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:136} -{name:"Defence potion (1)", itemDescription:"(x) doses of Defence Potion.", shopValue:440, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:137} -{name:"Defence potion (1)", itemDescription:"(x) doses of Defence Potion.", shopValue:440, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:138} -{name:"Prayer potion (3)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:152, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:139} -{name:"Prayer potion (3)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:152, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:140} -{name:"Prayer potion (2)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:114, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:141} -{name:"Prayer potion (2)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:114, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:142} -{name:"Prayer potion (1)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:76, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:143} -{name:"Prayer potion (1)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:76, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:144} -{name:"Super attack (3)", itemDescription:"X dose(s) of super Attack potion.", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:145} -{name:"Super attack (3)", itemDescription:"X dose(s) of super Attack potion.", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:146} -{name:"Super attack (2)", itemDescription:"X dose(s) of super Attack potion.", shopValue:135, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:147} -{name:"Super attack (2)", itemDescription:"X dose(s) of super Attack potion.", shopValue:135, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:148} -{name:"Super attack (1)", itemDescription:"X dose(s) of super Attack potion.", shopValue:90, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:149} -{name:"Super attack (1)", itemDescription:"X dose(s) of super Attack potion.", shopValue:90, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:150} -{name:"Fishing potion (3)", itemDescription:"X doses of Fishing potion.", shopValue:200, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:151} -{name:"Fishing potion (3)", itemDescription:"X doses of Fishing potion.", shopValue:200, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:152} -{name:"Fishing potion (2)", itemDescription:"X doses of Fishing potion.", shopValue:150, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:153} -{name:"Fishing potion (2)", itemDescription:"X doses of Fishing potion.", shopValue:150, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:154} -{name:"Fishing potion (1)", itemDescription:"X doses of Fishing potion.", shopValue:100, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:155} -{name:"Fishing potion (1)", itemDescription:"X doses of Fishing potion.", shopValue:100, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:156} -{name:"Super strength (3)", itemDescription:"X dose(s) of super Strength potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:157} -{name:"Super strength (3)", itemDescription:"X dose(s) of super Strength potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:158} -{name:"Super strength (2)", itemDescription:"X dose(s) of super Strength potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:159} -{name:"Super strength (2)", itemDescription:"X dose(s) of super Strength potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:160} -{name:"Super strength (1)", itemDescription:"X dose(s) of super Strength potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:161} -{name:"Super strength (1)", itemDescription:"X dose(s) of super Strength potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:162} -{name:"Super defence (3)", itemDescription:"X dose(s) of super Defence potion.", shopValue:264, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:163} -{name:"Super defence (3)", itemDescription:"X dose(s) of super Defence potion.", shopValue:264, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:164} -{name:"Super defence (2)", itemDescription:"X dose(s) of super Defence potion.", shopValue:198, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:165} -{name:"Super defence (2)", itemDescription:"X dose(s) of super Defence potion.", shopValue:198, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:166} -{name:"Super defence (1)", itemDescription:"X dose(s) of super Defence potion.", shopValue:132, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:167} -{name:"Super defence (1)", itemDescription:"X dose(s) of super Defence potion.", shopValue:132, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:168} -{name:"Ranging potion (3)", itemDescription:"X doses of ranging potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:169} -{name:"Ranging potion (3)", itemDescription:"X doses of ranging potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:170} -{name:"Ranging potion (2)", itemDescription:"X doses of ranging potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:171} -{name:"Ranging potion (2)", itemDescription:"X doses of ranging potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:172} -{name:"Ranging potion (1)", itemDescription:"X doses of ranging potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:173} -{name:"Ranging potion (1)", itemDescription:"X doses of ranging potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:174} -{name:"Antipoison (3)", itemDescription:"X doses of antipoison potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:175} -{name:"Antipoison (3)", itemDescription:"X doses of antipoison potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:176} -{name:"Antipoison (2)", itemDescription:"X doses of antipoison potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:177} -{name:"Antipoison (2)", itemDescription:"X doses of antipoison potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:178} -{name:"Antipoison (1)", itemDescription:"X doses of antipoison potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:179} -{name:"Antipoison (1)", itemDescription:"X doses of antipoison potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:180} -{name:"Super antipoison (3)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:181} -{name:"Super antipoison (3)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:182} -{name:"Super antipoison (2)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:183} -{name:"Super antipoison (2)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:184} -{name:"Super antipoison (1)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:185} -{name:"Super antipoison (1)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:186} -{name:"Weapon poison", itemDescription:"For use on daggers and projectiles.", shopValue:144, lowAlch:57, highAlch:86, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:187} -{name:"Weapon poison", itemDescription:"For use on daggers and projectiles.", shopValue:144, lowAlch:57, highAlch:86, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:188} -{name:"Zamorak brew (3)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:175, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:189} -{name:"Zamorak brew (3)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:175, lowAlch:70, highAlch:105, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:190} -{name:"Zamorak brew (2)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:150, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:191} -{name:"Zamorak brew (2)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:150, lowAlch:70, highAlch:105, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:192} -{name:"Zamorak brew (1)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:125, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:193} -{name:"Zamorak brew (1)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:125, lowAlch:70, highAlch:105, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:194} -{name:"Potion", itemDescription:"This is meant to be good for spots.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:195} -{name:"Potion", itemDescription:"This is meant to be good for spots.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:196} -{name:"Poison chalice", itemDescription:"Stankers gives out these strange cocktails for free.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:197} -{name:"Poison chalice", itemDescription:"Stankers gives out these strange cocktails for free.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:198} -{name:"Grimy guam", itemDescription:"I need to clean this herb before I can use it.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:199} -{name:"Grimy guam", itemDescription:"I need to clean this herb before I can use it.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:200} -{name:"Grimy marrentill", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:201} -{name:"Grimy marrentill", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:202} -{name:"Grimy tarromin", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:203} -{name:"Grimy tarromin", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:204} -{name:"Grimy harralander", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:205} -{name:"Grimy harralander", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:206} -{name:"Grimy ranarr", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:207} -{name:"Grimy ranarr", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:208} -{name:"Grimy irit", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:209} -{name:"Grimy irit", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:210} -{name:"Grimy avantoe", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:211} -{name:"Grimy avantoe", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:212} -{name:"Grimy kwuarm", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:213} -{name:"Grimy kwuarm", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:214} -{name:"Grimy cadantine", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:215} -{name:"Grimy cadantine", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:216} -{name:"Grimy dwarf weed", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:217} -{name:"Grimy dwarf weed", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:218} -{name:"Grimy torstol", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:219} -{name:"Grimy torstol", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:220} -{name:"Eye of newt", itemDescription:"It seems to be looking at me.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:221} -{name:"Eye of newt", itemDescription:"It seems to be looking at me.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:222} -{name:"Red spiders' eggs", itemDescription:"Ewww!", shopValue:7, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:223} -{name:"Red spiders' eggs", itemDescription:"Ewww!", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:224} -{name:"Limpwurt root", itemDescription:"The root of a limpwurt plant.", shopValue:7, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:225} -{name:"Limpwurt root", itemDescription:"The root of a limpwurt plant.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:226} -{name:"Vial of water", itemDescription:"A glass vial containing water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:227} -{name:"Vial of water", itemDescription:"A glass vial containing water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:228} -{name:"Vial", itemDescription:"An empty glass vial.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:229} -{name:"Vial", itemDescription:"An empty glass vial.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:230} -{name:"Snape grass", itemDescription:"Strange spiky grass.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:231} -{name:"Snape grass", itemDescription:"Strange spiky grass.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:232} -{name:"Pestle and mortar", itemDescription:"I can grind things for potions in this.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:233} -{name:"Pestle and mortar", itemDescription:"I can grind things for potions in this.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:234} -{name:"Unicorn horn dust", itemDescription:"Finely ground horn of Unicorn.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:235} -{name:"Unicorn horn dust", itemDescription:"Finely ground horn of Unicorn.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:236} -{name:"Unicorn horn", itemDescription:"This horn has restorative properties.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:237} -{name:"Unicorn horn", itemDescription:"This horn has restorative properties.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:238} -{name:"White berries", itemDescription:"Sour berries, used in potions.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:239} -{name:"White berries", itemDescription:"Sour berries, used in potions.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:240} -{name:"Dragon scale dust", itemDescription:"Finely ground scale of Dragon.", shopValue:52, lowAlch:20, highAlch:31, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:241} -{name:"Dragon scale dust", itemDescription:"Finely ground scale of Dragon.", shopValue:52, lowAlch:20, highAlch:31, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:242} -{name:"Blue dragon scale", itemDescription:"A large shiny scale.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:243} -{name:"Blue dragon scale", itemDescription:"A large shiny scale.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:244} -{name:"Wine of zamorak", itemDescription:"An evil wine that is often found in chaos temples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:245} -{name:"Wine of zamorak", itemDescription:"An evil wine that is often found in chaos temples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:246} -{name:"Jangerberries", itemDescription:"They don't look very ripe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:247} -{name:"Jangerberries", itemDescription:"They don't look very ripe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:248} -{name:"Clean guam", itemDescription:"A fresh herb.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:249} -{name:"Clean guam", itemDescription:"A fresh herb.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:250} -{name:"Clean marrentill", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:251} -{name:"Clean marrentill", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:252} -{name:"Clean tarromin", itemDescription:"A fresh herb.", shopValue:11, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:253} -{name:"Clean tarromin", itemDescription:"A fresh herb.", shopValue:11, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:254} -{name:"Clean harralander", itemDescription:"A fresh herb.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:255} -{name:"Clean harralander", itemDescription:"A fresh herb.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:256} -{name:"Clean ranarr", itemDescription:"A fresh herb.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:257} -{name:"Clean ranarr", itemDescription:"A fresh herb.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:258} -{name:"Clean irit", itemDescription:"A fresh herb.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:259} -{name:"Clean irit", itemDescription:"A fresh herb.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:260} -{name:"Clean avantoe", itemDescription:"A fresh herb.", shopValue:48, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:261} -{name:"Clean avantoe", itemDescription:"A fresh herb.", shopValue:48, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:262} -{name:"Clean kwuarm", itemDescription:"A fresh herb.", shopValue:54, lowAlch:21, highAlch:32, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:263} -{name:"Clean kwuarm", itemDescription:"A fresh herb.", shopValue:54, lowAlch:21, highAlch:32, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:264} -{name:"Clean cadantine", itemDescription:"A fresh herb.", shopValue:65, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:265} -{name:"Clean cadantine", itemDescription:"A fresh herb.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:266} -{name:"Clean dwarf weed", itemDescription:"A fresh herb.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:267} -{name:"Clean dwarf weed", itemDescription:"A fresh herb.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:268} -{name:"Clean torstol", itemDescription:"A fresh herb.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:269} -{name:"Clean torstol", itemDescription:"A fresh herb.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:270} -{name:"Pressure gauge", itemDescription:"It looks like part of a machine", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:271} -{name:"Fish food", itemDescription:"A box of fish food / Keeps your pet fish strong and healthy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:272} -{name:"Poison", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:273} -{name:"Poisoned fish food", itemDescription:"This isn't good for fish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:274} -{name:"Grimy key", itemDescription:"A slightly smelly key. (Ernest the Chicken)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:275} -{name:"Rubber tube", itemDescription:"It's slightly charred.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:276} -{name:"Oil can", itemDescription:"It's pretty full.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:277} -{name:"Cattleprod", itemDescription:"A sharp cattleprod.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:278} -{name:"Sheep feed", itemDescription:"Councillor Halgrive gave me this to kill some sheep.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:279} -{name:"Sheep bones (1)", itemDescription:"The suspicious-looking remains of a suspicious-looking sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:280} -{name:"Sheep bones (2)", itemDescription:"The suspicious-looking remains of a suspicious-looking sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:281} -{name:"Sheep bones (3)", itemDescription:"The suspicious-looking remains of a suspicious-looking sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:282} -{name:"Sheep bones (4)", itemDescription:"The suspicious-looking remains of a suspicious-looking sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:283} -{name:"Plague jacket", itemDescription:"This should protect me from the plague, I hope!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:284} -{name:"Plague trousers", itemDescription:"A thick pair of leather trousers. or These should protect me from the plague, I hope!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:285} -{name:"Orange goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:286} -{name:"Blue goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:287} -{name:"Goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:288} -{name:"Goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:289} -{name:"Research package", itemDescription:"This contains some vital research results.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:290} -{name:"Research notes", itemDescription:"These make no sense at all.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:291} -{name:"Book on baxtorian", itemDescription:"A book on elven history in northern RuneScape.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:292} -{name:"A key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:293} -{name:"Glarial's pebble", itemDescription:"A small pebble with elven inscription.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:294} -{name:"Glarial's amulet", itemDescription:"A bright green gem set in a necklace.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:295} -{name:"Glarial's urn", itemDescription:"An urn containing Glarial's ashes./An empty urn made for Glarial's ashes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:296} -{name:"Glarial's urn", itemDescription:"An urn containing Glarial's ashes./An empty urn made for Glarial's ashes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:297} -{name:"A key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:298} -{name:"Mithril seeds", itemDescription:"Magical seeds in a mithril case.", shopValue:300, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:299} -{name:"Rat's tail", itemDescription:"A bit of rat.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:300} -{name:"Lobster pot", itemDescription:"Useful for catching lobsters.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:301} -{name:"Lobster pot", itemDescription:"Useful for catching lobsters.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:302} -{name:"Small fishing net", itemDescription:"Useful for catching small fish.", shopValue:40, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:303} -{name:"Small fishing net", itemDescription:"Useful for catching small fish.", shopValue:40, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:304} -{name:"Big fishing net", itemDescription:"Useful for catching lots of fish.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:305} -{name:"Big fishing net", itemDescription:"Useful for catching lots of fish.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:306} -{name:"Fishing rod", itemDescription:"Useful for catching sardine or herring.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:307} -{name:"Fishing rod", itemDescription:"Useful for catching sardine or herring.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:308} -{name:"Fly fishing rod", itemDescription:"Useful for catching salmon or trout.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:309} -{name:"Fly fishing rod", itemDescription:"Useful for catching salmon or trout.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:310} -{name:"Harpoon", itemDescription:"Useful for catching big fish.", shopValue:45, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:311} -{name:"Harpoon", itemDescription:"Useful for catching big fish.", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:312} -{name:"Fishing bait", itemDescription:"For use with a fishing rod.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:313} -{name:"Feather", itemDescription:"Used for fly fishing.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:314} -{name:"Shrimps", itemDescription:"Some nicely cooked shrimp.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:315} -{name:"Shrimps", itemDescription:"Some nicely cooked shrimp.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:316} -{name:"Raw shrimps", itemDescription:"I should try cooking this.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:317} -{name:"Raw shrimps", itemDescription:"I should try cooking this.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:318} -{name:"Anchovies", itemDescription:"Some nicely cooked anchovies.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:319} -{name:"Anchovies", itemDescription:"Some nicely cooked anchovies.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:320} -{name:"Raw anchovies", itemDescription:"I should try cooking this.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:321} -{name:"Raw anchovies", itemDescription:"I should try cooking this.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:322} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:323} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:324} -{name:"Sardine", itemDescription:"Some nicely cooked Sardines.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:325} -{name:"Sardine", itemDescription:"Some nicely cooked Sardines.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:326} -{name:"Raw sardine", itemDescription:"I should try cooking this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:327} -{name:"Raw sardine", itemDescription:"I should try cooking this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:328} -{name:"Salmon", itemDescription:"Some nicely cooked salmon.", shopValue:88, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:329} -{name:"Salmon", itemDescription:"Some nicely cooked salmon.", shopValue:88, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:330} -{name:"Raw salmon", itemDescription:"I should try cooking this.", shopValue:92, lowAlch:36, highAlch:55, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:331} -{name:"Raw salmon", itemDescription:"I should try cooking this.", shopValue:92, lowAlch:36, highAlch:55, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:332} -{name:"Trout", itemDescription:"Some nicely cooked trout.", shopValue:68, lowAlch:27, highAlch:40, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:333} -{name:"Trout", itemDescription:"Some nicely cooked trout.", shopValue:68, lowAlch:27, highAlch:40, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:334} -{name:"Raw trout", itemDescription:"I should try cooking this.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:335} -{name:"Raw trout", itemDescription:"I should try cooking this.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:336} -{name:"Giant carp", itemDescription:"Some nicely cooked giant carp.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:337} -{name:"Raw giant carp", itemDescription:"I should try cooking this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:338} -{name:"Cod", itemDescription:"Some nicely cooked fish.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:339} -{name:"Cod", itemDescription:"Some nicely cooked fish.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:340} -{name:"Raw cod", itemDescription:"I should try cooking this.", shopValue:34, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:341} -{name:"Raw cod", itemDescription:"I should try cooking this.", shopValue:34, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:342} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:343} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:344} -{name:"Raw herring", itemDescription:"I should try cooking this.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:345} -{name:"Raw herring", itemDescription:"I should try cooking this.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:346} -{name:"Herring", itemDescription:"Some nicely cooked herring.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:347} -{name:"Herring", itemDescription:"Some nicely cooked herring.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:348} -{name:"Raw pike", itemDescription:"I should try cooking this.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:349} -{name:"Raw pike", itemDescription:"I should try cooking this.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:350} -{name:"Pike", itemDescription:"Some nicely cooked pike.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:351} -{name:"Pike", itemDescription:"Some nicely cooked pike.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:352} -{name:"Raw mackerel", itemDescription:"I should try cooking this.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:353} -{name:"Raw mackerel", itemDescription:"I should try cooking this.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:354} -{name:"Mackerel", itemDescription:"Some nicely cooked fish.", shopValue:17, lowAlch:6, highAlch:10, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:355} -{name:"Mackerel", itemDescription:"Some nicely cooked fish.", shopValue:17, lowAlch:6, highAlch:10, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:356} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:357} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:358} -{name:"Raw tuna", itemDescription:"I should try cooking this.", shopValue:120, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:379.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:359} -{name:"Raw tuna", itemDescription:"I should try cooking this.", shopValue:120, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:379.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:360} -{name:"Tuna", itemDescription:"Wow, this is a big fish.", shopValue:120, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:361} -{name:"Tuna", itemDescription:"Wow, this is a big fish.", shopValue:120, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:362} -{name:"Raw bass", itemDescription:"Wow, this is a big fish.", shopValue:280, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:363} -{name:"Raw bass", itemDescription:"Wow, this is a big fish.", shopValue:280, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:364} -{name:"Bass", itemDescription:"Wow, this is a big fish.", shopValue:270, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:365} -{name:"Bass", itemDescription:"Wow, this is a big fish.", shopValue:270, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:366} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:367} -{name:"Burnt fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:368} -{name:"Burnt fish", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:369} -{name:"Burnt fish", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:370} -{name:"Raw swordfish", itemDescription:"I should try cooking this.", shopValue:340, lowAlch:136, highAlch:204, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:371} -{name:"Raw swordfish", itemDescription:"I should try cooking this.", shopValue:340, lowAlch:136, highAlch:204, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:372} -{name:"Swordfish", itemDescription:"I'd better be careful eating this!", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:373} -{name:"Swordfish", itemDescription:"I'd better be careful eating this!", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:374} -{name:"Burnt swordfish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:375} -{name:"Burnt swordfish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:376} -{name:"Raw lobster", itemDescription:"I should try cooking this.", shopValue:284, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:377} -{name:"Raw lobster", itemDescription:"I should try cooking this.", shopValue:284, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:378} -{name:"Lobster", itemDescription:"This looks tricky to eat.", shopValue:268, lowAlch:107, highAlch:160, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:379} -{name:"Lobster", itemDescription:"This looks tricky to eat.", shopValue:268, lowAlch:107, highAlch:160, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:380} -{name:"Burnt lobster", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:381} -{name:"Burnt lobster", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:382} -{name:"Raw shark", itemDescription:"I should try cooking this.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:383} -{name:"Raw shark", itemDescription:"I should try cooking this.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:384} -{name:"Shark", itemDescription:"I'd better be careful eating this.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:385} -{name:"Shark", itemDescription:"I'd better be careful eating this.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:386} -{name:"Burnt shark", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:387} -{name:"Burnt shark", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:388} -{name:"Raw manta ray", itemDescription:"Tastier when cooked.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:389} -{name:"Raw manta ray", itemDescription:"Tastier when cooked.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:390} -{name:"Manta ray", itemDescription:"Mmmm...this looks tasty!", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:391} -{name:"Manta ray", itemDescription:"Mmmm...this looks tasty!", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:392} -{name:"Burnt manta ray", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:393} -{name:"Burnt manta ray", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:394} -{name:"Raw sea turtle", itemDescription:"Looks wrinkly.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:395} -{name:"Raw sea turtle", itemDescription:"Looks wrinkly.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:396} -{name:"Sea turtle", itemDescription:"Tasty!", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:35.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:397} -{name:"Sea turtle", itemDescription:"Tasty!", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:35.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:398} -{name:"Burnt sea turtle", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:399} -{name:"Burnt sea turtle", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:400} -{name:"Seaweed", itemDescription:"Slightly damp seaweed.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:401} -{name:"Seaweed", itemDescription:"Slightly damp seaweed.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:402} -{name:"Edible seaweed", itemDescription:"Slightly damp seaweed.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:403} -{name:"Edible seaweed", itemDescription:"Slightly damp seaweed.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:404} -{name:"Casket", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:405} -{name:"Casket", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:406} -{name:"Oyster", itemDescription:"Its a rare oyster.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:407} -{name:"Oyster", itemDescription:"Its a rare oyster.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:408} -{name:"Empty oyster", itemDescription:"Aww, it's empty.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:409} -{name:"Empty oyster", itemDescription:"Aww, it's empty.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:410} -{name:"Oyster pearl", itemDescription:"I could work wonders with a chisel on this pearl.", shopValue:112, lowAlch:44, highAlch:67, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:411} -{name:"Oyster pearl", itemDescription:"I could work wonders with a chisel on this pearl.", shopValue:112, lowAlch:44, highAlch:67, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:412} -{name:"Oyster pearls", itemDescription:"I could work wonders with a chisel on these pearls.", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:413} -{name:"Oyster pearls", itemDescription:"I could work wonders with a chisel on these pearls.", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:414} -{name:"Ethenea", itemDescription:"An expensive colourless liquid.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:415} -{name:"Liquid honey", itemDescription:"This isn't worth much.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:416} -{name:"Sulphuric broline", itemDescription:"It's highly poisonous.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:417} -{name:"Plague sample", itemDescription:"Probably best I don't keep this too long.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:418} -{name:"Touch paper", itemDescription:"A special kind of paper.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:419} -{name:"Distillator", itemDescription:"Apparently it distills.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:420} -{name:"Lathas' amulet", itemDescription:"Yup. It's an amulet.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:421} -{name:"Bird feed", itemDescription:"Birds love this stuff!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:422} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:423} -{name:"Pigeon cage", itemDescription:"(empty) It's empty... (full) It's full of pigeons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:424} -{name:"Pigeon cage", itemDescription:"(empty) It's empty... (full) It's full of pigeons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:425} -{name:"Priest gown", itemDescription:"Top half of a priest suit.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:426} -{name:"Priest gown", itemDescription:"Top half of a priest suit.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:427} -{name:"Priest gown", itemDescription:"Top half of a priest suit.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:428} -{name:"Priest gown", itemDescription:"Top half of a priest suit.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:429} -{name:"Doctors' gown", itemDescription:"Medical looking.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:430} -{name:"Karamjan rum", itemDescription:"A very strong spirit brewed in Karamja.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:431} -{name:"Chest key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:432} -{name:"Pirate message", itemDescription:"Pirates don't have the best handwriting...", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:433} -{name:"Clay", itemDescription:"Some hard dry clay.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:434} -{name:"Clay", itemDescription:"Some hard dry clay.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:435} -{name:"Copper ore", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:436} -{name:"Copper ore", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:437} -{name:"Tin ore", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:438} -{name:"Tin ore", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:439} -{name:"Iron ore", itemDescription:"This needs refining.", shopValue:17, lowAlch:6, highAlch:10, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:440} -{name:"Iron ore", itemDescription:"This needs refining.", shopValue:17, lowAlch:6, highAlch:10, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:441} -{name:"Silver ore", itemDescription:"This needs refining.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:442} -{name:"Silver ore", itemDescription:"This needs refining.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:443} -{name:"Gold ore", itemDescription:"This needs refining.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:444} -{name:"Gold ore", itemDescription:"This needs refining.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:445} -{name:"'perfect' gold ore", itemDescription:"This needs refining.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:446} -{name:"Mithril ore", itemDescription:"This needs refining.", shopValue:162, lowAlch:64, highAlch:97, isStackable:false, isNoteable:false, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:447} -{name:"Mithril ore", itemDescription:"This needs refining.", shopValue:162, lowAlch:64, highAlch:97, isStackable:true, isNoteable:true, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:448} -{name:"Adamantite ore", itemDescription:"This needs refining.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:449} -{name:"Adamantite ore", itemDescription:"This needs refining.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:450} -{name:"Runite ore", itemDescription:"This needs refining.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:451} -{name:"Runite ore", itemDescription:"This needs refining.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:452} -{name:"Coal", itemDescription:"Hmm, a non-renewable energy source!", shopValue:45, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:453} -{name:"Coal", itemDescription:"Hmm, a non-renewable energy source!", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:454} -{name:"Barcrawl card", itemDescription:"The official Alfred Grimhand bar crawl card.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:455} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:456} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:457} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:458} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:459} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:460} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:461} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:462} -{name:"Scorpion cage", itemDescription:"It's empty!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:463} -{name:"Strange fruit", itemDescription:"Found on strange plants that grow around Karamja.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:464} -{name:"Strange fruit", itemDescription:"Found on strange plants that grow around Karamja.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:465} -{name:"Pickaxe handle", itemDescription:"Useless without the head.", shopValue:1, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:466} -{name:"Pickaxe handle", itemDescription:"Useless without the head.", shopValue:1, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:467} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:468} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:469} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:470} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:471} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:472} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:473} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:474} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:475} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:476} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:477} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:478} -{name:"Broken pickaxe", itemDescription:"Nurmof can fix this for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:479} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:480} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:481} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:482} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:483} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:484} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:485} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:486} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:487} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:488} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:489} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:490} -{name:"Pickaxe head", itemDescription:"It's missing a handle.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:491} -{name:"Hatchet handle", itemDescription:"Useless without the head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:492} -{name:"Hatchet handle", itemDescription:"Useless without the head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:493} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:494} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:495} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:496} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:497} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:498} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:499} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:500} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:501} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:502} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:503} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:504} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:505} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:506} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:507} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:508} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:509} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:510} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:511} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:512} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:513} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:514} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:515} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:516} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:517} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:518} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:519} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:520} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:521} -{name:"Enchanted beef", itemDescription:"I don't fancy eating this now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:522} -{name:"Enchanted rat meat", itemDescription:"I don't fancy eating this now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:523} -{name:"Enchanted bear meat", itemDescription:"I don't fancy eating this now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:524} -{name:"Enchanted chicken", itemDescription:"I don't fancy eating this now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:525} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:526} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:527} -{name:"Burnt bones", itemDescription:"Bones are for burying!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:528} -{name:"Burnt bones", itemDescription:"Bones are for burying!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:529} -{name:"Bat bones", itemDescription:"Ew it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:530} -{name:"Bat bones", itemDescription:"Ew it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:531} -{name:"Big bones", itemDescription:"Ew, it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:532} -{name:"Big bones", itemDescription:"Ew, it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:533} -{name:"Babydragon bones", itemDescription:"Ew, it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:534} -{name:"Babydragon bones", itemDescription:"Ew, it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:535} -{name:"Dragon bones", itemDescription:"These would feed a dog for months!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:536} -{name:"Dragon bones", itemDescription:"These would feed a dog for months!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:537} -{name:"Druid's robe", itemDescription:"I feel closer to the gods when I am wearing this.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:538} -{name:"Druid's robe", itemDescription:"I feel closer to the gods when I am wearing this.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:539} -{name:"Druid's robe", itemDescription:"Keeps a druid's knees nice and warm.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:540} -{name:"Druid's robe", itemDescription:"Keeps a druid's knees nice and warm.", shopValue:40, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:541} -{name:"Monk's robe", itemDescription:"", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:542} -{name:"Monk's robe", itemDescription:"", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:543} -{name:"Monk's robe", itemDescription:"", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:544} -{name:"Monk's robe", itemDescription:"", shopValue:40, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:545} -{name:"Shade robe", itemDescription:"I feel closer to the gods when I am wearing this. (Top) If a shade had knees, this would keep them nice and warm. (Bottom)", shopValue:40, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:546} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:547} -{name:"Shade robe", itemDescription:"I feel closer to the gods when I am wearing this. (Top) If a shade had knees, this would keep them nice and warm. (Bottom)", shopValue:30, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:548} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:549} -{name:"Newcomer map", itemDescription:"Issued by RuneScape Council to all new citizens.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:550} -{name:"Newcomer map", itemDescription:"Issued by RuneScape Council to all new citizens.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:551} -{name:"Ghostspeak amulet", itemDescription:"It lets me talk to ghosts.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:552} -{name:"Muddy skull", itemDescription:"Ooooh spooky!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:553} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:17, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:554} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:17, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:555} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:17, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:556} -{name:"Earth rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:17, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:557} -{name:"Mind rune", itemDescription:"Used for basic level missile spells.", shopValue:17, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:558} -{name:"Body rune", itemDescription:"Used for Curse spells", shopValue:16, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:559} -{name:"Death rune", itemDescription:"Used for medium level missile spells.", shopValue:310, lowAlch:41, highAlch:62, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:560} -{name:"Nature rune", itemDescription:"Used for alchemy spells.", shopValue:372, lowAlch:49, highAlch:74, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:561} -{name:"Chaos rune", itemDescription:"Used for low level missile spells.", shopValue:140, lowAlch:18, highAlch:28, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:562} -{name:"Law rune", itemDescription:"Used for teleport spells.", shopValue:378, lowAlch:50, highAlch:75, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:563} -{name:"Cosmic rune", itemDescription:"Used for enchant spells.", shopValue:232, lowAlch:30, highAlch:46, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:564} -{name:"Blood rune", itemDescription:"Used for high level missile spells.", shopValue:550, lowAlch:73, highAlch:110, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:565} -{name:"Soul rune", itemDescription:"Used for high level curse spells.", shopValue:410, lowAlch:54, highAlch:82, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:566} -{name:"Unpowered orb", itemDescription:"I'd prefer it if it was powered.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:567} -{name:"Unpowered orb", itemDescription:"I'd prefer it if it was powered.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:568} -{name:"Fire orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:569} -{name:"Fire orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:570} -{name:"Water orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:571} -{name:"Water orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:572} -{name:"Air orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:573} -{name:"Air orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:574} -{name:"Earth orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:575} -{name:"Earth orb", itemDescription:"A magic glowing orb.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:576} -{name:"Wizard robe", itemDescription:"I can do magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:577} -{name:"Wizard robe", itemDescription:"I can do magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:578} -{name:"Wizard hat", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:579} -{name:"Wizard hat", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:580} -{name:"Black robe", itemDescription:"I can do magic better in this.", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:581} -{name:"Black robe", itemDescription:"I can do magic better in this.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:582} -{name:"Bailing bucket", itemDescription:"It's a bailing bucket.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:583} -{name:"Bailing bucket", itemDescription:"It's a bailing bucket.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:584} -{name:"Bailing bucket", itemDescription:"It's a bailing bucket full of salty water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:585} -{name:"Bailing bucket", itemDescription:"It's a bailing bucket full of salty water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:586} -{name:"Orb of protection", itemDescription:"A strange glowing green orb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:587} -{name:"Orbs of protection", itemDescription:"Two strange glowing green orbs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:588} -{name:"Gnome amulet", itemDescription:"It's an amulet of protection given to me by the Gnomes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 13.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:589} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:590} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:591} -{name:"Ashes", itemDescription:"A heap of ashes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:56.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:592} -{name:"Ashes", itemDescription:"A heap of ashes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:56.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:593} -{name:"Lit torch", itemDescription:"A lit home-made torch.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:594} -{name:"Torch", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:595} -{name:"Unlit torch", itemDescription:"An unlit home-made torch.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:596} -{name:"Unlit torch", itemDescription:"An unlit home-made torch.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:597} -{name:"Bronze fire arrows", itemDescription:"Arrows with bronze heads and oil-soaked cloth.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:598} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:599} -{name:"Astronomy book", itemDescription:"A book on the history of astronomy in RuneScape.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:600} -{name:"Goblin kitchen key", itemDescription:"A small key for a large door.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:601} -{name:"Lens mould", itemDescription:"An unusual clay mould in the shape of a disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:602} -{name:"Observatory lens", itemDescription:"A perfectly circular disc of glass.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:603} -{name:"Bone shard", itemDescription:"A slender bone shard given to you by Zadimus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:604} -{name:"Bone key", itemDescription:"A key fashioned from a shard of bone. (Shilo Village)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:605} -{name:"Stone-plaque", itemDescription:"A stone plaque with carved letters in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:606} -{name:"Tattered scroll", itemDescription:"An ancient tattered scroll.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:607} -{name:"Crumpled scroll", itemDescription:"An ancient crumpled scroll.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:608} -{name:"Rashiliyia corpse", itemDescription:"The remains of the Zombie Queen.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:609} -{name:"Zadimus corpse", itemDescription:"The remains of Zadimus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:610} -{name:"Locating crystal", itemDescription:"A magical crystal sphere.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:611} -{name:"Locating crystal", itemDescription:"A magical crystal sphere.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:612} -{name:"Locating crystal", itemDescription:"A magical crystal sphere.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:613} -{name:"Locating crystal", itemDescription:"A magical crystal sphere.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:614} -{name:"Locating crystal", itemDescription:"A magical crystal sphere.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:615} -{name:"Beads of the dead", itemDescription:"A curious looking neck ornament.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:616} -{name:"Coins", itemDescription:" Lovely money!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:617} -{name:"Bone beads", itemDescription:"Beads carved out of a bone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:618} -{name:"Paramaya ticket", itemDescription:"Allows you to rest in the luxurious Paramayer[sic] Inn.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:619} -{name:"Paramaya ticket", itemDescription:"Allows you to rest in the luxurious Paramayer[sic] Inn.", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:620} -{name:"Ship ticket", itemDescription:"Sold in Shilo Village for passage on the 'Lady of the Waves'.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:621} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:622} -{name:"Sword pommel", itemDescription:"An ivory sword pommel.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:623} -{name:"Bervirius notes", itemDescription:"Notes taken from the tomb of Bervirius.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:624} -{name:"Wampum belt", itemDescription:"A decorated belt used to trade information between distant villages.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:625} -{name:"Pink boots", itemDescription:"They're soft, silky and pink.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:626} -{name:"Pink boots", itemDescription:"They're soft, silky and pink.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:627} -{name:"Green boots", itemDescription:"They're soft, silky and green.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:628} -{name:"Green boots", itemDescription:"They're soft, silky and green.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:629} -{name:"Blue boots", itemDescription:"They're soft, silky and blue.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:630} -{name:"Blue boots", itemDescription:"They're soft, silky and blue.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:631} -{name:"Cream boots", itemDescription:"They're soft, silky and cream.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:632} -{name:"Cream boots", itemDescription:"They're soft, silky and cream.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:633} -{name:"Turquoise boots", itemDescription:"They're soft, silky and turquoise.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:634} -{name:"Turquoise boots", itemDescription:"They're soft, silky and turquoise.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:635} -{name:"Pink robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:636} -{name:"Pink robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:637} -{name:"Green robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:638} -{name:"Green robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:639} -{name:"Blue robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:640} -{name:"Blue robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:641} -{name:"Cream robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:642} -{name:"Cream robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:643} -{name:"Turquoise robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:644} -{name:"Turquoise robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:645} -{name:"Pink robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:646} -{name:"Pink robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:647} -{name:"Green robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:648} -{name:"Green robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:649} -{name:"Blue robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:650} -{name:"Blue robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:651} -{name:"Cream robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:652} -{name:"Cream robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:653} -{name:"Turquoise robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:654} -{name:"Turquoise robe bottoms", itemDescription:"Made by Tree Gnomes with a thing for [colour].", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:655} -{name:"Pink hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:656} -{name:"Pink hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:657} -{name:"Green hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:658} -{name:"Green hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:659} -{name:"Blue hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:660} -{name:"Blue hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:661} -{name:"Cream hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:662} -{name:"Cream hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:663} -{name:"Turquoise hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:664} -{name:"Turquoise hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:665} -{name:"Portrait", itemDescription:"Picture of a posing Paladin.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:666} -{name:"Blurite sword", itemDescription:"A Faladian Knight's sword.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:667} -{name:"Blurite ore", itemDescription:"Definitely blue.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:668} -{name:"Specimen jar", itemDescription:"A receptacle for specimens!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:669} -{name:"Specimen brush", itemDescription:"A small brush used to clean rock samples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:670} -{name:"Animal skull", itemDescription:"A carefully-kept-safe skull sample.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:671} -{name:"Special cup", itemDescription:"A special cup.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:672} -{name:"Teddy", itemDescription:"A lucky mascot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:673} -{name:"Cracked sample", itemDescription:"A roughly shaped piece of rock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:674} -{name:"Rock pick", itemDescription:"A small pick for digging.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:675} -{name:"Trowel", itemDescription:"Used for digging!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:676} -{name:"Panning tray", itemDescription:"An empty tray for panning./This tray contains mud.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:677} -{name:"Panning tray", itemDescription:"An empty tray for panning./This tray contains mud.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:678} -{name:"Panning tray", itemDescription:"An empty tray for panning./This tray contains mud.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:679} -{name:"Nuggets", itemDescription:"Pure, lovely gold!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:680} -{name:"Ancient talisman", itemDescription:"An unusual symbol as yet unidentified by the archaeological expert.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:681} -{name:"Unstamped letter", itemDescription:"A letter waiting to be stamped.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:682} -{name:"Sealed letter", itemDescription:"A sealed letter of recommendation.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:683} -{name:"Belt buckle", itemDescription:"Used to hold up trousers!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:684} -{name:"Old boot", itemDescription:"Phew!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:685} -{name:"Rusty sword", itemDescription:"A decent-enough weapon gone rusty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:686} -{name:"Broken arrow", itemDescription:"This must have been shot at high speed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:687} -{name:"Buttons", itemDescription:"Not Dick Whittington's helper at all!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:688} -{name:"Broken staff", itemDescription:"I pity the poor person beaten with this!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:689} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:690} -{name:"Level 1 certificate", itemDescription:"The owner has passed Earth Sciences Level 1 exam.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:691} -{name:"Level 2 certificate", itemDescription:"The owner has passed Earth Sciences Level 2 exam.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:692} -{name:"Level 3 certificate", itemDescription:"The owner has passed Earth Sciences Level 3 exam.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:693} -{name:"Ceramic remains", itemDescription:"Smashing!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:694} -{name:"Old tooth", itemDescription:"Now, if I could just find a tooth fairy to sell this to...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:695} -{name:"Invitation letter", itemDescription:"A letter inviting me to use the private digging shafts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:696} -{name:"Damaged armour", itemDescription:"It would be hard to repair this!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:775.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:697} -{name:"Broken armour", itemDescription:"Armour left over from a great fight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:698} -{name:"Stone tablet", itemDescription:"An old stone slab with writing on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:699} -{name:"Chemical powder", itemDescription:"An acrid chemical.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:700} -{name:"Ammonium nitrate", itemDescription:"An acrid chemical.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:701} -{name:"Unidentified liquid", itemDescription:"A strong chemical.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:702} -{name:"Nitroglycerin", itemDescription:"A strong chemical.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:703} -{name:"Ground charcoal", itemDescription:"Charcoal - crushed to small pieces!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:704} -{name:"Mixed chemicals", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:705} -{name:"Mixed chemicals", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:706} -{name:"Chemical compound", itemDescription:"A mixture of strong chemicals.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:707} -{name:"Arcenia root", itemDescription:"The root of an arcenia plant.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:708} -{name:"Chest key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:709} -{name:"Vase", itemDescription:"A vessel for holding plants.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:710} -{name:"Book on chemicals", itemDescription:"It's about chemicals, judging from its cover.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:711} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:712} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:713} -{name:"Radimus notes", itemDescription:"Notes given to you by Radimus Erkle, it includes a partially completed map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:714} -{name:"Radimus notes", itemDescription:"Notes given to you by Radimus Erkle, it includes a partially completed map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:715} -{name:"Bull roarer", itemDescription:"It makes a loud but interesting sound when swung in the air.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:716} -{name:"Scrawled note", itemDescription:"A scrawled note with spidery writing on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:717} -{name:"A scribbled note", itemDescription:"A scrawled note with spidery writing on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:718} -{name:"Scrumpled note", itemDescription:"A scrawled note with spidery writing on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:719} -{name:"Sketch", itemDescription:"A rough sketch of a bowl shaped vessel given to you by Gujuo.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:720} -{name:"Gold bowl", itemDescription:"A specially made bowl constructed out of pure gold.", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:721} -{name:"Blessed gold bowl", itemDescription:"A specially made bowl constructed out of pure gold and blessed.", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:722} -{name:"Golden bowl", itemDescription:"A blessed golden bowl. It has pure sacred water in it.", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:723} -{name:"Golden bowl", itemDescription:"A blessed golden bowl. It has pure sacred water in it.", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:724} -{name:"Golden bowl", itemDescription:"A blessed golden bowl. It has pure sacred water in it.", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:725} -{name:"Golden bowl", itemDescription:"A blessed golden bowl. It has pure sacred water in it.", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:726} -{name:"Hollow reed", itemDescription:"One of nature's pipes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:727} -{name:"Hollow reed", itemDescription:"One of nature's pipes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:728} -{name:"Shamans tome", itemDescription:"It looks like the Shamans personal notes...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:729} -{name:"Binding book", itemDescription:"An ancient tome on Demonology.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:730} -{name:"Enchanted vial", itemDescription:"An enchanted empty glass vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:731} -{name:"Holy water", itemDescription:"A vial of holy water, good against certain demons.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:732} -{name:"Smashed glass", itemDescription:"Fragments of a broken container.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:733} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:734} -{name:"Yommi tree seeds", itemDescription:"These need to be germinated before they can be used. / These are germinated and ready to be planted in fertile soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:735} -{name:"Yommi tree seeds", itemDescription:"These need to be germinated before they can be used. / These are germinated and ready to be planted in fertile soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:736} -{name:"Snakeweed mixture", itemDescription:"A Snakeweed mixture, needs another ingredient.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:737} -{name:"Ardrigal mixture", itemDescription:"It's a mixture of ardrigal and water. Needs another ingredient.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:738} -{name:"Bravery potion", itemDescription:"A bravery potion for which Gujuo gave you the details, let's hope it works.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:739} -{name:"Blue hat", itemDescription:"A silly, (colour), pointed hat.", shopValue:2, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:740} -{name:"Chunk of crystal", itemDescription:"It looks like it's been snapped off of something.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:741} -{name:"Hunk of crystal", itemDescription:"It looks like it's been snapped off of something.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:742} -{name:"Lump of crystal", itemDescription:"It looks like it's been snapped off of something.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:743} -{name:"Heart crystal", itemDescription:"A heart shaped crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:744} -{name:"Heart crystal", itemDescription:"A heart shaped crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:745} -{name:"Dark dagger", itemDescription:"A black obsidian dagger, it has a strange aura about it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:746} -{name:"Glowing dagger", itemDescription:"A black obsidian dagger, it has a strange aura about it - it seems to be glowing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:747} -{name:"Holy force", itemDescription:"A powerful spell for good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:748} -{name:"Yommi totem", itemDescription:"A well carved totem pole made from the trunk of a Yommi tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:749} -{name:"Gilded totem", itemDescription:"A gilded totem pole from the Kharazi tribe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:750} -{name:"Gnomeball", itemDescription:"A common gnomeball, obtained by playing gnomeball.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:751} -{name:"Gnomeball", itemDescription:"A common gnomeball, obtained by playing gnomeball.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:752} -{name:"Cadava berries", itemDescription:"Poisonous berries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:753} -{name:"Cadava berries", itemDescription:"Poisonous berries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:754} -{name:"Message", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:755} -{name:"Cadava potion", itemDescription:"This potion will most certainly almost kill you.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:756} -{name:"Book", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:757} -{name:"Phoenix hq key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:758} -{name:"Weapon store key", itemDescription:"Phoenix Gang weapon store key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:759} -{name:"Weapon store key", itemDescription:"Phoenix Gang weapon store key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:760} -{name:"Intel report", itemDescription:"An intelligence report.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:761} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:762} -{name:"Broken shield", itemDescription:"Half of the Shield of Arrav.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:763} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:764} -{name:"Broken shield", itemDescription:"Half of the Shield of Arrav.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:765} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:766} -{name:"Phoenix crossbow", itemDescription:"Second-rate crossbow, former property of the Phoenix Gang.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:767} -{name:"Phoenix crossbow", itemDescription:"Second-rate crossbow, former property of the Phoenix Gang.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:768} -{name:"Certificate", itemDescription:"Entrance certificate to the Imperial Guard.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:769} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:770} -{name:"Dramen branch", itemDescription:"A limb of the fabled Dramen tree.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:771} -{name:"Dramen staff", itemDescription:"Crafted from a Dramen tree branch.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-1.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:772} -{name:"'perfect' ring", itemDescription:"A perfect ruby ring.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:773} -{name:"'perfect' necklace", itemDescription:"A perfect ruby necklace.", shopValue:2175, lowAlch:870, highAlch:1305, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:774} -{name:"Cooking gauntlets", itemDescription:"These gauntlets empower with a greater ability to cook fish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[2.0, 2.0, 2.0, 0.0, 0.0, 8.0, 9.0, 7.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:775} -{name:"Goldsmith gauntlets", itemDescription:"These gauntlets empower the bearer whilst making gold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 0.0, 0.0, 8.0, 9.0, 7.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:776} -{name:"Chaos gauntlets", itemDescription:"These gauntlets empower spell casters.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 0.0, 0.0, 8.0, 9.0, 7.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:777} -{name:"Family gauntlets", itemDescription:"My reward for assisting the Fitzharmon family.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 0.0, 0.0, 8.0, 9.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:778} -{name:"Crest part", itemDescription:"A fragment of the Fitzharmon family crest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:779} -{name:"Crest part", itemDescription:"A fragment of the Fitzharmon family crest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:780} -{name:"Crest part", itemDescription:"A fragment of the Fitzharmon family crest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:781} -{name:"Family crest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:782} -{name:"Bark sample", itemDescription:"A sample of the bark from the Grand Tree.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:783} -{name:"Translation book", itemDescription:"A book to translate the ancient gnome language into English.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:784} -{name:"Glough's journal", itemDescription:"Perhaps I should read it and see what Glough is up to!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:785} -{name:"Hazelmere's scroll", itemDescription:"Hazelmere wrote something down on this scroll.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:786} -{name:"Lumber order", itemDescription:"An order from the Karamja shipyard.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:787} -{name:"Glough's key", itemDescription:"The key to Glough's chest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:788} -{name:"Twigs", itemDescription:"Twigs bound together in the shape of a (Z/U/T/O).", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:789} -{name:"Twigs", itemDescription:"Twigs bound together in the shape of a (Z/U/T/O).", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:790} -{name:"Twigs", itemDescription:"Twigs bound together in the shape of a (Z/U/T/O).", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:791} -{name:"Twigs", itemDescription:"Twigs bound together in the shape of a (Z/U/T/O).", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:792} -{name:"Daconia rock", itemDescription:"An ancient rock with strange magical properties.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:793} -{name:"Invasion plans", itemDescription:"These are plans for an invasion!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:794} -{name:"War ship", itemDescription:"A model of a Karamja warship", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:795} -{name:"Exploding vial", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:796} -{name:"Herb bowl", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:797} -{name:"Grinder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:798} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:799} -{name:"Bronze thrownaxe", itemDescription:"A finely balanced throwing axe.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:800} -{name:"Iron thrownaxe", itemDescription:"A finely balanced throwing axe.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:801} -{name:"Steel thrownaxe", itemDescription:"A finely balanced throwing axe.", shopValue:38, lowAlch:15, highAlch:22, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:802} -{name:"Mithril thrownaxe", itemDescription:"A finely balanced throwing axe.", shopValue:105, lowAlch:28, highAlch:42, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:803} -{name:"Adamant thrownaxe", itemDescription:"A finely balanced throwing axe.", shopValue:262, lowAlch:104, highAlch:157, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:804} -{name:"Rune thrownaxe", itemDescription:"A finely balanced throwing axe.", shopValue:698, lowAlch:176, highAlch:264, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:805} -{name:"Bronze dart", itemDescription:"A deadly throwing dart with a bronze tip.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:806} -{name:"Iron dart", itemDescription:"A deadly throwing dart with an iron tip.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:807} -{name:"Steel dart", itemDescription:"A deadly throwing dart with a steel tip.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:808} -{name:"Mithril dart", itemDescription:"A deadly throwing dart with a mithril tip.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:809} -{name:"Adamant dart", itemDescription:"A deadly throwing dart with an adamantite tip.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:810} -{name:"Rune dart", itemDescription:"A deadly throwing dart with a rune tip.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:811} -{name:"Bronze dart (p)", itemDescription:"A deadly throwing dart with a bronze tip.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:812} -{name:"Iron dart (p)", itemDescription:"A deadly throwing dart with an iron tip.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:813} -{name:"Steel dart (p)", itemDescription:"A deadly throwing dart with a steel tip.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:814} -{name:"Mithril dart (p)", itemDescription:"A deadly throwing dart with a mithril tip.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:815} -{name:"Adamant dart (p)", itemDescription:"A deadly throwing dart with an adamantite tip.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:816} -{name:"Rune dart (p)", itemDescription:"A deadly throwing dart with a rune tip.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:817} -{name:"Poisoned dart (p)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:818} -{name:"Bronze dart tip", itemDescription:"A deadly looking dart tip made of bronze - needs feathers for flight.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:819} -{name:"Iron dart tip", itemDescription:"A deadly looking dart tip made of iron - needs feathers for flight.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:820} -{name:"Steel dart tip", itemDescription:"A deadly looking dart tip made of steel - needs feathers for flight.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:821} -{name:"Mithril dart tip", itemDescription:"A deadly looking dart tip made of mithril - needs feathers for flight.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:822} -{name:"Adamant dart tip", itemDescription:"A deadly looking dart tip made of adamantite - needs feathers for flight.", shopValue:36, lowAlch:14, highAlch:21, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:823} -{name:"Rune dart tip", itemDescription:"A deadly looking dart tip made of runite - needs feathers for flight.", shopValue:175, lowAlch:70, highAlch:105, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:824} -{name:"Bronze javelin", itemDescription:"A bronze-tipped javelin.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:825} -{name:"Iron javelin", itemDescription:"An iron-tipped javelin.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:826} -{name:"Steel javelin", itemDescription:"A steel-tipped javelin.", shopValue:37, lowAlch:14, highAlch:22, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:827} -{name:"Mithril javelin", itemDescription:"A mithril tipped javelin.", shopValue:98, lowAlch:39, highAlch:58, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:828} -{name:"Adamant javelin", itemDescription:"An adamant tipped javelin.", shopValue:246, lowAlch:98, highAlch:147, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:829} -{name:"Rune javelin", itemDescription:"A rune tipped javelin.", shopValue:624, lowAlch:249, highAlch:374, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:830} -{name:"Bronze javelin (p)", itemDescription:"A bronze-tipped javelin.", shopValue:4, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:831} -{name:"Iron javelin (p)", itemDescription:"An iron-tipped javelin.", shopValue:6, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:832} -{name:"Steel javelin (p)", itemDescription:"A steel-tipped javelin.", shopValue:24, lowAlch:14, highAlch:22, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:833} -{name:"Mithril javelin (p)", itemDescription:"A mithril tipped javelin.", shopValue:64, lowAlch:39, highAlch:58, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:834} -{name:"Adamant javelin (p)", itemDescription:"An adamant tipped javelin.", shopValue:160, lowAlch:98, highAlch:147, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:835} -{name:"Rune javelin (p)", itemDescription:"A rune tipped javelin.", shopValue:400, lowAlch:249, highAlch:374, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:836} -{name:"Crossbow", itemDescription:"This fires crossbow bolts.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:837} -{name:"Crossbow", itemDescription:"This fires crossbow bolts.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:838} -{name:"Longbow", itemDescription:"A nice sturdy bow.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:839} -{name:"Longbow", itemDescription:"A nice sturdy bow.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:840} -{name:"Shortbow", itemDescription:"A shortbow made of wood.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:133.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:841} -{name:"Shortbow", itemDescription:"A shortbow made of wood.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:133.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:842} -{name:"Oak shortbow", itemDescription:"A shortbow made out of oak, still effective.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:843} -{name:"Oak shortbow", itemDescription:"A shortbow made out of oak, still effective.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:844} -{name:"Oak longbow", itemDescription:"A nice sturdy bow made out of oak.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:845} -{name:"Oak longbow", itemDescription:"A nice sturdy bow made out of oak.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:846} -{name:"Willow longbow", itemDescription:"A nice sturdy bow made out of willow.", shopValue:320, lowAlch:128, highAlch:192, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:847} -{name:"Willow longbow", itemDescription:"A nice sturdy bow made out of willow.", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:848} -{name:"Willow shortbow", itemDescription:"A shortbow made out of willow, still effective.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:849} -{name:"Willow shortbow", itemDescription:"A shortbow made out of willow, still effective.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:850} -{name:"Maple longbow", itemDescription:"A nice sturdy bow made out of maple.", shopValue:640, lowAlch:256, highAlch:384, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:851} -{name:"Maple longbow", itemDescription:"A nice sturdy bow made out of maple.", shopValue:640, lowAlch:256, highAlch:384, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:852} -{name:"Maple shortbow", itemDescription:"A shortbow made out of maple, still effective.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:853} -{name:"Maple shortbow", itemDescription:"A shortbow made out of maple, still effective.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:854} -{name:"Yew longbow", itemDescription:"A nice sturdy bow made out of yew.", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:855} -{name:"Yew longbow", itemDescription:"A nice sturdy bow made out of yew.", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:856} -{name:"Yew shortbow", itemDescription:"A shortbow made out of yew, still effective.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:857} -{name:"Yew shortbow", itemDescription:"A shortbow made out of yew, still effective.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:858} -{name:"Magic longbow", itemDescription:"A nice sturdy magical bow.", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:859} -{name:"Magic longbow", itemDescription:"A nice sturdy magical bow.", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:860} -{name:"Magic shortbow", itemDescription:"Short and magical, but still effective.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:861} -{name:"Magic shortbow", itemDescription:"Short and magical, but still effective.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:862} -{name:"Iron knife", itemDescription:"A finely balanced throwing knife.", shopValue:58, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:863} -{name:"Bronze knife", itemDescription:"A finely balanced throwing knife.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:864} -{name:"Steel knife", itemDescription:"A finely balanced throwing knife.", shopValue:68, lowAlch:27, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:865} -{name:"Mithril knife", itemDescription:"A finely balanced throwing knife.", shopValue:27, lowAlch:10, highAlch:16, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:866} -{name:"Adamant knife", itemDescription:"A finely balanced throwing knife.", shopValue:66, lowAlch:26, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:867} -{name:"Rune knife", itemDescription:"A finely balanced throwing knife.", shopValue:167, lowAlch:66, highAlch:100, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:868} -{name:"Black knife", itemDescription:"A finely balanced throwing knife.", shopValue:19, lowAlch:7, highAlch:11, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:869} -{name:"Bronze knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:1, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:870} -{name:"Iron knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:3, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:871} -{name:"Steel knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:10, lowAlch:27, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:872} -{name:"Mithril knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:27, lowAlch:10, highAlch:16, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:873} -{name:"Black knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:18, lowAlch:7, highAlch:11, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:874} -{name:"Adamant knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:66, lowAlch:26, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:875} -{name:"Rune knife (p)", itemDescription:"A finely balanced throwing knife.", shopValue:166, lowAlch:66, highAlch:100, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:876} -{name:"Bronze bolts", itemDescription:"Bronze crossbow bolts.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:877} -{name:"Bronze bolts (p)", itemDescription:"Bronze crossbow bolts.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:878} -{name:"Opal bolts", itemDescription:"Opal tipped bronze crossbow bolts", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:879} -{name:"Pearl bolts", itemDescription:"Pearl tipped Iron crossbow bolts.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:880} -{name:"Barbed bolts", itemDescription:"Great if you have a crossbow!", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:881} -{name:"Bronze arrow", itemDescription:"Arrows with bronze heads.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:882} -{name:"Bronze arrow (p)", itemDescription:"Arrows with bronze heads.", shopValue:1, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:883} -{name:"Iron arrow", itemDescription:"Arrows with iron heads.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:884} -{name:"Iron arrow (p)", itemDescription:"Arrows with iron heads.", shopValue:3, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:885} -{name:"Steel arrow", itemDescription:"Arrows with steel heads.", shopValue:46, lowAlch:18, highAlch:27, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:886} -{name:"Steel arrow (p)", itemDescription:"Arrows with steel heads.", shopValue:12, lowAlch:18, highAlch:27, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:887} -{name:"Mithril arrow", itemDescription:"Arrows with mithril heads.", shopValue:76, lowAlch:30, highAlch:45, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:888} -{name:"Mithril arrow (p)", itemDescription:"Arrows with mithril heads.", shopValue:32, lowAlch:30, highAlch:45, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:889} -{name:"Adamant arrow", itemDescription:"Arrows with adamantite heads.", shopValue:172, lowAlch:68, highAlch:103, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:890} -{name:"Adamant arrow (p)", itemDescription:"Arrows with adamantite heads.", shopValue:80, lowAlch:68, highAlch:103, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:891} -{name:"Rune arrow", itemDescription:"Arrows with rune heads.", shopValue:510, lowAlch:204, highAlch:306, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:892} -{name:"Rune arrow (p)", itemDescription:"Arrows with rune heads.", shopValue:400, lowAlch:204, highAlch:306, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:893} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:894} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:895} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:896} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:897} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:898} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:899} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:900} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:901} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:902} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:903} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:904} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:905} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:906} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:907} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:908} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:909} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:910} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:911} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:912} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:913} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:914} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:915} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:916} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:917} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:918} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:919} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:920} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:921} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:922} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:923} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:924} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:925} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:926} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:927} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:928} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:929} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:930} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:931} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:932} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:933} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:934} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:935} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:936} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:937} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:938} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:939} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:940} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:941} -{name:"Bronze fire arrows", itemDescription:" An easy to make, bronze-headed fire arrow.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:942} -{name:"Worm", itemDescription:"Some meaty worms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:943} -{name:"Worm", itemDescription:"Some meaty worms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:944} -{name:"Throwing rope", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:945} -{name:"Knife", itemDescription:"A dangerous looking knife.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:946} -{name:"Knife", itemDescription:"A dangerous looking knife.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:947} -{name:"Bear fur", itemDescription:"This would make warm clothing.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:948} -{name:"Bear fur", itemDescription:"This would make warm clothing.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:949} -{name:"Silk", itemDescription:"It's a sheet of silk.", shopValue:55, lowAlch:22, highAlch:33, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:950} -{name:"Silk", itemDescription:"It's a sheet of silk.", shopValue:55, lowAlch:22, highAlch:33, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:951} -{name:"Spade", itemDescription:"A slightly muddy spade. / Popular with farmers and treasure hunters.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:952} -{name:"Spade", itemDescription:"A slightly muddy spade. / Popular with farmers and treasure hunters.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:953} -{name:"Rope", itemDescription:"A coil of rope.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:954} -{name:"Rope", itemDescription:"A coil of rope.", shopValue:18, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:955} -{name:"Flier", itemDescription:"Get your axes from Bob's Axes.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:956} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:957} -{name:"Grey wolf fur", itemDescription:"This would make warm clothing.", shopValue:150, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:958} -{name:"Grey wolf fur", itemDescription:"This would make warm clothing.", shopValue:150, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:959} -{name:"Plank", itemDescription:"A plank of wood!", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:960} -{name:"Plank", itemDescription:"A plank of wood!", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:961} -{name:"Christmas cracker", itemDescription:"I need to pull this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:962} -{name:"Christmas cracker", itemDescription:"I need to pull this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:963} -{name:"Skull", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:964} -{name:"Skull", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:965} -{name:"Tile", itemDescription:"A fraction of a roof.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:966} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:967} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:968} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:969} -{name:"Papyrus", itemDescription:"Used for making notes.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:970} -{name:"Papyrus", itemDescription:"Used for making notes.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:971} -{name:"Papyrus", itemDescription:"Used for making notes.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:972} -{name:"Charcoal", itemDescription:"A lump of charcoal.", shopValue:45, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:973} -{name:"Charcoal", itemDescription:"A lump of charcoal.", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:974} -{name:"Machete", itemDescription:"A jungle specific slashing device.", shopValue:52, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 6.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:975} -{name:"Machete", itemDescription:"A jungle specific slashing device.", shopValue:52, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 6.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:976} -{name:"Cooking pot", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:977} -{name:"Cooking pot", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:978} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:979} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:980} -{name:"Disk of returning", itemDescription:"Used to get out of Thordur's blackhole.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:981} -{name:"Disk of returning", itemDescription:"Used to get out of Thordur's blackhole.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:982} -{name:"Brass key", itemDescription:"A key found on the floor of Edgeville Dungeon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:983} -{name:"Brass key", itemDescription:"A key found on the floor of Edgeville Dungeon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:984} -{name:"Tooth half of a key", itemDescription:"The tooth end of the mysterious Crystal key. Can you find the other half?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:985} -{name:"Tooth half of a key", itemDescription:"The tooth end of the mysterious Crystal key. Can you find the other half?", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:986} -{name:"Loop half of a key", itemDescription:"The loop end of the mysterious Crystal key. Can you find the other half?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:987} -{name:"Loop half of a key", itemDescription:"The loop end of the mysterious Crystal key. Can you find the other half?", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:988} -{name:"Crystal key", itemDescription:"A mysterious key for a mysterious chest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:989} -{name:"Crystal key", itemDescription:"A mysterious key for a mysterious chest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:990} -{name:"Muddy key", itemDescription:"It looks like the key to a chest", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:991} -{name:"Muddy key", itemDescription:"It looks like the key to a chest", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:992} -{name:"Sinister key", itemDescription:"You get a sense of dread from this key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:993} -{name:"Sinister key", itemDescription:"You get a sense of dread from this key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:994} -{name:"Coins", itemDescription:" Lovely money!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:995} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:996} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:997} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:998} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:999} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1000} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1001} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1002} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1003} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1004} -{name:"White apron", itemDescription:"A mostly clean apron.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1005} -{name:"White apron", itemDescription:"A mostly clean apron.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1006} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1007} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1008} -{name:"Brass necklace", itemDescription:"I'd prefer a gold one.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1009} -{name:"Brass necklace", itemDescription:"I'd prefer a gold one.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1010} -{name:"Blue skirt", itemDescription:"Leg covering favored by women and wizards.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1011} -{name:"Blue skirt", itemDescription:"Leg covering favored by women and wizards.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1012} -{name:"Pink skirt", itemDescription:"A ladies skirt.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1013} -{name:"Pink skirt", itemDescription:"A ladies skirt.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1014} -{name:"Black skirt", itemDescription:"Clothing favoured by women and dark wizards.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1015} -{name:"Black skirt", itemDescription:"Clothing favoured by women and dark wizards.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1016} -{name:"Wizard hat", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1017} -{name:"Wizard hat", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1018} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1019} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1020} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1021} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1022} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1023} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1024} -{name:"Eye patch", itemDescription:"A worthless piece of black cloth on a string.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1025} -{name:"Eye patch", itemDescription:"A worthless piece of black cloth on a string.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1026} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1027} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1028} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1029} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1030} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1031} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1032} -{name:"Zamorak robe", itemDescription:"", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1033} -{name:"Zamorak robe", itemDescription:"", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1034} -{name:"Zamorak robe", itemDescription:"", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1035} -{name:"Zamorak robe", itemDescription:"", shopValue:40, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1036} -{name:"Bunny ears", itemDescription:"A rabbit-like adornment.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1037} -{name:"Red partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1038} -{name:"Red partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1039} -{name:"Yellow partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1040} -{name:"Yellow partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1041} -{name:"Blue partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1042} -{name:"Blue partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1043} -{name:"Green partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1044} -{name:"Green partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1045} -{name:"Purple partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1046} -{name:"Purple partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1047} -{name:"White partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1048} -{name:"White partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1049} -{name:"Santa hat", itemDescription:"It's a Santa hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1050} -{name:"Santa hat", itemDescription:"It's a Santa hat.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1051} -{name:"Cape of legends", itemDescription:"The cape worn by members of the Legends Guild.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1052} -{name:"Green h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1053} -{name:"Green h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1054} -{name:"Blue h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1055} -{name:"Blue h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1056} -{name:"Red h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1057} -{name:"Red h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1058} -{name:"Leather gloves", itemDescription:"These will keep my hands warm!", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1059} -{name:"Leather gloves", itemDescription:"These will keep my hands warm!", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1060} -{name:"Leather boots", itemDescription:"Comfortable leather boots.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1061} -{name:"Leather boots", itemDescription:"Comfortable leather boots.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1062} -{name:"Leather vambraces", itemDescription:"Better than no armour!", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1063} -{name:"Leather vambraces", itemDescription:"Better than no armour!", shopValue:18, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1064} -{name:"Green d'hide vambraces", itemDescription:"Made from 100% real dragonhide.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1065} -{name:"Green d'hide vambraces", itemDescription:"Made from 100% real dragonhide.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1066} -{name:"Iron platelegs", itemDescription:"These look pretty heavy.", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 11.0, 10.0, 10.0, -4.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1067} -{name:"Iron platelegs", itemDescription:"These look pretty heavy.", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 11.0, 10.0, 10.0, -4.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1068} -{name:"Steel platelegs", itemDescription:"These look pretty heavy.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 17.0, 16.0, 15.0, -4.0, 16.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1069} -{name:"Steel platelegs", itemDescription:"These look pretty heavy.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 17.0, 16.0, 15.0, -4.0, 16.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1070} -{name:"Mithril platelegs", itemDescription:"These look pretty heavy.", shopValue:2600, lowAlch:1040, highAlch:1560, isStackable:false, isNoteable:false, weight:77.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1071} -{name:"Mithril platelegs", itemDescription:"These look pretty heavy.", shopValue:2600, lowAlch:1040, highAlch:1560, isStackable:true, isNoteable:true, weight:77.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1072} -{name:"Adamant platelegs", itemDescription:"These look pretty heavy.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1073} -{name:"Adamant platelegs", itemDescription:"These look pretty heavy.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1074} -{name:"Bronze platelegs", itemDescription:"These look pretty heavy.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 8.0, 7.0, 6.0, -4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1075} -{name:"Bronze platelegs", itemDescription:"These look pretty heavy.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 8.0, 7.0, 6.0, -4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1076} -{name:"Black platelegs", itemDescription:"These look pretty heavy", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1077} -{name:"Black platelegs", itemDescription:"These look pretty heavy", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1078} -{name:"Rune platelegs", itemDescription:"These look pretty heavy.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1079} -{name:"Rune platelegs", itemDescription:"These look pretty heavy.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1080} -{name:"Iron plateskirt", itemDescription:"Designer leg protection.", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 11.0, 10.0, 10.0, -4.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1081} -{name:"Iron plateskirt", itemDescription:"Designer leg protection.", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 11.0, 10.0, 10.0, -4.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1082} -{name:"Steel plateskirt", itemDescription:"Designer leg protection.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 17.0, 16.0, 15.0, -4.0, 16.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1083} -{name:"Steel plateskirt", itemDescription:"Designer leg protection.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 17.0, 16.0, 15.0, -4.0, 16.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1084} -{name:"Mithril plateskirt", itemDescription:"Designer leg protection.", shopValue:2600, lowAlch:1040, highAlch:1560, isStackable:false, isNoteable:false, weight:72.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1085} -{name:"Mithril plateskirt", itemDescription:"Designer leg protection.", shopValue:2600, lowAlch:1040, highAlch:1560, isStackable:true, isNoteable:true, weight:72.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1086} -{name:"Bronze plateskirt", itemDescription:"Designer leg protection.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 8.0, 7.0, 6.0, -4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1087} -{name:"Bronze plateskirt", itemDescription:"Designer leg protection.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 8.0, 7.0, 6.0, -4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1088} -{name:"Black plateskirt", itemDescription:"Designer leg protection.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1089} -{name:"Black plateskirt", itemDescription:"Designer leg protection.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1090} -{name:"Adamant plateskirt", itemDescription:"Designer leg protection.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1091} -{name:"Adamant plateskirt", itemDescription:"Designer leg protection.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1092} -{name:"Rune plateskirt", itemDescription:"Designer leg protection.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1093} -{name:"Rune plateskirt", itemDescription:"Designer leg protection.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1094} -{name:"Leather chaps", itemDescription:"Better than no armour!", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1095} -{name:"Leather chaps", itemDescription:"Better than no armour!", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1096} -{name:"Studded chaps", itemDescription:"Those studs should provide a bit more protection.", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 15.0, 16.0, 17.0, 6.0, 16.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1097} -{name:"Studded chaps", itemDescription:"Those studs should provide a bit more protection.", shopValue:750, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 15.0, 16.0, 17.0, 6.0, 16.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1098} -{name:"Green d'hide chaps", itemDescription:"100% real dragonhide.", shopValue:3900, lowAlch:1560, highAlch:2340, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 15.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1099} -{name:"Green d'hide chaps", itemDescription:"100% real dragonhide.", shopValue:3900, lowAlch:1560, highAlch:2340, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 15.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1100} -{name:"Iron chainbody", itemDescription:"A series of connected metal rings.", shopValue:210, lowAlch:84, highAlch:126, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 10.0, 15.0, 19.0, -3.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1101} -{name:"Iron chainbody", itemDescription:"A series of connected metal rings.", shopValue:210, lowAlch:84, highAlch:126, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 10.0, 15.0, 19.0, -3.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1102} -{name:"Bronze chainbody", itemDescription:"A series of connected metal rings", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 7.0, 11.0, 13.0, -3.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1103} -{name:"Bronze chainbody", itemDescription:"A series of connected metal rings", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 7.0, 11.0, 13.0, -3.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1104} -{name:"Steel chainbody", itemDescription:"A series of connected metal rings.", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 17.0, 25.0, 30.0, -3.0, 19.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1105} -{name:"Steel chainbody", itemDescription:"A series of connected metal rings.", shopValue:750, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 17.0, 25.0, 30.0, -3.0, 19.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1106} -{name:"Black chainbody", itemDescription:"A series of connected metal rings.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 22.0, 32.0, 39.0, -3.0, 24.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1107} -{name:"Black chainbody", itemDescription:"A series of connected metal rings.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 22.0, 32.0, 39.0, -3.0, 24.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1108} -{name:"Mithril chainbody", itemDescription:"A series of connected metal rings.", shopValue:1950, lowAlch:780, highAlch:1170, isStackable:false, isNoteable:false, weight:58.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 25.0, 35.0, 42.0, -3.0, 27.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1109} -{name:"Mithril chainbody", itemDescription:"A series of connected metal rings.", shopValue:1950, lowAlch:780, highAlch:1170, isStackable:true, isNoteable:true, weight:58.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 25.0, 35.0, 42.0, -3.0, 27.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1110} -{name:"Adamant chainbody", itemDescription:"A series of connected metal rings.", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 36.0, 50.0, 61.0, -3.0, 38.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1111} -{name:"Adamant chainbody", itemDescription:"A series of connected metal rings.", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 36.0, 50.0, 61.0, -3.0, 38.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1112} -{name:"Rune chainbody", itemDescription:"A series of connected metal rings.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 63.0, 72.0, 78.0, -3.0, 65.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1113} -{name:"Rune chainbody", itemDescription:"A series of connected metal rings.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 63.0, 72.0, 78.0, -3.0, 65.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1114} -{name:"Iron platebody", itemDescription:"Provides excellent protection.", shopValue:560, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:995.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 21.0, 20.0, 12.0, -6.0, 20.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1115} -{name:"Iron platebody", itemDescription:"Provides excellent protection.", shopValue:560, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:995.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 21.0, 20.0, 12.0, -6.0, 20.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1116} -{name:"Bronze platebody", itemDescription:"Provides excellent protection.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:95.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 15.0, 14.0, 9.0, -6.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1117} -{name:"Bronze platebody", itemDescription:"Provides excellent protection.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:95.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 15.0, 14.0, 9.0, -6.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1118} -{name:"Steel platebody", itemDescription:"Provides excellent protection.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 32.0, 31.0, 24.0, -6.0, 31.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1119} -{name:"Steel platebody", itemDescription:"Provides excellent protection.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 32.0, 31.0, 24.0, -6.0, 31.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1120} -{name:"Mithril platebody", itemDescription:"Provides excellent protection!", shopValue:5200, lowAlch:2080, highAlch:3120, isStackable:false, isNoteable:false, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 46.0, 44.0, 38.0, -6.0, 44.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1121} -{name:"Mithril platebody", itemDescription:"Provides excellent protection!", shopValue:5200, lowAlch:2080, highAlch:3120, isStackable:true, isNoteable:true, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 46.0, 44.0, 38.0, -6.0, 44.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1122} -{name:"Adamant platebody", itemDescription:"Provides excellent protection.", shopValue:16640, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1123} -{name:"Adamant platebody", itemDescription:"Provides excellent protection.", shopValue:16640, lowAlch:6656, highAlch:9984, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1124} -{name:"Black platebody", itemDescription:"Provides Excellent protection.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1125} -{name:"Black platebody", itemDescription:"Provides Excellent protection.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1126} -{name:"Rune platebody", itemDescription:"Provides excellent protection.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1127} -{name:"Rune platebody", itemDescription:"Provides excellent protection.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1128} -{name:"Leather body", itemDescription:"Better than no armour!", shopValue:21, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -2.0, 2.0, 8.0, 9.0, 10.0, 4.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1129} -{name:"Leather body", itemDescription:"Better than no armour!", shopValue:21, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -2.0, 2.0, 8.0, 9.0, 10.0, 4.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1130} -{name:"Hardleather body", itemDescription:"Harder than normal leather.", shopValue:170, lowAlch:68, highAlch:102, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 12.0, 15.0, 18.0, 6.0, 15.0, 12.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1131} -{name:"Hardleather body", itemDescription:"Harder than normal leather.", shopValue:170, lowAlch:68, highAlch:102, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 12.0, 15.0, 18.0, 6.0, 15.0, 12.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1132} -{name:"Studded body", itemDescription:"These studs should provide a bit more protection.", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1133} -{name:"Studded body", itemDescription:"These studs should provide a bit more protection.", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1134} -{name:"Green d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:7800, lowAlch:3120, highAlch:4680, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -20.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 40.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1135} -{name:"Green d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:7800, lowAlch:3120, highAlch:4680, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -20.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 40.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1136} -{name:"Iron med helm", itemDescription:"A medium sized helmet.", shopValue:84, lowAlch:33, highAlch:50, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1137} -{name:"Iron med helm", itemDescription:"A medium sized helmet.", shopValue:84, lowAlch:33, highAlch:50, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1138} -{name:"Bronze med helm", itemDescription:"A medium sized helmet.", shopValue:24, lowAlch:9, highAlch:14, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 3.0, 4.0, 2.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1139} -{name:"Bronze med helm", itemDescription:"A medium sized helmet.", shopValue:24, lowAlch:9, highAlch:14, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 3.0, 4.0, 2.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1140} -{name:"Steel med helm", itemDescription:"A medium sized helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1141} -{name:"Steel med helm", itemDescription:"A medium sized helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1142} -{name:"Mithril med helm", itemDescription:"A medium sized helmet.", shopValue:780, lowAlch:312, highAlch:468, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 9.0, -1.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1143} -{name:"Mithril med helm", itemDescription:"A medium sized helmet.", shopValue:780, lowAlch:312, highAlch:468, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 9.0, -1.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1144} -{name:"Adamant med helm", itemDescription:"A medium sized helmet.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 14.0, 15.0, 13.0, -1.0, 14.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1145} -{name:"Adamant med helm", itemDescription:"A medium sized helmet.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 14.0, 15.0, 13.0, -1.0, 14.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1146} -{name:"Rune med helm", itemDescription:"A medium sized helmet.", shopValue:19200, lowAlch:7680, highAlch:11520, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 22.0, 23.0, 21.0, -1.0, 22.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1147} -{name:"Rune med helm", itemDescription:"A medium sized helmet.", shopValue:19200, lowAlch:7680, highAlch:11520, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 22.0, 23.0, 21.0, -1.0, 22.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1148} -{name:"Dragon med helm", itemDescription:"Makes the wearer pretty intimidating.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1149} -{name:"Dragon med helm", itemDescription:"Makes the wearer pretty intimidating.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1150} -{name:"Black med helm", itemDescription:"A medium sized helmet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1151} -{name:"Black med helm", itemDescription:"A medium sized helmet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1152} -{name:"Iron full helm", itemDescription:"A full face helmet.", shopValue:154, lowAlch:61, highAlch:92, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 6.0, 7.0, 5.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1153} -{name:"Iron full helm", itemDescription:"A full face helmet.", shopValue:154, lowAlch:61, highAlch:92, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 6.0, 7.0, 5.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1154} -{name:"Bronze full helm", itemDescription:"A full face helmet.", shopValue:44, lowAlch:17, highAlch:26, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1155} -{name:"Bronze full helm", itemDescription:"A full face helmet.", shopValue:44, lowAlch:17, highAlch:26, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1156} -{name:"Steel full helm", itemDescription:"A full face helmet.", shopValue:550, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1157} -{name:"Steel full helm", itemDescription:"A full face helmet.", shopValue:550, lowAlch:220, highAlch:330, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1158} -{name:"Mithril full helm", itemDescription:"A full face helmet.", shopValue:1430, lowAlch:572, highAlch:858, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 13.0, 14.0, 11.0, -1.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1159} -{name:"Mithril full helm", itemDescription:"A full face helmet.", shopValue:1430, lowAlch:572, highAlch:858, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 13.0, 14.0, 11.0, -1.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1160} -{name:"Adamant full helm", itemDescription:"A full face helmet.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1161} -{name:"Adamant full helm", itemDescription:"A full face helmet.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1162} -{name:"Rune full helm", itemDescription:"A full face helmet.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1163} -{name:"Rune full helm", itemDescription:"A full face helmet.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1164} -{name:"Black full helm", itemDescription:"A full face helmet.", shopValue:1372, lowAlch:548, highAlch:823, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1165} -{name:"Black full helm", itemDescription:"A full face helmet.", shopValue:1372, lowAlch:548, highAlch:823, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1166} -{name:"Leather cowl", itemDescription:"Better than no armour!", shopValue:24, lowAlch:9, highAlch:14, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1167} -{name:"Leather cowl", itemDescription:"Better than no armour!", shopValue:24, lowAlch:9, highAlch:14, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1168} -{name:"Coif", itemDescription:"Light weight head protection.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1169} -{name:"Coif", itemDescription:"Light weight head protection.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1170} -{name:"Wooden shield", itemDescription:"A solid wooden shield.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1171} -{name:"Wooden shield", itemDescription:"A solid wooden shield.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1172} -{name:"Bronze sq shield", itemDescription:"A medium square shield.", shopValue:48, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 5.0, 6.0, 4.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1173} -{name:"Bronze sq shield", itemDescription:"A medium square shield.", shopValue:48, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 5.0, 6.0, 4.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1174} -{name:"Iron sq shield", itemDescription:"A medium square shield.", shopValue:168, lowAlch:67, highAlch:100, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 8.0, 9.0, 7.0, 0.0, 8.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1175} -{name:"Iron sq shield", itemDescription:"A medium square shield.", shopValue:168, lowAlch:67, highAlch:100, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 8.0, 9.0, 7.0, 0.0, 8.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1176} -{name:"Steel sq shield", itemDescription:"A medium square shield.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 11.0, 0.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1177} -{name:"Steel sq shield", itemDescription:"A medium square shield.", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 11.0, 0.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1178} -{name:"Black sq shield", itemDescription:"A medium square shield.", shopValue:1152, lowAlch:460, highAlch:691, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 15.0, 16.0, 14.0, 0.0, 15.0, 9.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1179} -{name:"Black sq shield", itemDescription:"A medium square shield.", shopValue:1152, lowAlch:460, highAlch:691, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 15.0, 16.0, 14.0, 0.0, 15.0, 9.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1180} -{name:"Mithril sq shield", itemDescription:"A medium square shield.", shopValue:1560, lowAlch:624, highAlch:936, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 17.0, 19.0, 15.0, 0.0, 17.0, 18.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1181} -{name:"Mithril sq shield", itemDescription:"A medium square shield.", shopValue:1560, lowAlch:624, highAlch:936, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 17.0, 19.0, 15.0, 0.0, 17.0, 18.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1182} -{name:"Adamant sq shield", itemDescription:"A medium square shield.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 24.0, 26.0, 22.0, 0.0, 24.0, 25.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1183} -{name:"Adamant sq shield", itemDescription:"A medium square shield.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 24.0, 26.0, 22.0, 0.0, 24.0, 25.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1184} -{name:"Rune sq shield", itemDescription:"A medium square shield.", shopValue:38400, lowAlch:15360, highAlch:23040, isStackable:false, isNoteable:false, weight:364.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 38.0, 40.0, 36.0, 0.0, 38.0, 35.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1185} -{name:"Rune sq shield", itemDescription:"A medium square shield.", shopValue:38400, lowAlch:15360, highAlch:23040, isStackable:true, isNoteable:true, weight:364.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 38.0, 40.0, 36.0, 0.0, 38.0, 35.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1186} -{name:"Dragon sq shield", itemDescription:"An ancient and powerful looking Dragon Square shield.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1187} -{name:"Dragon sq shield", itemDescription:"An ancient and powerful looking Dragon Square shield.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1188} -{name:"Bronze kiteshield", itemDescription:"A large metal shield.", shopValue:68, lowAlch:27, highAlch:40, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 5.0, 7.0, 6.0, -1.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1189} -{name:"Bronze kiteshield", itemDescription:"A large metal shield.", shopValue:68, lowAlch:27, highAlch:40, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 5.0, 7.0, 6.0, -1.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1190} -{name:"Iron kiteshield", itemDescription:"A large metal shield", shopValue:238, lowAlch:95, highAlch:142, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 8.0, 10.0, 9.0, -1.0, 9.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1191} -{name:"Iron kiteshield", itemDescription:"A large metal shield", shopValue:238, lowAlch:95, highAlch:142, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 8.0, 10.0, 9.0, -1.0, 9.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1192} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1193} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1194} -{name:"Black kiteshield", itemDescription:"A large metal shield.", shopValue:2121, lowAlch:848, highAlch:1272, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1195} -{name:"Black kiteshield", itemDescription:"A large metal shield.", shopValue:2121, lowAlch:848, highAlch:1272, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1196} -{name:"Mithril kiteshield", itemDescription:"A large metal shield.", shopValue:2210, lowAlch:884, highAlch:1326, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 18.0, 22.0, 20.0, -1.0, 20.0, 20.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1197} -{name:"Mithril kiteshield", itemDescription:"A large metal shield.", shopValue:2210, lowAlch:884, highAlch:1326, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 18.0, 22.0, 20.0, -1.0, 20.0, 20.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1198} -{name:"Adamant kiteshield", itemDescription:"A large metal shield.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:58.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1199} -{name:"Adamant kiteshield", itemDescription:"A large metal shield.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:58.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1200} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1201} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1202} -{name:"Iron dagger", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1203} -{name:"Iron dagger", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1204} -{name:"Bronze dagger", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1205} -{name:"Bronze dagger", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1206} -{name:"Steel dagger", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1207} -{name:"Steel dagger", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1208} -{name:"Mithril dagger", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1209} -{name:"Mithril dagger", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1210} -{name:"Adamant dagger", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1211} -{name:"Adamant dagger", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1212} -{name:"Rune dagger", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1213} -{name:"Rune dagger", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1214} -{name:"Dragon dagger", itemDescription:"A powerful dagger.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1215} -{name:"Dragon dagger", itemDescription:"A powerful dagger.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1216} -{name:"Black dagger", itemDescription:"A vicious black dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1217} -{name:"Black dagger", itemDescription:"A vicious black dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1218} -{name:"Iron dagger (p)", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1219} -{name:"Iron dagger (p)", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1220} -{name:"Bronze dagger (p)", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1221} -{name:"Bronze dagger (p)", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1222} -{name:"Steel dagger (p)", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1223} -{name:"Steel dagger (p)", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1224} -{name:"Mithril dagger (p)", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1225} -{name:"Mithril dagger (p)", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1226} -{name:"Adamant dagger (p)", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1227} -{name:"Adamant dagger (p)", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1228} -{name:"Rune dagger (p)", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1229} -{name:"Rune dagger (p)", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1230} -{name:"Dragon dagger (p)", itemDescription:"A powerful dagger.", shopValue:24000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1231} -{name:"Dragon dagger (p)", itemDescription:"A powerful dagger.", shopValue:24000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1232} -{name:"Black dagger (p)", itemDescription:"A vicious black dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1233} -{name:"Black dagger (p)", itemDescription:"A vicious black dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1234} -{name:"Poisoned dagger (p)", itemDescription:"", shopValue:565, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1235} -{name:"Poisoned dagger (p)", itemDescription:"", shopValue:565, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1236} -{name:"Bronze spear", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1237} -{name:"Bronze spear", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1238} -{name:"Iron spear", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1239} -{name:"Iron spear", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1240} -{name:"Steel spear", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1241} -{name:"Steel spear", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1242} -{name:"Mithril spear", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1243} -{name:"Mithril spear", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1244} -{name:"Adamant spear", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1245} -{name:"Adamant spear", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1246} -{name:"Rune spear", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1247} -{name:"Rune spear", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1248} -{name:"Dragon spear", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1249} -{name:"Dragon spear", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:true, isNoteable:true, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1250} -{name:"Bronze spear (p)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1251} -{name:"Bronze spear (p)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1252} -{name:"Iron spear (p)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1253} -{name:"Iron spear (p)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1254} -{name:"Steel spear (p)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1255} -{name:"Steel spear (p)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1256} -{name:"Mithril spear (p)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1257} -{name:"Mithril spear (p)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1258} -{name:"Adamant spear (p)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1259} -{name:"Adamant spear (p)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1260} -{name:"Rune spear (p)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1261} -{name:"Rune spear (p)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1262} -{name:"Dragon spear (p)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1263} -{name:"Dragon spear (p)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:true, isNoteable:true, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1264} -{name:"Bronze pickaxe", itemDescription:"Used for mining.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:225.0, bonuses:[4.0, -2.0, 2.0, -1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1265} -{name:"Bronze pickaxe", itemDescription:"Used for mining.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:225.0, bonuses:[4.0, -2.0, 2.0, -1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1266} -{name:"Iron pickaxe", itemDescription:"Used for mining.", shopValue:140, lowAlch:56, highAlch:84, isStackable:false, isNoteable:false, weight:225.0, bonuses:[5.0, -2.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1267} -{name:"Iron pickaxe", itemDescription:"Used for mining.", shopValue:140, lowAlch:56, highAlch:84, isStackable:true, isNoteable:true, weight:225.0, bonuses:[5.0, -2.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1268} -{name:"Steel pickaxe", itemDescription:"Used for mining.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:225.0, bonuses:[8.0, -2.0, 6.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1269} -{name:"Steel pickaxe", itemDescription:"Used for mining.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:225.0, bonuses:[8.0, -2.0, 6.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1270} -{name:"Adamant pickaxe", itemDescription:"Used for mining.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[17.0, -2.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1271} -{name:"Adamant pickaxe", itemDescription:"Used for mining.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:27.0, bonuses:[17.0, -2.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1272} -{name:"Mithril pickaxe", itemDescription:"Used for mining.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:false, isNoteable:false, weight:18.0, bonuses:[12.0, -2.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1273} -{name:"Mithril pickaxe", itemDescription:"Used for mining.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:true, isNoteable:true, weight:18.0, bonuses:[12.0, -2.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1274} -{name:"Rune pickaxe", itemDescription:"Used for mining.", shopValue:32000, lowAlch:12800, highAlch:19200, isStackable:false, isNoteable:false, weight:22.0, bonuses:[26.0, -2.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1275} -{name:"Rune pickaxe", itemDescription:"Used for mining.", shopValue:32000, lowAlch:12800, highAlch:19200, isStackable:true, isNoteable:true, weight:22.0, bonuses:[26.0, -2.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1276} -{name:"Bronze sword", itemDescription:"A razor sharp sword.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:1.0, bonuses:[4.0, 3.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1277} -{name:"Bronze sword", itemDescription:"A razor sharp sword.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:1.0, bonuses:[4.0, 3.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1278} -{name:"Iron sword", itemDescription:"A razor sharp sword.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 4.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1279} -{name:"Iron sword", itemDescription:"A razor sharp sword.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:18.0, bonuses:[6.0, 4.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1280} -{name:"Steel sword", itemDescription:"A razor sharp sword.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:1.0, bonuses:[11.0, 8.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1281} -{name:"Steel sword", itemDescription:"A razor sharp sword.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:1.0, bonuses:[11.0, 8.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1282} -{name:"Black sword", itemDescription:"A razor sharp sword.", shopValue:624, lowAlch:249, highAlch:374, isStackable:false, isNoteable:false, weight:1.0, bonuses:[14.0, 10.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1283} -{name:"Black sword", itemDescription:"A razor sharp sword.", shopValue:624, lowAlch:249, highAlch:374, isStackable:true, isNoteable:true, weight:1.0, bonuses:[14.0, 10.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1284} -{name:"Mithril sword", itemDescription:"A razor sharp sword.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:15.0, bonuses:[16.0, 11.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1285} -{name:"Mithril sword", itemDescription:"A razor sharp sword.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:15.0, bonuses:[16.0, 11.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1286} -{name:"Adamant sword", itemDescription:"A razor sharp sword.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:1.0, bonuses:[23.0, 18.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1287} -{name:"Adamant sword", itemDescription:"A razor sharp sword.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:1.0, bonuses:[23.0, 18.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1288} -{name:"Rune sword", itemDescription:"A razor sharp sword.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 26.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1289} -{name:"Rune sword", itemDescription:"A razor sharp sword.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:18.0, bonuses:[38.0, 26.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1290} -{name:"Bronze longsword", itemDescription:"A razor sharp longsword.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:18.0, bonuses:[4.0, 5.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1291} -{name:"Bronze longsword", itemDescription:"A razor sharp longsword.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:18.0, bonuses:[4.0, 5.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1292} -{name:"Iron longsword", itemDescription:"A razor sharp longsword.", shopValue:140, lowAlch:56, highAlch:84, isStackable:false, isNoteable:false, weight:2.0, bonuses:[6.0, 8.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1293} -{name:"Iron longsword", itemDescription:"A razor sharp longsword.", shopValue:140, lowAlch:56, highAlch:84, isStackable:true, isNoteable:true, weight:2.0, bonuses:[6.0, 8.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1294} -{name:"Steel longsword", itemDescription:"A razor sharp longsword.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1295} -{name:"Steel longsword", itemDescription:"A razor sharp longsword.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:2.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1296} -{name:"Black longsword", itemDescription:"A razor sharp longsword.", shopValue:960, lowAlch:384, highAlch:576, isStackable:false, isNoteable:false, weight:18.0, bonuses:[13.0, 18.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1297} -{name:"Black longsword", itemDescription:"A razor sharp longsword.", shopValue:960, lowAlch:384, highAlch:576, isStackable:true, isNoteable:true, weight:18.0, bonuses:[13.0, 18.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1298} -{name:"Mithril longsword", itemDescription:"A razor sharp longsword.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:false, isNoteable:false, weight:15.0, bonuses:[15.0, 20.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1299} -{name:"Mithril longsword", itemDescription:"A razor sharp longsword.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:true, isNoteable:true, weight:15.0, bonuses:[15.0, 20.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1300} -{name:"Adamant longsword", itemDescription:"A razor sharp longsword.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:2.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1301} -{name:"Adamant longsword", itemDescription:"A razor sharp longsword.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:2.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1302} -{name:"Rune longsword", itemDescription:"A razor sharp longsword", shopValue:32000, lowAlch:12800, highAlch:19200, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 47.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1303} -{name:"Rune longsword", itemDescription:"A razor sharp longsword", shopValue:32000, lowAlch:12800, highAlch:19200, isStackable:true, isNoteable:true, weight:18.0, bonuses:[38.0, 47.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1304} -{name:"Dragon longsword", itemDescription:"A very powerful sword.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[58.0, 69.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1305} -{name:"Dragon longsword", itemDescription:"A very powerful sword.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[58.0, 69.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1306} -{name:"Bronze 2h sword", itemDescription:"A two-handed sword.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 9.0, 8.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1307} -{name:"Bronze 2h sword", itemDescription:"A two-handed sword.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 9.0, 8.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1308} -{name:"Iron 2h sword", itemDescription:"A two handed sword.", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 13.0, 10.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1309} -{name:"Iron 2h sword", itemDescription:"A two handed sword.", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 13.0, 10.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1310} -{name:"Steel 2h sword", itemDescription:"A two handed sword.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, 21.0, 16.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1311} -{name:"Steel 2h sword", itemDescription:"A two handed sword.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:3.0, bonuses:[-4.0, 21.0, 16.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1312} -{name:"Black 2h sword", itemDescription:"A two-handed sword.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 27.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1313} -{name:"Black 2h sword", itemDescription:"A two-handed sword.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 27.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1314} -{name:"Mithril 2h sword", itemDescription:"A two-handed sword.", shopValue:2600, lowAlch:1040, highAlch:1560, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, 30.0, 24.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1315} -{name:"Mithril 2h sword", itemDescription:"A two-handed sword.", shopValue:2600, lowAlch:1040, highAlch:1560, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, 30.0, 24.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1316} -{name:"Adamant 2h sword", itemDescription:"A two-handed sword.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-4.0, 43.0, 30.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1317} -{name:"Adamant 2h sword", itemDescription:"A two-handed sword.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-4.0, 43.0, 30.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1318} -{name:"Rune 2h sword", itemDescription:"A two handed sword.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 69.0, 50.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1319} -{name:"Rune 2h sword", itemDescription:"A two handed sword.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 69.0, 50.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1320} -{name:"Bronze scimitar", itemDescription:"A vicious, curved sword.", shopValue:32, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[1.0, 7.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1321} -{name:"Bronze scimitar", itemDescription:"A vicious, curved sword.", shopValue:32, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:1.0, bonuses:[1.0, 7.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1322} -{name:"Iron scimitar", itemDescription:"A vicious, curved sword.", shopValue:112, lowAlch:44, highAlch:67, isStackable:false, isNoteable:false, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1323} -{name:"Iron scimitar", itemDescription:"A vicious, curved sword.", shopValue:112, lowAlch:44, highAlch:67, isStackable:true, isNoteable:true, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1324} -{name:"Steel scimitar", itemDescription:"A vicious, curved sword.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1325} -{name:"Steel scimitar", itemDescription:"A vicious, curved sword.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1326} -{name:"Black scimitar", itemDescription:"A vicious, curved sword.", shopValue:768, lowAlch:307, highAlch:460, isStackable:false, isNoteable:false, weight:18.0, bonuses:[4.0, 19.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1327} -{name:"Black scimitar", itemDescription:"A vicious, curved sword.", shopValue:768, lowAlch:307, highAlch:460, isStackable:true, isNoteable:true, weight:18.0, bonuses:[4.0, 19.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1328} -{name:"Mithril scimitar", itemDescription:"A vicious, curved sword.", shopValue:1040, lowAlch:416, highAlch:624, isStackable:false, isNoteable:false, weight:15.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1329} -{name:"Mithril scimitar", itemDescription:"A vicious, curved sword.", shopValue:1040, lowAlch:416, highAlch:624, isStackable:true, isNoteable:true, weight:15.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1330} -{name:"Adamant scimitar", itemDescription:"A viciously curved sword", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:2.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1331} -{name:"Adamant scimitar", itemDescription:"A viciously curved sword", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:true, isNoteable:true, weight:2.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1332} -{name:"Rune scimitar", itemDescription:"A vicious, curved sword.", shopValue:25600, lowAlch:10240, highAlch:15360, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1333} -{name:"Rune scimitar", itemDescription:"A vicious, curved sword.", shopValue:25600, lowAlch:10240, highAlch:15360, isStackable:true, isNoteable:true, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1334} -{name:"Iron warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:224, lowAlch:89, highAlch:134, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 11.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1335} -{name:"Iron warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:224, lowAlch:89, highAlch:134, isStackable:true, isNoteable:true, weight:18.0, bonuses:[-4.0, -4.0, 11.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1336} -{name:"Bronze warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:61, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-4.0, -4.0, 10.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1337} -{name:"Bronze warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:61, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:1.0, bonuses:[-4.0, -4.0, 10.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1338} -{name:"Steel warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:832, lowAlch:256, highAlch:384, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-4.0, -4.0, 18.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1339} -{name:"Steel warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:832, lowAlch:256, highAlch:384, isStackable:true, isNoteable:true, weight:1.0, bonuses:[-4.0, -4.0, 18.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1340} -{name:"Black warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:1274, lowAlch:509, highAlch:764, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-4.0, -4.0, 22.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1341} -{name:"Black warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:1274, lowAlch:509, highAlch:764, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-4.0, -4.0, 22.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1342} -{name:"Mithril warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:2158, lowAlch:863, highAlch:1294, isStackable:false, isNoteable:false, weight:15.0, bonuses:[-4.0, -4.0, 25.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1343} -{name:"Mithril warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:2158, lowAlch:863, highAlch:1294, isStackable:true, isNoteable:true, weight:15.0, bonuses:[-4.0, -4.0, 25.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1344} -{name:"Adamant warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:5356, lowAlch:2142, highAlch:3213, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-4.0, -4.0, 33.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1345} -{name:"Adamant warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:5356, lowAlch:2142, highAlch:3213, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-4.0, -4.0, 33.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1346} -{name:"Rune warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:41500, lowAlch:16600, highAlch:24900, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 53.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1347} -{name:"Rune warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:41500, lowAlch:16600, highAlch:24900, isStackable:true, isNoteable:true, weight:18.0, bonuses:[-4.0, -4.0, 53.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1348} -{name:"Iron hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:56, lowAlch:22, highAlch:33, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 5.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1349} -{name:"Iron hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:56, lowAlch:22, highAlch:33, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-2.0, 5.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1350} -{name:"Bronze hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:135.0, bonuses:[-2.0, 4.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1351} -{name:"Bronze hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:135.0, bonuses:[-2.0, 4.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1352} -{name:"Steel hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 8.0, 6.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1353} -{name:"Steel hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-2.0, 8.0, 6.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1354} -{name:"Mithril hatchet", itemDescription:"A powerful hatchet.", shopValue:520, lowAlch:208, highAlch:312, isStackable:false, isNoteable:false, weight:11.0, bonuses:[-2.0, 12.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1355} -{name:"Mithril hatchet", itemDescription:"A powerful hatchet.", shopValue:520, lowAlch:208, highAlch:312, isStackable:true, isNoteable:true, weight:11.0, bonuses:[-2.0, 12.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1356} -{name:"Adamant hatchet", itemDescription:"A powerful hatchet.", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 17.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1357} -{name:"Adamant hatchet", itemDescription:"A powerful hatchet.", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, 17.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1358} -{name:"Rune hatchet", itemDescription:"A powerful hatchet.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 26.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1359} -{name:"Rune hatchet", itemDescription:"A powerful hatchet.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-2.0, 26.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1360} -{name:"Black hatchet", itemDescription:"A sinister looking hatchet.", shopValue:384, lowAlch:153, highAlch:230, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 10.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1361} -{name:"Black hatchet", itemDescription:"A sinister looking hatchet.", shopValue:384, lowAlch:153, highAlch:230, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, 10.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1362} -{name:"Iron battleaxe", itemDescription:"A vicious looking axe.", shopValue:182, lowAlch:72, highAlch:109, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 8.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1363} -{name:"Iron battleaxe", itemDescription:"A vicious looking axe.", shopValue:182, lowAlch:72, highAlch:109, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 8.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1364} -{name:"Steel battleaxe", itemDescription:"A vicious looking axe.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 16.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1365} -{name:"Steel battleaxe", itemDescription:"A vicious looking axe.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 16.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1366} -{name:"Black battleaxe", itemDescription:"A vicious looking axe.", shopValue:1248, lowAlch:499, highAlch:748, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 20.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1367} -{name:"Black battleaxe", itemDescription:"A vicious looking axe.", shopValue:1248, lowAlch:499, highAlch:748, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 20.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1368} -{name:"Mithril battleaxe", itemDescription:"A vicious looking axe.", shopValue:1690, lowAlch:676, highAlch:1014, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 22.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1369} -{name:"Mithril battleaxe", itemDescription:"A vicious looking axe.", shopValue:1690, lowAlch:676, highAlch:1014, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, 22.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1370} -{name:"Adamant battleaxe", itemDescription:"A vicious looking axe.", shopValue:4160, lowAlch:1664, highAlch:2496, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-2.0, 31.0, 26.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 41.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1371} -{name:"Adamant battleaxe", itemDescription:"A vicious looking axe.", shopValue:4160, lowAlch:1664, highAlch:2496, isStackable:true, isNoteable:true, weight:3.0, bonuses:[-2.0, 31.0, 26.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 41.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1372} -{name:"Rune battleaxe", itemDescription:"A vicious looking axe.", shopValue:41600, lowAlch:16640, highAlch:24960, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 48.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1373} -{name:"Rune battleaxe", itemDescription:"A vicious looking axe.", shopValue:41600, lowAlch:16640, highAlch:24960, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, 48.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1374} -{name:"Bronze battleaxe", itemDescription:"A vicious looking axe.", shopValue:52, lowAlch:20, highAlch:31, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1375} -{name:"Bronze battleaxe", itemDescription:"A vicious looking axe.", shopValue:52, lowAlch:20, highAlch:31, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1376} -{name:"Dragon battleaxe", itemDescription:"A vicious looking axe.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 70.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1377} -{name:"Dragon battleaxe", itemDescription:"A vicious looking axe.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 70.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1378} -{name:"Staff", itemDescription:"It's a slightly magical stick.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1379} -{name:"Staff", itemDescription:"It's a slightly magical stick.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1380} -{name:"Staff of air", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1381} -{name:"Staff of air", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1382} -{name:"Staff of water", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1383} -{name:"Staff of water", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1384} -{name:"Staff of earth", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[1.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1385} -{name:"Staff of earth", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[1.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1386} -{name:"Staff of fire", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[3.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1387} -{name:"Staff of fire", itemDescription:"A Magical staff.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[3.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1388} -{name:"Magic staff", itemDescription:"A Magical staff.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[2.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1389} -{name:"Magic staff", itemDescription:"A Magical staff.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:22.0, bonuses:[2.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1390} -{name:"Battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:225.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1391} -{name:"Battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:225.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1392} -{name:"Fire battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:false, isNoteable:false, weight:225.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1393} -{name:"Fire battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:true, isNoteable:true, weight:225.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1394} -{name:"Water battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1395} -{name:"Water battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1396} -{name:"Air battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:false, isNoteable:false, weight:225.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1397} -{name:"Air battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:true, isNoteable:true, weight:225.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1398} -{name:"Earth battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1399} -{name:"Earth battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:15500, lowAlch:6200, highAlch:9300, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1400} -{name:"Mystic fire staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1401} -{name:"Mystic fire staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1402} -{name:"Mystic water staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1403} -{name:"Mystic water staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1404} -{name:"Mystic air staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1405} -{name:"Mystic air staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1406} -{name:"Mystic earth staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1407} -{name:"Mystic earth staff", itemDescription:"It's a slightly magical stick.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1408} -{name:"Iban's staff", itemDescription:"An ancient staff, formerly the property of Iban.", shopValue:42500, lowAlch:17000, highAlch:25500, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1409} -{name:"Iban's staff", itemDescription:"An ancient staff, formerly the property of Iban.", shopValue:20, lowAlch:17000, highAlch:25500, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1410} -{name:"Farmer's fork", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1411} -{name:"Farmer's fork", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1412} -{name:"Halberd", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1413} -{name:"Halberd", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1414} -{name:"Warhammer", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1415} -{name:"Warhammer", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1416} -{name:"Javelin", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1417} -{name:"Javelin", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1418} -{name:"Scythe", itemDescription:"It's a Scythe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[3.0, 8.0, 3.0, 1.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1419} -{name:"Iron mace", itemDescription:"A spiky mace.", shopValue:63, lowAlch:25, highAlch:37, isStackable:false, isNoteable:false, weight:18.0, bonuses:[4.0, -2.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1420} -{name:"Iron mace", itemDescription:"A spiky mace.", shopValue:63, lowAlch:25, highAlch:37, isStackable:true, isNoteable:true, weight:18.0, bonuses:[4.0, -2.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1421} -{name:"Bronze mace", itemDescription:"A spiky mace.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:179.0, bonuses:[1.0, -2.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1422} -{name:"Bronze mace", itemDescription:"A spiky mace.", shopValue:18, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:179.0, bonuses:[1.0, -2.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1423} -{name:"Steel mace", itemDescription:"A spiky mace.", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:179.0, bonuses:[7.0, -2.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1424} -{name:"Steel mace", itemDescription:"A spiky mace.", shopValue:225, lowAlch:90, highAlch:135, isStackable:true, isNoteable:true, weight:179.0, bonuses:[7.0, -2.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1425} -{name:"Black mace", itemDescription:"A spiky mace.", shopValue:432, lowAlch:172, highAlch:258, isStackable:false, isNoteable:false, weight:179.0, bonuses:[8.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1426} -{name:"Black mace", itemDescription:"A spiky mace.", shopValue:432, lowAlch:172, highAlch:258, isStackable:true, isNoteable:true, weight:179.0, bonuses:[8.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1427} -{name:"Mithril mace", itemDescription:"A spiky mace.", shopValue:585, lowAlch:234, highAlch:351, isStackable:false, isNoteable:false, weight:15.0, bonuses:[11.0, -2.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1428} -{name:"Mithril mace", itemDescription:"A spiky mace.", shopValue:585, lowAlch:234, highAlch:351, isStackable:true, isNoteable:true, weight:15.0, bonuses:[11.0, -2.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1429} -{name:"Adamant mace", itemDescription:"A spiky mace.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:false, isNoteable:false, weight:2.0, bonuses:[13.0, -2.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1430} -{name:"Adamant mace", itemDescription:"A spiky mace.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:true, isNoteable:true, weight:2.0, bonuses:[13.0, -2.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1431} -{name:"Rune mace", itemDescription:"A spiky mace.", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:false, isNoteable:false, weight:179.0, bonuses:[20.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1432} -{name:"Rune mace", itemDescription:"A spiky mace.", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:true, isNoteable:true, weight:179.0, bonuses:[20.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1433} -{name:"Dragon mace", itemDescription:"A spiky mace.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[40.0, -2.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1434} -{name:"Dragon mace", itemDescription:"A spiky mace.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[40.0, -2.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1435} -{name:"Rune essence", itemDescription:"An uncharged Rune Stone.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1436} -{name:"Rune essence", itemDescription:"An uncharged Rune Stone.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1437} -{name:"Air talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1438} -{name:"Air talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1439} -{name:"Earth talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1440} -{name:"Earth talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1441} -{name:"Fire talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1442} -{name:"Fire talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1443} -{name:"Water talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1444} -{name:"Water talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1445} -{name:"Body talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1446} -{name:"Body talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1447} -{name:"Mind talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1448} -{name:"Mind talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1449} -{name:"Blood talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1450} -{name:"Blood talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1451} -{name:"Chaos talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1452} -{name:"Chaos talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1453} -{name:"Cosmic talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1454} -{name:"Cosmic talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1455} -{name:"Death talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1456} -{name:"Death talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1457} -{name:"Law talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1458} -{name:"Law talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1459} -{name:"Soul talisman", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1460} -{name:"Soul talisman", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1461} -{name:"Nature talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1462} -{name:"Nature talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1463} -{name:"Archery ticket", itemDescription:"I can exchange this for equipment.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1464} -{name:"Weapon poison", itemDescription:"For use on daggers and projectiles.", shopValue:11, lowAlch:57, highAlch:86, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1465} -{name:"Sea slug", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1466} -{name:"Damp sticks", itemDescription:"Some damp wooden sticks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1467} -{name:"Dry sticks", itemDescription:"Some dry wooden sticks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1468} -{name:"Broken glass", itemDescription:"Smashed glass.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1469} -{name:"Red bead", itemDescription:"A small round red bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1470} -{name:"Red bead", itemDescription:"A small round red bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1471} -{name:"Yellow bead", itemDescription:"A small round yellow bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1472} -{name:"Yellow bead", itemDescription:"A small round yellow bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1473} -{name:"Black bead", itemDescription:"A small round black bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1474} -{name:"Black bead", itemDescription:"A small round black bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1475} -{name:"White bead", itemDescription:"A small round white bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1476} -{name:"White bead", itemDescription:"A small round white bead.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1477} -{name:"Amulet of accuracy", itemDescription:"Wizard Mizgog sells these aim-enhancing amulets.", shopValue:5000, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1478} -{name:"Amulet of accuracy", itemDescription:"Wizard Mizgog sells these aim-enhancing amulets.", shopValue:5000, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1479} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1480} -{name:"Orb of light", itemDescription:"A magical sphere that glimmers within.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1481} -{name:"Orb of light", itemDescription:"A magical sphere that glimmers within.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1482} -{name:"Orb of light", itemDescription:"A magical sphere that glimmers within.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1483} -{name:"Orb of light", itemDescription:"A magical sphere that glimmers within.", shopValue:20, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1484} -{name:"Damp cloth", itemDescription:"A damp, wet cloth.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1485} -{name:"Piece of railing", itemDescription:"A broken piece of railing.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1486} -{name:"Unicorn horn", itemDescription:"This horn has restorative properties.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1487} -{name:"Paladin's badge", itemDescription:"A coat of arms of the Ardougne Paladins.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1488} -{name:"Paladin's badge", itemDescription:"A coat of arms of the Ardougne Paladins.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1489} -{name:"Paladin's badge", itemDescription:"A coat of arms of the Ardougne Paladins.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1490} -{name:"Witch's cat", itemDescription:" A cat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1491} -{name:"Doll of iban", itemDescription:"A simple doll with Iban's likeness.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1492} -{name:"Old journal", itemDescription:"An account of the last times of someone.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1493} -{name:"History of iban", itemDescription:"The tale of Iban.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1494} -{name:"Klank's gauntlets", itemDescription:"Strong dwarvish gloves.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:2.0, bonuses:[2.0, 2.0, 2.0, 0.0, 0.0, 8.0, 9.0, 7.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1495} -{name:"Iban's dove", itemDescription:"I thought you only saw these in pairs?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1496} -{name:"Amulet of othanian", itemDescription:"A mystical demonic amulet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1497} -{name:"Amulet of doomion", itemDescription:"A mystical demonic amulet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1498} -{name:"Amulet of holthion", itemDescription:"A mystical demonic amulet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1499} -{name:"Iban's shadow", itemDescription:"A strange dark liquid.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1500} -{name:"Dwarf brew", itemDescription:"Smells stronger than most spirits.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1501} -{name:"Iban's ashes", itemDescription:"The burnt remains of Iban.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:56.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1502} -{name:"Warrant", itemDescription:"A search warrant for a house in West Ardougne.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1503} -{name:"Hangover cure", itemDescription:"It doesn't look very tasty.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1504} -{name:"A magic scroll", itemDescription:"Maybe I should read this...", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1505} -{name:"Gas mask", itemDescription:"Stops me from breathing nasty stuff!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1506} -{name:"A small key", itemDescription:"Quite a small key.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1507} -{name:"A scruffy note", itemDescription:"It seems to say hongorer lure...", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1508} -{name:"Book", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1509} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1510} -{name:"Logs", itemDescription:"A number of wooden logs.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1511} -{name:"Logs", itemDescription:"A number of wooden logs.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1512} -{name:"Magic logs", itemDescription:"Logs cut from a magic tree.", shopValue:320, lowAlch:128, highAlch:192, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1513} -{name:"Magic logs", itemDescription:"Logs cut from a magic tree.", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1514} -{name:"Yew logs", itemDescription:"Logs cut from a yew tree.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1515} -{name:"Yew logs", itemDescription:"Logs cut from a yew tree.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1516} -{name:"Maple logs", itemDescription:"Logs cut from a maple tree.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1517} -{name:"Maple logs", itemDescription:"Logs cut from a maple tree.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1518} -{name:"Willow logs", itemDescription:"Logs cut from a willow tree.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1519} -{name:"Willow logs", itemDescription:"Logs cut from a willow tree.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1520} -{name:"Oak logs", itemDescription:"Logs cut from an Oak Tree.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1521} -{name:"Oak logs", itemDescription:"Logs cut from an Oak Tree.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1522} -{name:"Lockpick", itemDescription:"For picking tough locks.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1523} -{name:"Lockpick", itemDescription:"For picking tough locks.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1524} -{name:"Grimy snake weed", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1525} -{name:"Clean snake weed", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1526} -{name:"Grimy ardrigal", itemDescription:"I need to clean this herb before I can use it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1527} -{name:"Clean ardrigal", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1528} -{name:"Grimy sito foil", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1529} -{name:"Clean sito foil", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1530} -{name:"Grimy volencia moss", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1531} -{name:"Clean volencia moss", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1532} -{name:"Grimy rogue's purse", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1533} -{name:"Clean rogue's purse", itemDescription:"A fresh herb.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1534} -{name:"Map part", itemDescription:"A piece of map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1535} -{name:"Map part", itemDescription:"A piece of map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1536} -{name:"Map part", itemDescription:"A piece of map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1537} -{name:"Crandor map", itemDescription:"A map of the route to Crandor.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1538} -{name:"Steel nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:52, lowAlch:20, highAlch:31, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1539} -{name:"Anti-dragon shield", itemDescription:"This provides partial protection from dragon-breath attacks.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1540} -{name:"Anti-dragon shield", itemDescription:"This provides partial protection from dragon-breath attacks.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1541} -{name:"Maze key", itemDescription:"A key to Melzar's Maze.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1542} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1543} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1544} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1545} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1546} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1547} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1548} -{name:"Stake", itemDescription:"A very pointy stick.", shopValue:8, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1549} -{name:"Garlic", itemDescription:"Deters vampires.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1550} -{name:"Garlic", itemDescription:"Deters vampires.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1551} -{name:"Doogle sardine", itemDescription:"Sardine flavoured with doogle leaves.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1552} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1553} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1554} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1555} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1556} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1557} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1558} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1559} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1560} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1561} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1562} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1563} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1564} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1565} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1566} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1567} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1568} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1569} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1570} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1571} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1572} -{name:"Doogle leaves", itemDescription:"A tasty herb good for seasoning.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1573} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1574} -{name:"Cat training medal", itemDescription:"For feline training expertise.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1575} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1576} -{name:"Pete's candlestick", itemDescription:"Candlestick used during Heroes' Quest.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1577} -{name:"Pete's candlestick", itemDescription:"Candlestick used during Heroes' Quest.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1578} -{name:"Thieves' armband", itemDescription:"This denotes a Master Thief.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1579} -{name:"Ice gloves", itemDescription:"These will keep my hands cold!", shopValue:6, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1580} -{name:"Blamish snail slime", itemDescription:"Yuck.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1581} -{name:"Blamish oil", itemDescription:"Made from the finest snail slime.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1582} -{name:"Fire feather", itemDescription:"Firebird feather.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1583} -{name:"Id papers", itemDescription:"Apparently my name is Hartigan", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1584} -{name:"Oily fishing rod", itemDescription:"Useful for catching lava eels.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1585} -{name:"Miscellaneous key", itemDescription:"This is of use in completing Heroes' Quest. (Heroes' Quest)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1586} -{name:"Miscellaneous key", itemDescription:"This is of use in completing Heroes' Quest. (Heroes' Quest)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1587} -{name:"Grip's key", itemDescription:"The key I got from Grip. (Heroes' Quest)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1588} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1589} -{name:"Dusty key", itemDescription:"I wonder what this unlocks. (Heroes' Quest)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1590} -{name:"Jail key", itemDescription:"Key to a cell. (Heroes' Quest)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1591} -{name:"Ring mould", itemDescription:"Used to make gold rings.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1592} -{name:"Ring mould", itemDescription:"Used to make gold rings.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1593} -{name:"Unholy mould", itemDescription:"Used to make unholy symbols.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1594} -{name:"Amulet mould", itemDescription:"Used to make gold amulets.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1595} -{name:"Amulet mould", itemDescription:"Used to make gold amulets.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1596} -{name:"Necklace mould", itemDescription:"Used to make gold necklaces.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1597} -{name:"Necklace mould", itemDescription:"Used to make gold necklaces.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1598} -{name:"Holy mould", itemDescription:"Used to make holy symbols of Saradomin.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1599} -{name:"Holy mould", itemDescription:"Used to make holy symbols of Saradomin.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1600} -{name:"Diamond", itemDescription:"This looks valuable.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1601} -{name:"Diamond", itemDescription:"This looks valuable.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1602} -{name:"Ruby", itemDescription:"This looks valuable.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1603} -{name:"Ruby", itemDescription:"This looks valuable.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1604} -{name:"Emerald", itemDescription:"This looks valuable.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1605} -{name:"Emerald", itemDescription:"This looks valuable.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1606} -{name:"Sapphire", itemDescription:"This looks valuable.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1607} -{name:"Sapphire", itemDescription:"This looks valuable.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1608} -{name:"Opal", itemDescription:"A semi precious stone.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1609} -{name:"Opal", itemDescription:"A semi precious stone.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1610} -{name:"Jade", itemDescription:"", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1611} -{name:"Jade", itemDescription:"", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1612} -{name:"Red topaz", itemDescription:"A semi precious stone.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1613} -{name:"Red topaz", itemDescription:"A semi precious stone.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1614} -{name:"Dragonstone", itemDescription:"This looks valuable.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1615} -{name:"Dragonstone", itemDescription:"This looks valuable.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1616} -{name:"Uncut diamond", itemDescription:"An uncut diamond.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1617} -{name:"Uncut diamond", itemDescription:"An uncut diamond.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1618} -{name:"Uncut ruby", itemDescription:"An uncut ruby.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1619} -{name:"Uncut ruby", itemDescription:"An uncut ruby.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1620} -{name:"Uncut emerald", itemDescription:"An uncut emerald.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1621} -{name:"Uncut emerald", itemDescription:"An uncut emerald.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1622} -{name:"Uncut sapphire", itemDescription:"An uncut sapphire.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1623} -{name:"Uncut sapphire", itemDescription:"An uncut sapphire.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1624} -{name:"Uncut opal", itemDescription:"An uncut opal.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1625} -{name:"Uncut opal", itemDescription:"An uncut opal.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1626} -{name:"Uncut jade", itemDescription:"An uncut jade.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1627} -{name:"Uncut jade", itemDescription:"An uncut jade.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1628} -{name:"Uncut red topaz", itemDescription:"An uncut red topaz.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1629} -{name:"Uncut red topaz", itemDescription:"An uncut red topaz.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1630} -{name:"Uncut dragonstone", itemDescription:"An uncut dragonstone.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1631} -{name:"Uncut dragonstone", itemDescription:"An uncut dragonstone.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1632} -{name:"Crushed gem", itemDescription:"This gem is crushed and broken.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1633} -{name:"Crushed gem", itemDescription:"This gem is crushed and broken.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1634} -{name:"Gold ring", itemDescription:"A valuable ring.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1635} -{name:"Gold ring", itemDescription:"A valuable ring.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1636} -{name:"Sapphire ring", itemDescription:"A valuable ring.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1637} -{name:"Sapphire ring", itemDescription:"A valuable ring.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1638} -{name:"Emerald ring", itemDescription:"A valuable ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1639} -{name:"Emerald ring", itemDescription:"A valuable ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1640} -{name:"Ruby ring", itemDescription:"A valuable ring.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1641} -{name:"Ruby ring", itemDescription:"A valuable ring.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1642} -{name:"Diamond ring", itemDescription:"A valuable ring.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1643} -{name:"Diamond ring", itemDescription:"A valuable ring.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1644} -{name:"Dragonstone ring", itemDescription:"A valuable ring.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1645} -{name:"Dragonstone ring", itemDescription:"A valuable ring.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1646} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1647} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1648} -{name:"Sapphire ring", itemDescription:"A valuable ring.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1649} -{name:"Emerald ring", itemDescription:"A valuable ring.", shopValue:0, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1650} -{name:"Ruby ring", itemDescription:"A valuable ring.", shopValue:0, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1651} -{name:"Diamond ring", itemDescription:"A valuable ring.", shopValue:0, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1652} -{name:"Dragonstone ring", itemDescription:"A valuable ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1653} -{name:"Gold necklace", itemDescription:"I wonder if this is valuable.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1654} -{name:"Gold necklace", itemDescription:"I wonder if this is valuable.", shopValue:450, lowAlch:180, highAlch:270, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1655} -{name:"Sapphire necklace", itemDescription:"I wonder if this is valuable.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1656} -{name:"Sapphire necklace", itemDescription:"I wonder if this is valuable.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1657} -{name:"Emerald necklace", itemDescription:"I wonder if this is valuable.", shopValue:1425, lowAlch:570, highAlch:855, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1658} -{name:"Emerald necklace", itemDescription:"I wonder if this is valuable.", shopValue:1425, lowAlch:570, highAlch:855, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1659} -{name:"Ruby necklace", itemDescription:"I wonder if this is valuable.", shopValue:2175, lowAlch:870, highAlch:1305, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1660} -{name:"Ruby necklace", itemDescription:"I wonder if this is valuable.", shopValue:2175, lowAlch:870, highAlch:1305, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1661} -{name:"Diamond necklace", itemDescription:"I wonder if this is valuable.", shopValue:3675, lowAlch:1470, highAlch:2205, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1662} -{name:"Diamond necklace", itemDescription:"I wonder if this is valuable.", shopValue:3675, lowAlch:1470, highAlch:2205, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1663} -{name:"Dragon necklace", itemDescription:"I wonder if this is valuable.", shopValue:18375, lowAlch:7350, highAlch:11025, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1664} -{name:"Dragon necklace", itemDescription:"I wonder if this is valuable.", shopValue:18375, lowAlch:7350, highAlch:11025, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1665} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1666} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1667} -{name:"Sapphire necklace", itemDescription:"I wonder if this is valuable.", shopValue:0, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1668} -{name:"Emerald necklace", itemDescription:"I wonder if this is valuable.", shopValue:0, lowAlch:570, highAlch:855, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1669} -{name:"Ruby necklace", itemDescription:"I wonder if this is valuable.", shopValue:0, lowAlch:870, highAlch:1305, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1670} -{name:"Diamond necklace", itemDescription:"I wonder if this is valuable.", shopValue:0, lowAlch:1470, highAlch:2205, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1671} -{name:"Dragon necklace", itemDescription:"I wonder if this is valuable.", shopValue:0, lowAlch:7350, highAlch:11025, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1672} -{name:"Gold amulet", itemDescription:"A plain gold amulet.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1673} -{name:"Gold amulet", itemDescription:"A plain gold amulet.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1674} -{name:"Sapphire amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1675} -{name:"Sapphire amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1676} -{name:"Emerald amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1677} -{name:"Emerald amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1678} -{name:"Ruby amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1679} -{name:"Ruby amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1680} -{name:"Diamond amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1681} -{name:"Diamond amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1682} -{name:"Dragonstone ammy", itemDescription:"I wonder if I can get this enchanted.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1683} -{name:"Dragonstone ammy", itemDescription:"I wonder if I can get this enchanted.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1684} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1685} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1686} -{name:"Sapphire amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1687} -{name:"Emerald amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:0, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1688} -{name:"Ruby amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:0, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1689} -{name:"Diamond amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:0, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1690} -{name:"Dragonstone ammy", itemDescription:"I wonder if I can get this enchanted.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1691} -{name:"Gold amulet", itemDescription:"A plain gold amulet.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1692} -{name:"Gold amulet", itemDescription:"A plain gold amulet.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1693} -{name:"Sapphire amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1694} -{name:"Sapphire amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1695} -{name:"Emerald amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1696} -{name:"Emerald amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1697} -{name:"Ruby amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1698} -{name:"Ruby amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1699} -{name:"Diamond amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1700} -{name:"Diamond amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1701} -{name:"Dragonstone ammy", itemDescription:"I wonder if I can get this enchanted.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1702} -{name:"Dragonstone ammy", itemDescription:"I wonder if I can get this enchanted.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1703} -{name:"Amulet of glory", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1704} -{name:"Amulet of glory", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1705} -{name:"Amulet of glory (1)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1706} -{name:"Amulet of glory (1)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1707} -{name:"Amulet of glory (2)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1708} -{name:"Amulet of glory (2)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1709} -{name:"Amulet of glory (3)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1710} -{name:"Amulet of glory (3)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1711} -{name:"Amulet of glory (4)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1712} -{name:"Amulet of glory (4)", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1713} -{name:"Unstrung symbol", itemDescription:"It needs a string so I can wear it.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1714} -{name:"Unstrung symbol", itemDescription:"It needs a string so I can wear it.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1715} -{name:"Unblessed symbol", itemDescription:"A symbol of Saradomin.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1716} -{name:"Unblessed symbol", itemDescription:"A symbol of Saradomin.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1717} -{name:"Holy symbol", itemDescription:"A blessed holy symbol of Saradomin.", shopValue:300, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1718} -{name:"Holy symbol", itemDescription:"A blessed holy symbol of Saradomin.", shopValue:300, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1719} -{name:"Unstrung emblem", itemDescription:"It needs a string so I can wear it.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1720} -{name:"Unstrung emblem", itemDescription:"It needs a string so I can wear it.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1721} -{name:"Unpowered symbol", itemDescription:"An unholy symbol of Zamorak.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1722} -{name:"Unpowered symbol", itemDescription:"An unholy symbol of Zamorak.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1723} -{name:"Unholy symbol", itemDescription:"An unholy symbol of Zamorak.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1724} -{name:"Amulet of strength", itemDescription:"An enchanted ruby amulet.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1725} -{name:"Amulet of strength", itemDescription:"An enchanted ruby amulet.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1726} -{name:"Amulet of magic", itemDescription:"An enchanted sapphire amulet of magic.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1727} -{name:"Amulet of magic", itemDescription:"An enchanted sapphire amulet of magic.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1728} -{name:"Amulet of defence", itemDescription:"An enchanted emerald amulet of protection.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1729} -{name:"Amulet of defence", itemDescription:"An enchanted emerald amulet of protection.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1730} -{name:"Amulet of power", itemDescription:"An enchanted diamond amulet of power.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1731} -{name:"Amulet of power", itemDescription:"An enchanted diamond amulet of power.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:true, isNoteable:true, weight:0.0, bonuses:[6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1732} -{name:"Needle", itemDescription:"Used with a thread to make clothes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1733} -{name:"Thread", itemDescription:"Use with a needle to make clothes.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1734} -{name:"Shears", itemDescription:"For shearing sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1735} -{name:"Shears", itemDescription:"For shearing sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1736} -{name:"Wool", itemDescription:"I think this came from a sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1737} -{name:"Wool", itemDescription:"I think this came from a sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1738} -{name:"Cowhide", itemDescription:"I should take this to the tannery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1739} -{name:"Cowhide", itemDescription:"I should take this to the tannery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1740} -{name:"Leather", itemDescription:"It's a piece of leather.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1741} -{name:"Leather", itemDescription:"It's a piece of leather.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1742} -{name:"Hard leather", itemDescription:"It's a piece of hard leather.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1743} -{name:"Hard leather", itemDescription:"It's a piece of hard leather.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1744} -{name:"Green dragon leather", itemDescription:"It's a piece of prepared green dragon hide.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1745} -{name:"Green dragon leather", itemDescription:"It's a piece of prepared green dragon hide.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1746} -{name:"Black dragonhide", itemDescription:"The scaly rough hide from a Black Dragon.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1747} -{name:"Black dragonhide", itemDescription:"The scaly rough hide from a Black Dragon.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1748} -{name:"Red dragonhide", itemDescription:"The scaly rough hide from a red dragon.", shopValue:60, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1749} -{name:"Red dragonhide", itemDescription:"The scaly rough hide from a red dragon.", shopValue:60, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1750} -{name:"Blue dragonhide", itemDescription:"The scaly rough hide from a blue dragon.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1751} -{name:"Blue dragonhide", itemDescription:"The scaly rough hide from a blue dragon.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1752} -{name:"Green dragonhide", itemDescription:"The scaly rough hide from a green dragon.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1753} -{name:"Green dragonhide", itemDescription:"The scaly rough hide from a green dragon.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1754} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1755} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1756} -{name:"Brown apron", itemDescription:"A mostly clean apron.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1757} -{name:"Brown apron", itemDescription:"A mostly clean apron.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1758} -{name:"Ball of wool", itemDescription:"Spun from sheeps' wool.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1759} -{name:"Ball of wool", itemDescription:"Spun from sheeps' wool.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1760} -{name:"Soft clay", itemDescription:"Clay soft enough to mould.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1761} -{name:"Soft clay", itemDescription:"Clay soft enough to mould.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1762} -{name:"Red dye", itemDescription:"A little bottle of red dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1763} -{name:"Red dye", itemDescription:"A little bottle of red dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1764} -{name:"Yellow dye", itemDescription:"A little bottle of yellow dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1765} -{name:"Yellow dye", itemDescription:"A little bottle of yellow dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1766} -{name:"Blue dye", itemDescription:"A little bottle of blue dye", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1767} -{name:"Blue dye", itemDescription:"A little bottle of blue dye", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1768} -{name:"Orange dye", itemDescription:"A little bottle of orange dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1769} -{name:"Orange dye", itemDescription:"A little bottle of orange dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1770} -{name:"Green dye", itemDescription:"A little bottle of green dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1771} -{name:"Green dye", itemDescription:"A little bottle of green dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1772} -{name:"Purple dye", itemDescription:"A little bottle of purple dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1773} -{name:"Purple dye", itemDescription:"A little bottle of purple dye.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1774} -{name:"Molten glass", itemDescription:"Hot glass ready to be blown into useful objects.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1775} -{name:"Molten glass", itemDescription:"Hot glass ready to be blown into useful objects.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1776} -{name:"Bow string", itemDescription:"I need a bow stave to attach this to.", shopValue:100, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1777} -{name:"Bow string", itemDescription:"I need a bow stave to attach this to.", shopValue:100, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1778} -{name:"Flax", itemDescription:"A plant cultivated for fibres (ground); I should use this with a spinning wheel (item).", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1779} -{name:"Flax", itemDescription:"A plant cultivated for fibres (ground); I should use this with a spinning wheel (item).", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1780} -{name:"Soda ash", itemDescription:"One of the ingredients for making glass.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1781} -{name:"Soda ash", itemDescription:"One of the ingredients for making glass.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1782} -{name:"Bucket of sand", itemDescription:"One of the ingredients for making glass.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1783} -{name:"Bucket of sand", itemDescription:"One of the ingredients for making glass.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1784} -{name:"Glassblowing pipe", itemDescription:"Used to form molten glass into useful items.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1785} -{name:"Glassblowing pipe", itemDescription:"Used to form molten glass into useful items.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1786} -{name:"Pot (unfired)", itemDescription:"I need to put this in a pottery oven.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1787} -{name:"Pot (unfired)", itemDescription:"I need to put this in a pottery oven.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1788} -{name:"Pie dish (unfired)", itemDescription:"I need to put this in a pottery oven.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1789} -{name:"Pie dish (unfired)", itemDescription:"I need to put this in a pottery oven.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1790} -{name:"Bowl (unfired)", itemDescription:"I need to put this in a pottery oven.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1791} -{name:"Bowl (unfired)", itemDescription:"I need to put this in a pottery oven.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1792} -{name:"Woad leaf", itemDescription:"A slightly bluish leaf.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1793} -{name:"Bronze wire", itemDescription:"Useful for crafting items.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1794} -{name:"Bronze wire", itemDescription:"Useful for crafting items.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1795} -{name:"Silver necklace", itemDescription:"Anna's shiny silver coated necklace.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1796} -{name:"Silver necklace", itemDescription:"Anna's shiny silver coated necklace.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1797} -{name:"Silver cup", itemDescription:"Bob's shiny silver coated tea cup.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1798} -{name:"Silver cup", itemDescription:"Bob's shiny silver coated tea cup.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1799} -{name:"Silver bottle", itemDescription:"Carol's shiny silver coated bottle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1800} -{name:"Silver bottle", itemDescription:"Carol's shiny silver coated bottle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1801} -{name:"Silver book", itemDescription:"David's shiny silver coated book.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1802} -{name:"Silver book", itemDescription:"David's shiny silver coated book.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1803} -{name:"Silver needle", itemDescription:"Elizabeth's shiny silver coated needle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1804} -{name:"Silver needle", itemDescription:"Elizabeth's shiny silver coated needle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1805} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1806} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1807} -{name:"Criminal's thread", itemDescription:"Some (colour) thread found at the murder scene.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1808} -{name:"Criminal's thread", itemDescription:"Some (colour) thread found at the murder scene.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1809} -{name:"Criminal's thread", itemDescription:"Some (colour) thread found at the murder scene.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1810} -{name:"Flypaper", itemDescription:"A piece of fly paper. It's sticky.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1811} -{name:"Pungent pot", itemDescription:"A pot found at the murder scene, with a sickly odour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1812} -{name:"Criminal's dagger", itemDescription:"A flimsy-looking dagger found at the crime scene.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1813} -{name:"Criminal's dagger", itemDescription:"A flimsy-looking dagger found at the crime scene.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1814} -{name:"Killer's print", itemDescription:"The fingerprints of the murderer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1815} -{name:"Anna's print", itemDescription:"An imprint of Anna's fingerprint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1816} -{name:"Bob's print", itemDescription:"An imprint of Bob's fingerprint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1817} -{name:"Carol's print", itemDescription:"An imprint of Carol's fingerprint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1818} -{name:"David's print", itemDescription:"An imprint of David's fingerprint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1819} -{name:"Elizabeth's print", itemDescription:"An imprint of Elizabeth's fingerprint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1820} -{name:"Frank's print", itemDescription:"An imprint of Frank's fingerprint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1821} -{name:"Unknown print", itemDescription:"An unidentified fingerprint taken from the murder weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1822} -{name:"Waterskin (4)", itemDescription:"A full waterskin with four portions of water.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1823} -{name:"Waterskin (4)", itemDescription:"A full waterskin with four portions of water.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1824} -{name:"Waterskin (3)", itemDescription:"A full waterskin with four portions of water.", shopValue:27, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1825} -{name:"Waterskin (3)", itemDescription:"A full waterskin with four portions of water.", shopValue:27, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1826} -{name:"Waterskin (2)", itemDescription:"A full waterskin with four portions of water.", shopValue:24, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1827} -{name:"Waterskin (2)", itemDescription:"A full waterskin with four portions of water.", shopValue:24, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1828} -{name:"Waterskin (1)", itemDescription:"A full waterskin with four portions of water.", shopValue:18, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1829} -{name:"Waterskin (1)", itemDescription:"A full waterskin with four portions of water.", shopValue:18, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1830} -{name:"Waterskin (0)", itemDescription:"A full waterskin with four portions of water.", shopValue:15, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1831} -{name:"Waterskin (0)", itemDescription:"A full waterskin with four portions of water.", shopValue:15, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1832} -{name:"Desert shirt", itemDescription:"A cool, light desert shirt.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1833} -{name:"Desert shirt", itemDescription:"A cool, light desert shirt.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1834} -{name:"Desert robe", itemDescription:"A cool, light desert robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1835} -{name:"Desert robe", itemDescription:"A cool, light desert robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1836} -{name:"Desert boots", itemDescription:"Comfortable desert shoes.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1837} -{name:"Desert boots", itemDescription:"Comfortable desert shoes.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1838} -{name:"Metal key", itemDescription:"This key is crudely made. It came from the mining camp Mercenary Captain.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1839} -{name:"Cell door key", itemDescription:"A metallic key, usually used by prison guards. (Tourist Trap)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1840} -{name:"Barrel", itemDescription:"An empty barrel/A Splendid barrel.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1841} -{name:"Ana in a barrel", itemDescription:"A mining barrel with Ana in it.(While in mine cart) It's Ana... in a barrel... in a mine cart.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1842} -{name:"Wrought iron key", itemDescription:"This key unlocks a very sturdy gate. Ana gave me this key. (Tourist Trap)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1843} -{name:"Slave shirt", itemDescription:"A filthy, smelly, flea infested shirt.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1844} -{name:"Slave robe", itemDescription:"A filthy, smelly, flea infested robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1845} -{name:"Slave boots", itemDescription:"A set of filthy, smelly, flea infested desert slave boots.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1846} -{name:"Scrumpled paper", itemDescription:"A piece of paper with barely legible writing - looks like a recipe!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1847} -{name:"Shantay disclaimer", itemDescription:"Very important information.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1848} -{name:"Prototype dart", itemDescription:"A prototype throwing dart.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1849} -{name:"Technical plans", itemDescription:"Plans of a technical nature.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1850} -{name:"Tenti pineapple", itemDescription:"The most delicious of pineapples.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1851} -{name:"Bedabin key", itemDescription:"A key to the chest in Captain Siad's room.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1852} -{name:"Prototype dart tip", itemDescription:"A protoype dart tip - it looks deadly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1853} -{name:"Shantay pass", itemDescription:"Allows you to pass through the Shantay pass into the Kharid Desert.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1854} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1855} -{name:"Guide book", itemDescription:"A Tourist's Guide to Ardougne.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1856} -{name:"Totem", itemDescription:"The Rantuki tribe's totem.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1857} -{name:"Address label", itemDescription:"It says 'To Lord Handelmort, Handelmort Mansion'.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1858} -{name:"Raw ugthanki meat", itemDescription:"I need to cook this first / Freshly cooked ugthanki meat.", shopValue:2, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:75.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1859} -{name:"Raw ugthanki meat", itemDescription:"I need to cook this first / Freshly cooked ugthanki meat.", shopValue:2, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:75.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1860} -{name:"Ugthanki meat", itemDescription:"I need to cook this first / Freshly cooked ugthanki meat.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:75.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1861} -{name:"Ugthanki meat", itemDescription:"I need to cook this first / Freshly cooked ugthanki meat.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:75.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1862} -{name:"Pitta dough", itemDescription:"I need to cook this.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1863} -{name:"Pitta dough", itemDescription:"I need to cook this.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1864} -{name:"Pitta bread", itemDescription:"Nicely baked pitta bread. Needs more ingredients to make a kebab.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1865} -{name:"Pitta bread", itemDescription:"Nicely baked pitta bread. Needs more ingredients to make a kebab.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1866} -{name:"Burnt pitta bread", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1867} -{name:"Burnt pitta bread", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1868} -{name:"Chopped tomato", itemDescription:"A mixture of tomatoes in a bowl.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1869} -{name:"Chopped tomato", itemDescription:"A mixture of tomatoes in a bowl.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1870} -{name:"Chopped onion", itemDescription:"A mixture of onions in a bowl.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1871} -{name:"Chopped onion", itemDescription:"A mixture of onions in a bowl.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1872} -{name:"Chopped ugthanki", itemDescription:"Strips of ugthanki meat in a bowl.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1873} -{name:"Chopped ugthanki", itemDescription:"Strips of ugthanki meat in a bowl.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1874} -{name:"Onion & tomato", itemDescription:"A mixture of chopped onions and tomatoes in a bowl", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1875} -{name:"Onion & tomato", itemDescription:"A mixture of chopped onions and tomatoes in a bowl", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1876} -{name:"Ugthanki & onion", itemDescription:"A mixture of chopped onions and ugthanki meat in a bowl.", shopValue:0, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1877} -{name:"Ugthanki & onion", itemDescription:"A mixture of chopped onions and ugthanki meat in a bowl.", shopValue:0, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1878} -{name:"Ugthanki & tomato", itemDescription:"A mixture of chopped tomatoes and ugthanki meat in a bowl.", shopValue:0, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1879} -{name:"Ugthanki & tomato", itemDescription:"A mixture of chopped tomatoes and ugthanki meat in a bowl.", shopValue:0, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1880} -{name:"Kebab mix", itemDescription:"A mixture of chopped tomatoes, onions and ugthanki meat in a bowl", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1881} -{name:"Kebab mix", itemDescription:"A mixture of chopped tomatoes, onions and ugthanki meat in a bowl", shopValue:9, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1882} -{name:"Ugthanki kebab", itemDescription:"0.5 kg", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1883} -{name:"Ugthanki kebab", itemDescription:"0.5 kg", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1884} -{name:"Ugthanki kebab", itemDescription:"0.5 kg", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1885} -{name:"Ugthanki kebab", itemDescription:"0.5 kg", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1886} -{name:"Cake tin", itemDescription:"Useful for baking cakes.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1887} -{name:"Cake tin", itemDescription:"Useful for baking cakes.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1888} -{name:"Uncooked cake", itemDescription:"Now all I need to do is cook it.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1889} -{name:"Uncooked cake", itemDescription:"Now all I need to do is cook it.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1890} -{name:"Cake", itemDescription:"A plain sponge cake.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1891} -{name:"Cake", itemDescription:"A plain sponge cake.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1892} -{name:"2/3 cake", itemDescription:"A plain sponge cake.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1893} -{name:"2/3 cake", itemDescription:"A plain sponge cake.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1894} -{name:"Slice of cake", itemDescription:"A plain sponge cake.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1895} -{name:"Slice of cake", itemDescription:"A plain sponge cake.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1896} -{name:"Chocolate cake", itemDescription:"This looks very tasty.", shopValue:70, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1897} -{name:"Chocolate cake", itemDescription:"This looks very tasty.", shopValue:70, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1898} -{name:"2/3 chocolate cake", itemDescription:"This looks very tasty.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1899} -{name:"2/3 chocolate cake", itemDescription:"This looks very tasty.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1900} -{name:"Chocolate slice", itemDescription:"This looks very tasty.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1901} -{name:"Chocolate slice", itemDescription:"This looks very tasty.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1902} -{name:"Burnt cake", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1903} -{name:"Burnt cake", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1904} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1905} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1906} -{name:"Wizard's mind bomb", itemDescription:"It's got strange bubbles in it.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1907} -{name:"Wizard's mind bomb", itemDescription:"It's got strange bubbles in it.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1908} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1909} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1910} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1911} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1912} -{name:"Dwarven stout", itemDescription:"A pint of thick dark beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1913} -{name:"Dwarven stout", itemDescription:"A pint of thick dark beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1914} -{name:"Grog", itemDescription:"A murky glass full of your average, everyday pirate slosh.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1915} -{name:"Grog", itemDescription:"A murky glass full of your average, everyday pirate slosh.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1916} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1917} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1918} -{name:"Beer glass", itemDescription:"I need to fill this with beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1919} -{name:"Beer glass", itemDescription:"I need to fill this with beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1920} -{name:"Bowl of water", itemDescription:"It's a bowl of water.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1921} -{name:"Bowl of water", itemDescription:"It's a bowl of water.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1922} -{name:"Bowl", itemDescription:"Useful for mixing things.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1923} -{name:"Bowl", itemDescription:"Useful for mixing things.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1924} -{name:"Bucket", itemDescription:"It's an empty bucket.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1925} -{name:"Bucket", itemDescription:"It's an empty bucket.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1926} -{name:"Bucket of milk", itemDescription:"It's a bucket of milk.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1927} -{name:"Bucket of milk", itemDescription:"It's a bucket of milk.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1928} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1929} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1930} -{name:"Empty pot", itemDescription:"This pot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1931} -{name:"Empty pot", itemDescription:"This pot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1932} -{name:"Pot of flour", itemDescription:"There is flour in this pot.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1933} -{name:"Pot of flour", itemDescription:"There is flour in this pot.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1934} -{name:"Jug", itemDescription:"This jug is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1935} -{name:"Jug", itemDescription:"This jug is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1936} -{name:"Jug of water", itemDescription:"It's full of water.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1937} -{name:"Jug of water", itemDescription:"It's full of water.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1938} -{name:"Swamp tar", itemDescription:"A foul smelling thick tar like substance.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1939} -{name:"Raw swamp paste", itemDescription:"A tar-like substance mixed with flour and warmed.", shopValue:1, lowAlch:12, highAlch:18, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1940} -{name:"Swamp paste", itemDescription:"A tar-like substance mixed with flour and warmed.", shopValue:31, lowAlch:12, highAlch:18, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1941} -{name:"Potato", itemDescription:"This could be used to make a good stew.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1942} -{name:"Potato", itemDescription:"This could be used to make a good stew.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1943} -{name:"Egg", itemDescription:"A nice fresh egg.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1944} -{name:"Egg", itemDescription:"A nice fresh egg.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1945} -{name:"Flour", itemDescription:"There is flour in this pot.", shopValue:2, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1946} -{name:"Grain", itemDescription:" Baby bread. Grain (on right): A sack full of grain", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1947} -{name:"Grain", itemDescription:" Baby bread. Grain (on right): A sack full of grain", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1948} -{name:"Chef's hat", itemDescription:"What a silly hat.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1949} -{name:"Chef's hat", itemDescription:"What a silly hat.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1950} -{name:"Redberries", itemDescription:"Very bright red berries.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1951} -{name:"Redberries", itemDescription:"Very bright red berries.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1952} -{name:"Pastry dough", itemDescription:"Potentially pastry.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1953} -{name:"Pastry dough", itemDescription:"Potentially pastry.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1954} -{name:"Cooking apple", itemDescription:"Keeps the doctor away.", shopValue:36, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1955} -{name:"Cooking apple", itemDescription:"Keeps the doctor away.", shopValue:36, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1956} -{name:"Onion", itemDescription:"A strong smelling onion.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1957} -{name:"Onion", itemDescription:"A strong smelling onion.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1958} -{name:"Pumpkin", itemDescription:"Happy Halloween.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1959} -{name:"Pumpkin", itemDescription:"Happy Halloween.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1960} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1961} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1962} -{name:"Banana", itemDescription:"Mmm this looks tasty.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1963} -{name:"Banana", itemDescription:"Mmm this looks tasty.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1964} -{name:"Cabbage", itemDescription:" Yuck, I don't like cabbage.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1965} -{name:"Cabbage", itemDescription:" Yuck, I don't like cabbage.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1966} -{name:"Cabbage", itemDescription:" Yuck, I don't like cabbage.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1967} -{name:"Cabbage", itemDescription:" Yuck, I don't like cabbage.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1968} -{name:"Spinach roll", itemDescription:"A home made spinach thing.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1969} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1970} -{name:"Kebab", itemDescription:"A meaty kebab.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1971} -{name:"Kebab", itemDescription:"A meaty kebab.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1972} -{name:"Chocolate bar", itemDescription:"Mmmmmmm chocolate.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1973} -{name:"Chocolate bar", itemDescription:"Mmmmmmm chocolate.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1974} -{name:"Chocolate dust", itemDescription:"It's ground-up chocolate.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1975} -{name:"Chocolate dust", itemDescription:"It's ground-up chocolate.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1976} -{name:"Chocolatey milk", itemDescription:"Milk with chocolate in it.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1977} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1978} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1979} -{name:"Empty cup", itemDescription:"An empty cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1980} -{name:"Empty cup", itemDescription:"An empty cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1981} -{name:"Tomato", itemDescription:"This would make good ketchup.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1982} -{name:"Tomato", itemDescription:"This would make good ketchup.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1983} -{name:"Rotten apple", itemDescription:"Rotten to the core!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1984} -{name:"Cheese", itemDescription:"It's got holes in it.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1985} -{name:"Cheese", itemDescription:"It's got holes in it.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1986} -{name:"Grapes", itemDescription:"Good grapes for wine making.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1987} -{name:"Grapes", itemDescription:"Good grapes for wine making.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1988} -{name:"Half full wine jug", itemDescription:"An optimist would say it is half full.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1989} -{name:"Half full wine jug", itemDescription:"An optimist would say it is half full.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1990} -{name:"Jug of bad wine", itemDescription:"Oh dear, this wine is terrible!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1991} -{name:"Jug of bad wine", itemDescription:"Oh dear, this wine is terrible!", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1992} -{name:"Jug of wine", itemDescription:"It's full of wine.", shopValue:128, lowAlch:51, highAlch:76, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1993} -{name:"Jug of wine", itemDescription:"It's full of wine.", shopValue:128, lowAlch:51, highAlch:76, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1994} -{name:"Unfermented wine", itemDescription:"This wine needs to ferment before it can be drunk.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1995} -{name:"Unfermented wine", itemDescription:"This wine needs to ferment before it can be drunk.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1996} -{name:"Incomplete stew", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1997} -{name:"Incomplete stew", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1998} -{name:"Incomplete stew", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:1999} -{name:"Incomplete stew", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2000} -{name:"Uncooked stew", itemDescription:"I need to cook this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2001} -{name:"Uncooked stew", itemDescription:"I need to cook this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2002} -{name:"Stew", itemDescription:"It's a meat and potato stew.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2003} -{name:"Stew", itemDescription:"It's a meat and potato stew.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2004} -{name:"Burnt stew", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2005} -{name:"Burnt stew", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2006} -{name:"Spice", itemDescription:"This could liven up an otherwise bland stew.", shopValue:230, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2007} -{name:"Spice", itemDescription:"This could liven up an otherwise bland stew.", shopValue:230, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2008} -{name:"Uncooked curry", itemDescription:"I need to cook this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2009} -{name:"Uncooked curry", itemDescription:"I need to cook this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2010} -{name:"Curry", itemDescription:"It's a spicy hot curry.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2011} -{name:"Curry", itemDescription:"It's a spicy hot curry.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2012} -{name:"Burnt curry", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2013} -{name:"Burnt curry", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2014} -{name:"Vodka", itemDescription:"An absolutely clear spirit sold by well-stocked bars.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2015} -{name:"Vodka", itemDescription:"An absolutely clear spirit sold by well-stocked bars.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2016} -{name:"Whisky", itemDescription:"This Draynor malt is sold by well-stocked bars.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2017} -{name:"Whisky", itemDescription:"This Draynor malt is sold by well-stocked bars.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2018} -{name:"Gin", itemDescription:"A strong spirit that tastes of Juniper; sold at well-stocked bars.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2019} -{name:"Gin", itemDescription:"A strong spirit that tastes of Juniper; sold at well-stocked bars.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2020} -{name:"Brandy", itemDescription:"A strong spirit best served in a large glass.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2021} -{name:"Brandy", itemDescription:"A strong spirit best served in a large glass.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2022} -{name:"Cocktail guide", itemDescription:"A book on tree gnome cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2023} -{name:"Cocktail guide", itemDescription:"A book on tree gnome cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2024} -{name:"Cocktail shaker", itemDescription:"Used for mixing cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2025} -{name:"Cocktail glass", itemDescription:"For sipping cocktails.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2026} -{name:"Cocktail glass", itemDescription:"For sipping cocktails.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2027} -{name:"Premade blurb' sp.", itemDescription:"A premade Blurberry Special.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2028} -{name:"Premade blurb' sp.", itemDescription:"A premade Blurberry Special.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2029} -{name:"Premade choc s'dy", itemDescription:"A premade Chocolate Saturday.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2030} -{name:"Premade choc s'dy", itemDescription:"A premade Chocolate Saturday.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2031} -{name:"Premade dr' dragon", itemDescription:"A premade Drunk Dragon.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2032} -{name:"Premade dr' dragon", itemDescription:"A premade Drunk Dragon.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2033} -{name:"Premade fr' blast", itemDescription:"A premade Fruit Blast.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2034} -{name:"Premade fr' blast", itemDescription:"A premade Fruit Blast.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2035} -{name:"Premade p' punch", itemDescription:"A premade Pineapple Punch.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2036} -{name:"Premade p' punch", itemDescription:"A premade Pineapple Punch.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2037} -{name:"Premade sgg", itemDescription:"A premade Short Green Guy.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2038} -{name:"Premade sgg", itemDescription:"A premade Short Green Guy.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2039} -{name:"Premade wiz blz'd", itemDescription:"A Premade Wizard Blizzard.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2040} -{name:"Premade wiz blz'd", itemDescription:"A Premade Wizard Blizzard.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2041} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2042} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2043} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2044} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2045} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2046} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2047} -{name:"Pineapple punch", itemDescription:"A fresh healthy fruit mix.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2048} -{name:"Pineapple punch", itemDescription:"A fresh healthy fruit mix.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2049} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2050} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2051} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2052} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2053} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2054} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2055} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2056} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2057} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2058} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2059} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2060} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2061} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2062} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2063} -{name:"Blurberry special", itemDescription:"Looks good... smells strong.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2064} -{name:"Blurberry special", itemDescription:"Looks good... smells strong.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2065} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2066} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2067} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2068} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2069} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2070} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2071} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2072} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2073} -{name:"Choc saturday", itemDescription:"A warm creamy alcoholic beverage", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2074} -{name:"Choc saturday", itemDescription:"A warm creamy alcoholic beverage", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2075} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2076} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2077} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2078} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2079} -{name:"Short green guy", itemDescription:"A Short Green Guy... looks good.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2080} -{name:"Short green guy", itemDescription:"A Short Green Guy... looks good.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2081} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2082} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2083} -{name:"Fruit blast", itemDescription:"A cool refreshing fruit mix.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2084} -{name:"Fruit blast", itemDescription:"A cool refreshing fruit mix.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2085} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2086} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2087} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2088} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2089} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2090} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2091} -{name:"Drunk dragon", itemDescription:"A warm creamy alcoholic beverage", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2092} -{name:"Drunk dragon", itemDescription:"A warm creamy alcoholic beverage", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2093} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2094} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2095} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2096} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2097} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2098} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2099} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2100} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2101} -{name:"Lemon", itemDescription:"A common fruit, popularly used in cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2102} -{name:"Lemon", itemDescription:"A common fruit, popularly used in cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2103} -{name:"Lemon chunks", itemDescription:"The not-too-surprising result of using a knife with a lemon!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2104} -{name:"Lemon chunks", itemDescription:"The not-too-surprising result of using a knife with a lemon!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2105} -{name:"Lemon slices", itemDescription:"The not-too-surprising result of using a knife with a lemon!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2106} -{name:"Lemon slices", itemDescription:"The not-too-surprising result of using a knife with a lemon!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2107} -{name:"Orange", itemDescription:"A common fruit.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2108} -{name:"Orange", itemDescription:"A common fruit.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2109} -{name:"Orange chunks", itemDescription:"Fresh chunks of orange.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2110} -{name:"Orange chunks", itemDescription:"Fresh chunks of orange.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2111} -{name:"Orange slices", itemDescription:"Fresh orange slices.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2112} -{name:"Orange slices", itemDescription:"Fresh orange slices.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2113} -{name:"Pineapple", itemDescription:"It can be cut up into something more manageable with a knife.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2114} -{name:"Pineapple", itemDescription:"It can be cut up into something more manageable with a knife.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2115} -{name:"Pineapple chunks", itemDescription:"Fresh chunks of pineapple.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2116} -{name:"Pineapple chunks", itemDescription:"Fresh chunks of pineapple.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2117} -{name:"Pineapple ring", itemDescription:"The not-too-surprising result of using a knife with a pineapple!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2118} -{name:"Pineapple ring", itemDescription:"The not-too-surprising result of using a knife with a pineapple!", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2119} -{name:"Lime", itemDescription:"A common fruit, popularly used in cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2120} -{name:"Lime", itemDescription:"A common fruit, popularly used in cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2121} -{name:"Lime chunks", itemDescription:"Fresh chunks of lime.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2122} -{name:"Lime chunks", itemDescription:"Fresh chunks of lime.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2123} -{name:"Lime slices", itemDescription:"The not-too-surprising result of using a knife with a lime!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2124} -{name:"Lime slices", itemDescription:"The not-too-surprising result of using a knife with a lime!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2125} -{name:"Dwellberries", itemDescription:"Some rather pretty blue berries picked from a dwellberry bush.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2126} -{name:"Dwellberries", itemDescription:"Some rather pretty blue berries picked from a dwellberry bush.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2127} -{name:"Equa leaves", itemDescription:"A common ingredient in gnome cuisine.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2128} -{name:"Equa leaves", itemDescription:"A common ingredient in gnome cuisine.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2129} -{name:"Pot of cream", itemDescription:"Fresh cream.", shopValue:19, lowAlch:7, highAlch:11, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2130} -{name:"Pot of cream", itemDescription:"Fresh cream.", shopValue:19, lowAlch:7, highAlch:11, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2131} -{name:"Raw beef", itemDescription:"I need to cook this first.", shopValue:59, lowAlch:23, highAlch:35, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2132} -{name:"Raw beef", itemDescription:"I need to cook this first.", shopValue:59, lowAlch:23, highAlch:35, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2133} -{name:"Raw rat meat", itemDescription:"I need to cook this first.", shopValue:39, lowAlch:15, highAlch:23, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2134} -{name:"Raw rat meat", itemDescription:"I need to cook this first.", shopValue:39, lowAlch:15, highAlch:23, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2135} -{name:"Raw bear meat", itemDescription:"I need to cook this first.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2136} -{name:"Raw bear meat", itemDescription:"I need to cook this first.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2137} -{name:"Raw chicken", itemDescription:"I need to cook this first.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2138} -{name:"Raw chicken", itemDescription:"I need to cook this first.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2139} -{name:"Cooked chicken", itemDescription:"Mmm this looks tasty.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2140} -{name:"Cooked chicken", itemDescription:"Mmm this looks tasty.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2141} -{name:"Cooked meat", itemDescription:"Mmm this looks tasty.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2142} -{name:"Cooked meat", itemDescription:"Mmm this looks tasty.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2143} -{name:"Burnt chicken", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2144} -{name:"Burnt chicken", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2145} -{name:"Burnt meat", itemDescription:"Oh dear, it's totally burnt!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2146} -{name:"Burnt meat", itemDescription:"Oh dear, it's totally burnt!", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2147} -{name:"Raw lava eel", itemDescription:"A very strange eel.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2148} -{name:"Lava eel", itemDescription:"Strange, it looks cooler now it's been cooked.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2149} -{name:"Swamp toad", itemDescription:"A slippery little blighter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2150} -{name:"Swamp toad", itemDescription:"A slippery little blighter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2151} -{name:"Toad's legs", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2152} -{name:"Toad's legs", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2153} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2154} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2155} -{name:"Spicy toad's legs", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2156} -{name:"Spicy toad's legs", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2157} -{name:"Seasoned legs", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2158} -{name:"Seasoned legs", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2159} -{name:"Spicy worm", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2160} -{name:"Spicy worm", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2161} -{name:"King worm", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2162} -{name:"King worm", itemDescription:"They're a gnome delicacy apparently.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2163} -{name:"Batta tin", itemDescription:"A deep tin used to make gnome battas in.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2164} -{name:"Crunchy tray", itemDescription:"A shallow tray used to make crunchies in.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2165} -{name:"Gnomebowl mould", itemDescription:"A large ovenproof bowl.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2166} -{name:"Gianne's cook book", itemDescription:"Aluft Gianne's favourite dishes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2167} -{name:"Gianne's cook book", itemDescription:"Aluft Gianne's favourite dishes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2168} -{name:"Gnome spice", itemDescription:"It's Aluft Gianne's secret mix of spices.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2169} -{name:"Gnome spice", itemDescription:"It's Aluft Gianne's secret mix of spices.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2170} -{name:"Gianne dough", itemDescription:"It's made from a secret recipe.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2171} -{name:"Gianne dough", itemDescription:"It's made from a secret recipe.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2172} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2173} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2174} -{name:"Burnt gnomebowl", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2175} -{name:"Burnt gnomebowl", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2176} -{name:"Half baked bowl", itemDescription:"This gnomebowl is in the early stages of preparation.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2177} -{name:"Raw gnomebowl", itemDescription:"This gnomebowl needs cooking.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2178} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2179} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2180} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2181} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2182} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2183} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2184} -{name:"Chocolate bomb", itemDescription:"Full of creamy, chocolately goodness.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2185} -{name:"Chocolate bomb", itemDescription:"Full of creamy, chocolately goodness.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2186} -{name:"Tangled toads' legs", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2187} -{name:"Tangled toads' legs", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2188} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2189} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2190} -{name:"Worm hole", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2191} -{name:"Worm hole", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2192} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2193} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2194} -{name:"Veg ball", itemDescription:"This looks pretty healthy.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2195} -{name:"Veg ball", itemDescription:"This looks pretty healthy.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2196} -{name:"Odd crunchies", itemDescription:"These crunchies don't look very appetising.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2197} -{name:"Odd crunchies", itemDescription:"These crunchies don't look very appetising.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2198} -{name:"Burnt crunchies", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2199} -{name:"Burnt crunchies", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2200} -{name:"Half baked crunchy", itemDescription:"This crunchy is in the early stages of preparation.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2201} -{name:"Raw crunchies", itemDescription:"These crunchies need cooking.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2202} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2203} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2204} -{name:"Worm crunchies", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2205} -{name:"Worm crunchies", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2206} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2207} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2208} -{name:"Chocchip crunchies", itemDescription:"Yum... smells good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2209} -{name:"Chocchip crunchies", itemDescription:"Yum... smells good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2210} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2211} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2212} -{name:"Spicy crunchies", itemDescription:"Yum...smells spicy.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2213} -{name:"Spicy crunchies", itemDescription:"Yum...smells spicy.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2214} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2215} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2216} -{name:"Toad crunchies", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2217} -{name:"Toad crunchies", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2218} -{name:"Premade w'm batta", itemDescription:"A premade Worm Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2219} -{name:"Premade w'm batta", itemDescription:"A premade Worm Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2220} -{name:"Premade t'd batta", itemDescription:"A Premade Toad Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2221} -{name:"Premade t'd batta", itemDescription:"A Premade Toad Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2222} -{name:"Premade c+t batta", itemDescription:"A Premade Cheese and Tomato Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2223} -{name:"Premade c+t batta", itemDescription:"A Premade Cheese and Tomato Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2224} -{name:"Premade fr't batta", itemDescription:"A premade Fruit Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2225} -{name:"Premade fr't batta", itemDescription:"A premade Fruit Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2226} -{name:"Premade veg batta", itemDescription:"A Premade Vegetable Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2227} -{name:"Premade veg batta", itemDescription:"A Premade Vegetable Batta.", shopValue:195, lowAlch:78, highAlch:117, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2228} -{name:"Premade choc bomb", itemDescription:"A premade Chocolate Bomb.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2229} -{name:"Premade choc bomb", itemDescription:"A premade Chocolate Bomb.", shopValue:450, lowAlch:180, highAlch:270, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2230} -{name:"Premade ttl", itemDescription:"A premade Tangled Toads Legs.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2231} -{name:"Premade ttl", itemDescription:"A premade Tangled Toads Legs.", shopValue:450, lowAlch:180, highAlch:270, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2232} -{name:"Premade worm hole", itemDescription:"A premade Worm Hole.", shopValue:270, lowAlch:108, highAlch:162, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2233} -{name:"Premade worm hole", itemDescription:"A premade Worm Hole.", shopValue:270, lowAlch:108, highAlch:162, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2234} -{name:"Premade veg ball", itemDescription:"A premade Vegetable Ball.", shopValue:270, lowAlch:108, highAlch:162, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2235} -{name:"Premade veg ball", itemDescription:"A premade Vegetable Ball.", shopValue:270, lowAlch:108, highAlch:162, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2236} -{name:"Premade w'm crun'", itemDescription:"Some Premade Worm Crunchies.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2237} -{name:"Premade w'm crun'", itemDescription:"Some Premade Worm Crunchies.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2238} -{name:"Premade ch' crunch", itemDescription:"Some Premade chocchip crunchies.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2239} -{name:"Premade ch' crunch", itemDescription:"Some Premade chocchip crunchies.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2240} -{name:"Premade s'y crunch", itemDescription:"Some premade Spicy Crunchies.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2241} -{name:"Premade s'y crunch", itemDescription:"Some premade Spicy Crunchies.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2242} -{name:"Premade t'd crunch", itemDescription:"Some premade Toad Crunchies.", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2243} -{name:"Premade t'd crunch", itemDescription:"Some premade Toad Crunchies.", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2244} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2245} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2246} -{name:"Burnt batta", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2247} -{name:"Burnt batta", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2248} -{name:"Half baked batta", itemDescription:"This gnome batta is in the early stages of preparation.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2249} -{name:"Raw batta", itemDescription:"This gnome batta needs cooking.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2250} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2251} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2252} -{name:"Worm batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2253} -{name:"Worm batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2254} -{name:"Toad batta", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2255} -{name:"Toad batta", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2256} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2257} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2258} -{name:"Cheese+tom batta", itemDescription:"This smells really good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2259} -{name:"Cheese+tom batta", itemDescription:"This smells really good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2260} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2261} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2262} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2263} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2264} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2265} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2266} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2267} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2268} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2269} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2270} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2271} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2272} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2273} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2274} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2275} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2276} -{name:"Fruit batta", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2277} -{name:"Fruit batta", itemDescription:"It actually smells quite good.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2278} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2279} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2280} -{name:"Vegetable batta", itemDescription:"Well... It looks healthy.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2281} -{name:"Vegetable batta", itemDescription:"Well... It looks healthy.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2282} -{name:"Pizza base", itemDescription:"I need to add some tomato next.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2283} -{name:"Pizza base", itemDescription:"I need to add some tomato next.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2284} -{name:"Incomplete pizza", itemDescription:"I need to add some cheese next.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2285} -{name:"Incomplete pizza", itemDescription:"I need to add some cheese next.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2286} -{name:"Uncooked pizza", itemDescription:"This needs cooking", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2287} -{name:"Uncooked pizza", itemDescription:"This needs cooking", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2288} -{name:"Plain pizza", itemDescription:"A cheese and tomato pizza. (Whole)Half of this plain pizza has been eaten. (Half)", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2289} -{name:"Plain pizza", itemDescription:"A cheese and tomato pizza. (Whole)Half of this plain pizza has been eaten. (Half)", shopValue:200, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2290} -{name:"1/2 plain pizza", itemDescription:"A cheese and tomato pizza. (Whole)Half of this plain pizza has been eaten. (Half)", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2291} -{name:"1/2 plain pizza", itemDescription:"A cheese and tomato pizza. (Whole)Half of this plain pizza has been eaten. (Half)", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2292} -{name:"Meat pizza", itemDescription:"A pizza with bits of meat on it. (Whole) Half of this meat pizza has been eaten. (Half)", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2293} -{name:"Meat pizza", itemDescription:"A pizza with bits of meat on it. (Whole) Half of this meat pizza has been eaten. (Half)", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2294} -{name:"1/2 meat pizza", itemDescription:"A pizza with bits of meat on it. (Whole) Half of this meat pizza has been eaten. (Half)", shopValue:25, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2295} -{name:"1/2 meat pizza", itemDescription:"A pizza with bits of meat on it. (Whole) Half of this meat pizza has been eaten. (Half)", shopValue:25, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2296} -{name:"Anchovy pizza", itemDescription:"A pizza with anchovies. (Whole) Half of this anchovy pizza has been eaten. (Half)", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2297} -{name:"Anchovy pizza", itemDescription:"A pizza with anchovies. (Whole) Half of this anchovy pizza has been eaten. (Half)", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2298} -{name:"1/2 anchovy pizza", itemDescription:"A pizza with anchovies. (Whole) Half of this anchovy pizza has been eaten. (Half)", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2299} -{name:"1/2 anchovy pizza", itemDescription:"A pizza with anchovies. (Whole) Half of this anchovy pizza has been eaten. (Half)", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2300} -{name:"Pineapple pizza", itemDescription:"A pizza with bits of pineapple on it. (Whole)Half of this pineapple pizza has been eaten. (Half)", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2301} -{name:"Pineapple pizza", itemDescription:"A pizza with bits of pineapple on it. (Whole)Half of this pineapple pizza has been eaten. (Half)", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2302} -{name:"1/2 p'apple pizza", itemDescription:"", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2303} -{name:"1/2 p'apple pizza", itemDescription:"", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2304} -{name:"Burnt pizza", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2305} -{name:"Burnt pizza", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2306} -{name:"Bread dough", itemDescription:"Some uncooked dough.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2307} -{name:"Bread dough", itemDescription:"Some uncooked dough.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2308} -{name:"Bread", itemDescription:"Nice crispy bread.", shopValue:24, lowAlch:9, highAlch:14, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2309} -{name:"Bread", itemDescription:"Nice crispy bread.", shopValue:24, lowAlch:9, highAlch:14, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2310} -{name:"Burnt bread", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2311} -{name:"Burnt bread", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2312} -{name:"Pie dish", itemDescription:"Deceptively pie shaped.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2313} -{name:"Pie dish", itemDescription:"Deceptively pie shaped.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2314} -{name:"Pie shell", itemDescription:"I need to find a filling for this pie.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2315} -{name:"Pie shell", itemDescription:"I need to find a filling for this pie.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2316} -{name:"Uncooked apple pie", itemDescription:"This would be much tastier cooked.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2317} -{name:"Uncooked apple pie", itemDescription:"This would be much tastier cooked.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2318} -{name:"Uncooked meat pie", itemDescription:"This would be much healthier cooked.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2319} -{name:"Uncooked meat pie", itemDescription:"This would be much healthier cooked.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2320} -{name:"Uncooked berry pie", itemDescription:"This would be much more appetising cooked.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2321} -{name:"Uncooked berry pie", itemDescription:"This would be much more appetising cooked.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2322} -{name:"Apple pie", itemDescription:"Mmm Apple pie. (Whole)Mmm half an apple pie. (Half)", shopValue:140, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2323} -{name:"Apple pie", itemDescription:"Mmm Apple pie. (Whole)Mmm half an apple pie. (Half)", shopValue:140, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2324} -{name:"Redberry pie", itemDescription:"Looks tasty. (Whole)So tasty I kept some for later. (Half)", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2325} -{name:"Redberry pie", itemDescription:"Looks tasty. (Whole)So tasty I kept some for later. (Half)", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2326} -{name:"Meat pie", itemDescription:"Not for vegetarians. (Whole)Half of it is suitable for vegetarians. (Half)", shopValue:160, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2327} -{name:"Meat pie", itemDescription:"Not for vegetarians. (Whole)Half of it is suitable for vegetarians. (Half)", shopValue:160, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2328} -{name:"Burnt pie", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2329} -{name:"Burnt pie", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2330} -{name:"Half a meat pie", itemDescription:"Not for vegetarians. (Whole)Half of it is suitable for vegetarians. (Half)", shopValue:8, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2331} -{name:"Half a meat pie", itemDescription:"Not for vegetarians. (Whole)Half of it is suitable for vegetarians. (Half)", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2332} -{name:"Half a redberry pie", itemDescription:"Looks tasty. (Whole)So tasty I kept some for later. (Half)", shopValue:6, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2333} -{name:"Half a redberry pie", itemDescription:"Looks tasty. (Whole)So tasty I kept some for later. (Half)", shopValue:6, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2334} -{name:"Half an apple pie", itemDescription:"Mmm Apple pie. (Whole)Mmm half an apple pie. (Half)", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2335} -{name:"Half an apple pie", itemDescription:"Mmm Apple pie. (Whole)Mmm half an apple pie. (Half)", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2336} -{name:"Raw oomlie", itemDescription:"Raw meat from the oomlie bird.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2337} -{name:"Raw oomlie", itemDescription:"Raw meat from the oomlie bird.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2338} -{name:"Palm leaf", itemDescription:"A thick green palm leaf used by natives to cook meat.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2339} -{name:"Palm leaf", itemDescription:"A thick green palm leaf used by natives to cook meat.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2340} -{name:"Wrapped oomlie", itemDescription:"Oomlie meat in a palm leaf pouch. It just needs to be cooked.", shopValue:16, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2341} -{name:"Wrapped oomlie", itemDescription:"Oomlie meat in a palm leaf pouch. It just needs to be cooked.", shopValue:16, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2342} -{name:"Cooked oomlie wrap", itemDescription:"Deliciously cooked oomlie meat in a palm leaf pouch.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2343} -{name:"Cooked oomlie wrap", itemDescription:"Deliciously cooked oomlie meat in a palm leaf pouch.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2344} -{name:"Burnt oomlie wrap", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2345} -{name:"Burnt oomlie wrap", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2346} -{name:"Hammer", itemDescription:"Good for hitting things!", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2347} -{name:"Hammer", itemDescription:"Good for hitting things!", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2348} -{name:"Bronze bar", itemDescription:"It's a bar of bronze.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2349} -{name:"Bronze bar", itemDescription:"It's a bar of bronze.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2350} -{name:"Iron bar", itemDescription:"It's a bar of iron.", shopValue:28, lowAlch:11, highAlch:16, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2351} -{name:"Iron bar", itemDescription:"It's a bar of iron.", shopValue:28, lowAlch:11, highAlch:16, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2352} -{name:"Steel bar", itemDescription:"It's a bar of steel.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:181.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2353} -{name:"Steel bar", itemDescription:"It's a bar of steel.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:181.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2354} -{name:"Silver bar", itemDescription:"It's a bar of silver.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:181.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2355} -{name:"Silver bar", itemDescription:"It's a bar of silver.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:181.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2356} -{name:"Gold bar", itemDescription:"It's a bar of gold.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:181.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2357} -{name:"Gold bar", itemDescription:"It's a bar of gold.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:181.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2358} -{name:"Mithril bar", itemDescription:"It's a bar of mithril.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2359} -{name:"Mithril bar", itemDescription:"It's a bar of mithril.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2360} -{name:"Adamant bar", itemDescription:"It's a bar of adamant.", shopValue:640, lowAlch:256, highAlch:384, isStackable:false, isNoteable:false, weight:204.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2361} -{name:"Adamant bar", itemDescription:"It's a bar of adamant.", shopValue:640, lowAlch:256, highAlch:384, isStackable:true, isNoteable:true, weight:204.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2362} -{name:"Rune bar", itemDescription:"It's a bar of rune.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2363} -{name:"Rune bar", itemDescription:"It's a bar of rune.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2364} -{name:"'perfect' gold bar", itemDescription:"It's a 'perfect' golden bar.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2365} -{name:"Shield left half", itemDescription:"The left half of a Dragon Square Shield.", shopValue:110000, lowAlch:44000, highAlch:66000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2366} -{name:"Shield left half", itemDescription:"The left half of a Dragon Square Shield.", shopValue:110000, lowAlch:44000, highAlch:66000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2367} -{name:"Shield right half", itemDescription:"The right half of a dragon square shield.", shopValue:750000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2368} -{name:"Shield right half", itemDescription:"The right half of a dragon square shield.", shopValue:750000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2369} -{name:"Steel studs", itemDescription:"A set of studs for leather armour.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2370} -{name:"Steel studs", itemDescription:"A set of studs for leather armour.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2371} -{name:"Ogre relic", itemDescription:"An old statue of an ogre warrior.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2372} -{name:"Relic part 1", itemDescription:"Part of an ogre relic.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2373} -{name:"Relic part 2", itemDescription:"Part of an ogre relic.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2374} -{name:"Relic part 3", itemDescription:"Part of an ogre relic.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2375} -{name:"Skavid map", itemDescription:"It's a map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2376} -{name:"Ogre tooth", itemDescription:"Very tooth-like.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2377} -{name:"Toban's key", itemDescription:"Formerly the property of the ogre, Toban", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2378} -{name:"Rock cake", itemDescription:"Handy if you want to break all your teeth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2379} -{name:"Crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2380} -{name:"Crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2381} -{name:"Crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2382} -{name:"Crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2383} -{name:"Fingernails", itemDescription:"Eeeeyeeew!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2384} -{name:"Old robe", itemDescription:"I can't wear this old thing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2385} -{name:"Unusual armour", itemDescription:"Looks kind of useless.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2386} -{name:"Damaged dagger", itemDescription:"Pointy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2387} -{name:"Tattered eye patch", itemDescription:"Useless as an eye patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2388} -{name:"Vial", itemDescription:"An empty glass vial.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2389} -{name:"Vial", itemDescription:"An empty glass vial.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2390} -{name:"Ground bat bones", itemDescription:"Let's see it fly, now!", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2391} -{name:"Ground bat bones", itemDescription:"Let's see it fly, now!", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2392} -{name:"Toban's gold", itemDescription:"It's a stolen bar of gold.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2393} -{name:"Potion", itemDescription:"This is meant to be good for spots.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2394} -{name:"Magic ogre potion", itemDescription:"A dangerous magical liquid.", shopValue:120, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2395} -{name:"Spell scroll", itemDescription:"A spell is written on this parchment.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2396} -{name:"Shaman robe", itemDescription:"A tattered old robe.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2397} -{name:"Cave nightshade", itemDescription:"Deadly.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2398} -{name:"Silverlight key", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2399} -{name:"Silverlight key", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2400} -{name:"Silverlight key", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2401} -{name:"Silverlight", itemDescription:"The magical sword 'Silverlight'. / The magical sword 'Silverlight', stained black with mushroom ink. (during Shadow of the Storm)", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:18.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2402} -{name:"Hazeel scroll", itemDescription:"Scroll containing a powerful enchantment of restoration.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2403} -{name:"Chest key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2404} -{name:"Carnillean armour", itemDescription:"Decorative armour; an heirloom of the Carnillean family.", shopValue:65, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 14.0, 8.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2405} -{name:"Hazeel's mark", itemDescription:"A sign of my commitment to Hazeel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2406} -{name:"Ball", itemDescription:"A child's ball.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2407} -{name:"Diary", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2408} -{name:"Door key", itemDescription:"A key to the Witch's house's front door. (Witch's House)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2409} -{name:"Magnet", itemDescription:"A very attractive magnet.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2410} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2411} -{name:"Saradomin cape", itemDescription:"A cape from the almighty god Saradomin.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 1.0, 1.0, 2.0, 10.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2412} -{name:"Guthix cape", itemDescription:"A cape from the almighty god Guthix.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 1.0, 1.0, 2.0, 10.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2413} -{name:"Zamorak cape", itemDescription:"A cape from the almighty god Zamorak.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 1.0, 1.0, 2.0, 10.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2414} -{name:"Saradomin staff", itemDescription:"A magical staff imbued with the power of Saradomin.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[-1.0, -1.0, 6.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2415} -{name:"Guthix staff", itemDescription:"A magical staff imbued with the power of Guthix.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, 6.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2416} -{name:"Zamorak staff", itemDescription:"A magical staff imbued with the power of Zamorak.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[-1.0, -1.0, 6.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2417} -{name:"Bronze key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2418} -{name:"Wig", itemDescription:"A grey woollen wig.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2419} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2420} -{name:"Wig", itemDescription:"A grey woollen wig.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2421} -{name:"Blue partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2422} -{name:"Key print", itemDescription:"Imprint of a key in a lump of clay.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2423} -{name:"Paste", itemDescription:"A bottle of skin coloured paste.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2424} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2425} -{name:"Burnt oomlie", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2426} -{name:"Burnt oomlie", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2427} -{name:"Attack potion (4)", itemDescription:"X doses of Attack potion.", shopValue:700, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2428} -{name:"Attack potion (4)", itemDescription:"X doses of Attack potion.", shopValue:700, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2429} -{name:"Restore potion (4)", itemDescription:"X dose(s) of restore potion.", shopValue:110, lowAlch:35, highAlch:52, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2430} -{name:"Restore potion (4)", itemDescription:"X dose(s) of restore potion.", shopValue:110, lowAlch:35, highAlch:52, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2431} -{name:"Defence potion (4)", itemDescription:"(x) doses of Defence Potion.", shopValue:1100, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2432} -{name:"Defence potion (4)", itemDescription:"(x) doses of Defence Potion.", shopValue:1100, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2433} -{name:"Prayer potion (4)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:190, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2434} -{name:"Prayer potion (4)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:190, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2435} -{name:"Super attack (4)", itemDescription:"X dose(s) of super Attack potion.", shopValue:225, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2436} -{name:"Super attack (4)", itemDescription:"X dose(s) of super Attack potion.", shopValue:225, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2437} -{name:"Fishing potion (4)", itemDescription:"X doses of Fishing potion.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2438} -{name:"Fishing potion (4)", itemDescription:"X doses of Fishing potion.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2439} -{name:"Super strength (4)", itemDescription:"X dose(s) of super Strength potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2440} -{name:"Super strength (4)", itemDescription:"X dose(s) of super Strength potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2441} -{name:"Super defence (4)", itemDescription:"X dose(s) of super Defence potion.", shopValue:330, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2442} -{name:"Super defence (4)", itemDescription:"X dose(s) of super Defence potion.", shopValue:330, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2443} -{name:"Ranging potion (4)", itemDescription:"X doses of ranging potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2444} -{name:"Ranging potion (4)", itemDescription:"X doses of ranging potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2445} -{name:"Antipoison (4)", itemDescription:"X doses of antipoison potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2446} -{name:"Antipoison (4)", itemDescription:"X doses of antipoison potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2447} -{name:"Super antipoison (4)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2448} -{name:"Super antipoison (4)", itemDescription:"X dose(s) of super anti poison potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2449} -{name:"Zamorak brew (4)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:200, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2450} -{name:"Zamorak brew (4)", itemDescription:"X dose[s] of Zamorak brew.", shopValue:200, lowAlch:70, highAlch:105, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2451} -{name:"Antifire (4)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:330, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2452} -{name:"Antifire (4)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:330, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2453} -{name:"Antifire (3)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:264, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2454} -{name:"Antifire (3)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:264, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2455} -{name:"Antifire (2)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:198, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2456} -{name:"Antifire (2)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:198, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2457} -{name:"Antifire (1)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:132, lowAlch:105, highAlch:158, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2458} -{name:"Antifire (1)", itemDescription:"X dose(s) of anti-firebreath potion.", shopValue:132, lowAlch:105, highAlch:158, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2459} -{name:"Flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2460} -{name:"Flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2461} -{name:"Red flowers", itemDescription:"Very red.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2462} -{name:"Red flowers", itemDescription:"Very red.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2463} -{name:"Blue flowers", itemDescription:"Very blue.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2464} -{name:"Blue flowers", itemDescription:"Very blue.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2465} -{name:"Yellow flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2466} -{name:"Yellow flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2467} -{name:"Purple flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2468} -{name:"Purple flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2469} -{name:"Orange flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2470} -{name:"Orange flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2471} -{name:"Flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2472} -{name:"Flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2473} -{name:"White flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2474} -{name:"White flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2475} -{name:"Black flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2476} -{name:"Black flowers", itemDescription:"A posy of flowers.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2477} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2478} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2479} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2480} -{name:"Clean lantadyme", itemDescription:"A fresh herb.", shopValue:68, lowAlch:26, highAlch:40, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2481} -{name:"Clean lantadyme", itemDescription:"A fresh herb.", shopValue:68, lowAlch:26, highAlch:40, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2482} -{name:"Lantadyme potion (unf)", itemDescription:"I need another ingredient to finish this lantadyme potion.", shopValue:68, lowAlch:26, highAlch:40, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2483} -{name:"Lantadyme potion (unf)", itemDescription:"I need another ingredient to finish this lantadyme potion.", shopValue:68, lowAlch:26, highAlch:40, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2484} -{name:"Grimy lantadyme", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2485} -{name:"Grimy lantadyme", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2486} -{name:"Blue d'hide vambraces", itemDescription:"Made from 100% real dragonhide.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 9.0, 4.0, 3.0, 5.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2487} -{name:"Blue d'hide vambraces", itemDescription:"Made from 100% real dragonhide.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 9.0, 4.0, 3.0, 5.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2488} -{name:"Red d'hide vambraces", itemDescription:"Vambraces made from 100% real dragonhide.", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, -10.0, 10.0, 5.0, 4.0, 6.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2489} -{name:"Red d'hide vambraces", itemDescription:"Vambraces made from 100% real dragonhide.", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, -10.0, 10.0, 5.0, 4.0, 6.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2490} -{name:"Black d'hide vambraces", itemDescription:"Vambraces made from 100% real dragonhide.", shopValue:4320, lowAlch:1728, highAlch:2592, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2491} -{name:"Black d'hide vambraces", itemDescription:"Vambraces made from 100% real dragonhide.", shopValue:4320, lowAlch:1728, highAlch:2592, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2492} -{name:"Blue d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:4320, lowAlch:1728, highAlch:2592, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 25.0, 19.0, 27.0, 14.0, 25.0, 20.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2493} -{name:"Blue d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:4320, lowAlch:1728, highAlch:2592, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 25.0, 19.0, 27.0, 14.0, 25.0, 20.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2494} -{name:"Red d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:5180, lowAlch:2072, highAlch:3108, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 14.0, 28.0, 22.0, 30.0, 20.0, 28.0, 25.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2495} -{name:"Red d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:5180, lowAlch:2072, highAlch:3108, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 14.0, 28.0, 22.0, 30.0, 20.0, 28.0, 25.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2496} -{name:"Black d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:6220, lowAlch:2488, highAlch:3732, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2497} -{name:"Black d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:6220, lowAlch:2488, highAlch:3732, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2498} -{name:"Blue d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:9360, lowAlch:3744, highAlch:5616, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 20.0, 45.0, 37.0, 50.0, 30.0, 45.0, 45.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2499} -{name:"Blue d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:9360, lowAlch:3744, highAlch:5616, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 20.0, 45.0, 37.0, 50.0, 30.0, 45.0, 45.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2500} -{name:"Red d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:11230, lowAlch:4492, highAlch:6738, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 25.0, 50.0, 42.0, 55.0, 40.0, 50.0, 50.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2501} -{name:"Red d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:11230, lowAlch:4492, highAlch:6738, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 25.0, 50.0, 42.0, 55.0, 40.0, 50.0, 50.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2502} -{name:"Black d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:13480, lowAlch:5392, highAlch:8088, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2503} -{name:"Black d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:13480, lowAlch:5392, highAlch:8088, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2504} -{name:"Blue dragon leather", itemDescription:"It's a piece of prepared blue dragonhide.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2505} -{name:"Blue dragon leather", itemDescription:"It's a piece of prepared blue dragonhide.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2506} -{name:"Red dragon leather", itemDescription:"It's a piece of prepared red dragonhide.", shopValue:90, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2507} -{name:"Red dragon leather", itemDescription:"It's a piece of prepared red dragonhide.", shopValue:90, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2508} -{name:"Black dragon leather", itemDescription:"It's a piece of prepared black dragonhide.", shopValue:110, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2509} -{name:"Black dragon leather", itemDescription:"It's a piece of prepared black dragonhide.", shopValue:110, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2510} -{name:"Logs", itemDescription:"A number of wooden logs.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2511} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2512} -{name:"Dragon chainbody", itemDescription:"A series of connected metal rings.", shopValue:6, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2513} -{name:"Raw shrimps", itemDescription:"I should try cooking this.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2514} -{name:"Raw shrimps", itemDescription:"I should try cooking this.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2515} -{name:"Pot of flour", itemDescription:"There is flour in this pot.", shopValue:10, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2516} -{name:"Pot of flour", itemDescription:"There is flour in this pot.", shopValue:10, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2517} -{name:"Rotten tomato", itemDescription:"Pretty smelly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2518} -{name:"Rotten tomato", itemDescription:"Pretty smelly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2519} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2520} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2521} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2522} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2523} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2524} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2525} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2526} -{name:"Toy horsey", itemDescription:"An inexpensive white/black/grey/brown toy horse.", shopValue:150, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2527} -{name:"Lamp", itemDescription:"Wonder what happens if I rub it...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2528} -{name:"Orb of light", itemDescription:"A magical sphere that glimmers within.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2529} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2530} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2531} -{name:"Iron fire arrows", itemDescription:" An easy to make, iron-headed fire arrow.", shopValue:3, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2532} -{name:"Iron fire arrows", itemDescription:" An easy to make, iron-headed fire arrow.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2533} -{name:"Steel fire arrows", itemDescription:" An easy to make, steel-headed fire arrow.", shopValue:3, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2534} -{name:"Steel fire arrows", itemDescription:" An easy to make, steel-headed fire arrow.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2535} -{name:"Mithril fire arrows", itemDescription:" An easy to make, mithril-headed fire arrow.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2536} -{name:"Mithril fire arrows", itemDescription:" An easy to make, mithril-headed fire arrow.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2537} -{name:"Adamant fire arrows", itemDescription:" An easy-to-make, Adamant-headed fire arrow.", shopValue:3, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2538} -{name:"Adamant fire arrows", itemDescription:" An easy-to-make, Adamant-headed fire arrow.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2539} -{name:"Rune fire arrows", itemDescription:"An easy to make, rune-headed fire arrow.", shopValue:3, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2540} -{name:"Rune fire arrows", itemDescription:"An easy to make, rune-headed fire arrow.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2541} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2542} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2543} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2544} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2545} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2546} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2547} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2548} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2549} -{name:"Ring of recoil", itemDescription:"An enchanted ring.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2550} -{name:"Ring of recoil", itemDescription:"An enchanted ring.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2551} -{name:"Ring of duelling (8)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2552} -{name:"Ring of duelling (8)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2553} -{name:"Ring of duelling (7)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2554} -{name:"Ring of duelling (7)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2555} -{name:"Ring of duelling (6)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2556} -{name:"Ring of duelling (6)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2557} -{name:"Ring of duelling (5)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2558} -{name:"Ring of duelling (5)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2559} -{name:"Ring of duelling (4)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2560} -{name:"Ring of duelling (4)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2561} -{name:"Ring of duelling (3)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2562} -{name:"Ring of duelling (3)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2563} -{name:"Ring of duelling (2)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2564} -{name:"Ring of duelling (2)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2565} -{name:"Ring of duelling (1)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2566} -{name:"Ring of duelling (1)", itemDescription:"An enchanted ring.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2567} -{name:"Ring of forging", itemDescription:"An enchanted ring.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2568} -{name:"Ring of forging", itemDescription:"An enchanted ring.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2569} -{name:"Ring of life", itemDescription:"An enchanted ring.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2570} -{name:"Ring of life", itemDescription:"An enchanted ring.", shopValue:3525, lowAlch:1410, highAlch:2115, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2571} -{name:"Ring of wealth", itemDescription:"An enchanted ring.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2572} -{name:"Ring of wealth", itemDescription:"An enchanted ring.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2573} -{name:"Sextant", itemDescription:"Used by navigators to find their position in RuneScape.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2574} -{name:"Watch", itemDescription:"A fine looking time piece.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2575} -{name:"Chart", itemDescription:"A navigator's chart of RuneScape.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2576} -{name:"Ranger boots", itemDescription:"Lightweight boots ideal for rangers.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 2.0, 3.0, 4.0, 2.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2577} -{name:"Ranger boots", itemDescription:"Lightweight boots ideal for rangers.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 2.0, 3.0, 4.0, 2.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2578} -{name:"Wizard boots", itemDescription:"Slightly magical boots.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2579} -{name:"Wizard boots", itemDescription:"Slightly magical boots.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2580} -{name:"Robin hood hat", itemDescription:"Endorsed by Robin Hood.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 4.0, 6.0, 8.0, 4.0, 4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2581} -{name:"Robin hood hat", itemDescription:"Endorsed by Robin Hood.", shopValue:450, lowAlch:180, highAlch:270, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 4.0, 6.0, 8.0, 4.0, 4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2582} -{name:"Black platebody (t)", itemDescription:"Black platebody with trim.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2583} -{name:"Black platebody (t)", itemDescription:"Black platebody with trim.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2584} -{name:"Black platelegs (t)", itemDescription:"Black platelegs with trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2585} -{name:"Black platelegs (t)", itemDescription:"Black platelegs with trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2586} -{name:"Black full helm (t)", itemDescription:"Black full helmet with trim.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2587} -{name:"Black full helm (t)", itemDescription:"Black full helmet with trim.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2588} -{name:"Black kiteshield (t)", itemDescription:"Black kiteshield with trim.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2589} -{name:"Black kiteshield (t)", itemDescription:"Black kiteshield with trim.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2590} -{name:"Black platebody (g)", itemDescription:"Black platebody with gold trim.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2591} -{name:"Black platebody (g)", itemDescription:"Black platebody with gold trim.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2592} -{name:"Black platelegs (g)", itemDescription:"Black platelegs with gold trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2593} -{name:"Black platelegs (g)", itemDescription:"Black platelegs with gold trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2594} -{name:"Black full helm (g)", itemDescription:"Black full helm with gold trim.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2595} -{name:"Black full helm (g)", itemDescription:"Black full helm with gold trim.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2596} -{name:"Black kiteshield (g)", itemDescription:"Black kiteshield with gold trim.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2597} -{name:"Black kiteshield (g)", itemDescription:"Black kiteshield with gold trim.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2598} -{name:"Adamant platebody (t)", itemDescription:"Adamant platebody with trim.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2599} -{name:"Adamant platebody (t)", itemDescription:"Adamant platebody with trim.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2600} -{name:"Adamant platelegs (t)", itemDescription:"These look heavy", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2601} -{name:"Adamant platelegs (t)", itemDescription:"These look heavy", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2602} -{name:"Adamant kiteshield (t)", itemDescription:"A large metal shield.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:58.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2603} -{name:"Adamant kiteshield (t)", itemDescription:"A large metal shield.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:58.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2604} -{name:"Adamant full helm (t)", itemDescription:"Adamant full helm with trim", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2605} -{name:"Adamant full helm (t)", itemDescription:"Adamant full helm with trim", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2606} -{name:"Adamant platebody (g)", itemDescription:"Adamant platebody with gold trim.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2607} -{name:"Adamant platebody (g)", itemDescription:"Adamant platebody with gold trim.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2608} -{name:"Adamant platelegs (g)", itemDescription:"Adamant platelegs with gold trim.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2609} -{name:"Adamant platelegs (g)", itemDescription:"Adamant platelegs with gold trim.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2610} -{name:"Adamant kiteshield (g)", itemDescription:"Adamant kiteshield with gold trim.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2611} -{name:"Adamant kiteshield (g)", itemDescription:"Adamant kiteshield with gold trim.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2612} -{name:"Adamant full helm (g)", itemDescription:"Adamant full helmet with gold trim.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2613} -{name:"Adamant full helm (g)", itemDescription:"Adamant full helmet with gold trim.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2614} -{name:"Rune platebody (g)", itemDescription:"Rune platebody with gold trim.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2615} -{name:"Rune platebody (g)", itemDescription:"Rune platebody with gold trim.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2616} -{name:"Rune platelegs (g)", itemDescription:"Rune platelegs with gold trim.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2617} -{name:"Rune platelegs (g)", itemDescription:"Rune platelegs with gold trim.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2618} -{name:"Rune full helm (g)", itemDescription:"Rune full helmet with gold trim.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2619} -{name:"Rune full helm (g)", itemDescription:"Rune full helmet with gold trim.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2620} -{name:"Rune kiteshield (g)", itemDescription:"Rune kiteshield with gold trim", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2621} -{name:"Rune kiteshield (g)", itemDescription:"Rune kiteshield with gold trim", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2622} -{name:"Rune platebody (t)", itemDescription:"Rune platebody with trim.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2623} -{name:"Rune platebody (t)", itemDescription:"Rune platebody with trim.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2624} -{name:"Rune platelegs (t)", itemDescription:"Rune platelegs with trim!", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2625} -{name:"Rune platelegs (t)", itemDescription:"Rune platelegs with trim!", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2626} -{name:"Rune full helm (t)", itemDescription:"Rune full helmet with trim.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2627} -{name:"Rune full helm (t)", itemDescription:"Rune full helmet with trim.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2628} -{name:"Rune kiteshield (t)", itemDescription:"A large, metal shield with a nice trim.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2629} -{name:"Rune kiteshield (t)", itemDescription:"A large, metal shield with a nice trim.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2630} -{name:"Highwayman mask", itemDescription:"Your money or your life!", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2631} -{name:"Highwayman mask", itemDescription:"Your money or your life!", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2632} -{name:"Blue beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2633} -{name:"Blue beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2634} -{name:"Black beret", itemDescription:"Parlez-vous francais?(Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2635} -{name:"Black beret", itemDescription:"Parlez-vous francais?(Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2636} -{name:"White beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2637} -{name:"White beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2638} -{name:"Tan cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2639} -{name:"Tan cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2640} -{name:"Dark cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2641} -{name:"Dark cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2642} -{name:"Black cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2643} -{name:"Black cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2644} -{name:"Red headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2645} -{name:"Red headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2646} -{name:"Black headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2647} -{name:"Black headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2648} -{name:"Brown headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2649} -{name:"Brown headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2650} -{name:"Pirate's hat", itemDescription:"Shiver me timbers!", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2651} -{name:"Pirate's hat", itemDescription:"Shiver me timbers!", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2652} -{name:"Zamorak platebody", itemDescription:"Rune platebody in the colours of Zamorak.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2653} -{name:"Zamorak platebody", itemDescription:"Rune platebody in the colours of Zamorak.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2654} -{name:"Zamorak platelegs", itemDescription:"Rune platelegs in the colours of Zamorak.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2655} -{name:"Zamorak platelegs", itemDescription:"Rune platelegs in the colours of Zamorak.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2656} -{name:"Zamorak full helm", itemDescription:"A full helmet in the colours of Zamorak.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2657} -{name:"Zamorak full helm", itemDescription:"A full helmet in the colours of Zamorak.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2658} -{name:"Zamorak kiteshield", itemDescription:"A Rune kiteshield in the colours of Zamorak.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2659} -{name:"Zamorak kiteshield", itemDescription:"A Rune kiteshield in the colours of Zamorak.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2660} -{name:"Saradomin platebody", itemDescription:"Rune platebody in the colours of Saradomin.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2661} -{name:"Saradomin platebody", itemDescription:"Rune platebody in the colours of Saradomin.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2662} -{name:"Saradomin platelegs", itemDescription:"Rune platelegs in the colours of Saradomin!", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2663} -{name:"Saradomin platelegs", itemDescription:"Rune platelegs in the colours of Saradomin!", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2664} -{name:"Saradomin full helm", itemDescription:"Rune full helmet in the colours of Saradomin.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2665} -{name:"Saradomin full helm", itemDescription:"Rune full helmet in the colours of Saradomin.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2666} -{name:"Saradomin kiteshield", itemDescription:"Rune kiteshield in the colours of Saradomin.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2667} -{name:"Saradomin kiteshield", itemDescription:"Rune kiteshield in the colours of Saradomin.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2668} -{name:"Guthix platebody", itemDescription:"Rune platebody in the colours of Guthix.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2669} -{name:"Guthix platebody", itemDescription:"Rune platebody in the colours of Guthix.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2670} -{name:"Guthix platelegs", itemDescription:"Rune platelegs in the colours of Guthix.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2671} -{name:"Guthix platelegs", itemDescription:"Rune platelegs in the colours of Guthix.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2672} -{name:"Guthix full helm", itemDescription:"A rune full helmet in the colours of Guthix.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2673} -{name:"Guthix full helm", itemDescription:"A rune full helmet in the colours of Guthix.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2674} -{name:"Guthix kiteshield", itemDescription:"Rune kiteshield in the colours of Guthix.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2675} -{name:"Guthix kiteshield", itemDescription:"Rune kiteshield in the colours of Guthix.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2676} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2677} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2678} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2679} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2680} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2681} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2682} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2683} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2684} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2685} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2686} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2687} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2688} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2689} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2690} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2691} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2692} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2693} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2694} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2695} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2696} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2697} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2698} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2699} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2700} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2701} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2702} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2703} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2704} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2705} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2706} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2707} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2708} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2709} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2710} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2711} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2712} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2713} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2714} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2715} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2716} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2717} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2718} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2719} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2720} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2721} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2722} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2723} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2724} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2725} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2726} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2727} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2728} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2729} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2730} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2731} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2732} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2733} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2734} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2735} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2736} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2737} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2738} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2739} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2740} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2741} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2742} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2743} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2744} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2745} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2746} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2747} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2748} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2749} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2750} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2751} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2752} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2753} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2754} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2755} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2756} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2757} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2758} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2759} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2760} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2761} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2762} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2763} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2764} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2765} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2766} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2767} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2768} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2769} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2770} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2771} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2772} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2773} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2774} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2775} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2776} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2777} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2778} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2779} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2780} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2781} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2782} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2783} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2784} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2785} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2786} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2787} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2788} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2789} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2790} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2791} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2792} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2793} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2794} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2795} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2796} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2797} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2798} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2799} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2800} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2801} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2802} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2803} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2804} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2805} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2806} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2807} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2808} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2809} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2810} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2811} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2812} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2813} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2814} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2815} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2816} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2817} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2818} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2819} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2820} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2821} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2822} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2823} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2824} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2825} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2826} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2827} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2828} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2829} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2830} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2831} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2832} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2833} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2834} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2835} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2836} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2837} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2838} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2839} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2840} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2841} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2842} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2843} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2844} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2845} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2846} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2847} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2848} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2849} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2850} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2851} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2852} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2853} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2854} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2855} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2856} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2857} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2858} -{name:"Wolf bones", itemDescription:"Bones of a recently slain wolf.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2859} -{name:"Wolf bones", itemDescription:"Bones of a recently slain wolf.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2860} -{name:"Wolfbone arrowtips", itemDescription:"I can make an ogre arrow with these.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2861} -{name:"Achey tree logs", itemDescription:"These logs are longer than normal.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2862} -{name:"Achey tree logs", itemDescription:"These logs are longer than normal.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2863} -{name:"Ogre arrow shaft", itemDescription:"A wooden arrow shaft", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2864} -{name:"Flighted ogre arrow", itemDescription:"An ogre arrow with four flights attached.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2865} -{name:"Ogre arrow", itemDescription:"A large ogre arrow with a bone tip.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2866} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2867} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2868} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2869} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2870} -{name:"Ogre bellows", itemDescription:"A large pair of ogre bellows. If filled with gas (1-3): A large pair of ogre bellows, it has x load(s) of swamp gas in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2871} -{name:"Ogre bellows (3)", itemDescription:"A large pair of ogre bellows. If filled with gas (1-3): A large pair of ogre bellows, it has x load(s) of swamp gas in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2872} -{name:"Ogre bellows (2)", itemDescription:"A large pair of ogre bellows. If filled with gas (1-3): A large pair of ogre bellows, it has x load(s) of swamp gas in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2873} -{name:"Ogre bellows (1)", itemDescription:"A large pair of ogre bellows. If filled with gas (1-3): A large pair of ogre bellows, it has x load(s) of swamp gas in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2874} -{name:"Bloated toad", itemDescription:"An inflated toad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2875} -{name:"Raw chompy", itemDescription:"I need to cook this first.", shopValue:85, lowAlch:34, highAlch:51, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2876} -{name:"Raw chompy", itemDescription:"I need to cook this first.", shopValue:85, lowAlch:34, highAlch:51, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2877} -{name:"Cooked chompy", itemDescription:"It might look delicious to an ogre.Roasted chompy bird.", shopValue:130, lowAlch:52, highAlch:78, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2878} -{name:"Cooked chompy", itemDescription:"It might look delicious to an ogre.Roasted chompy bird.", shopValue:130, lowAlch:52, highAlch:78, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2879} -{name:"Ruined chompy", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2880} -{name:"Ruined chompy", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2881} -{name:"Seasoned chompy", itemDescription:"It has been deliciously seasoned to taste wonderful for ogres.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2882} -{name:"Ogre bow", itemDescription:"More powerful than a normal bow, useful against large game birds.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2883} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2884} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2885} -{name:"Battered book", itemDescription:"Book of the elemental shield.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2886} -{name:"Battered key", itemDescription:"An old battered key. (Elemental Workshop I)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2887} -{name:"A stone bowl", itemDescription:"This is an empty stone bowl. / This is a stone bowl full of lava.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2888} -{name:"A stone bowl", itemDescription:"This is an empty stone bowl. / This is a stone bowl full of lava.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2889} -{name:"Elemental shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2890} -{name:"Elemental shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2891} -{name:"Elemental ore", itemDescription:"This needs refining.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2892} -{name:"Elemental bar", itemDescription:"It's a bar of refined elemental ore.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2893} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2894} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2895} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2896} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2897} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2898} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2899} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2900} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2901} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2902} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2903} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2904} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2905} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2906} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2907} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2908} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2909} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2910} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2911} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2912} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2913} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2914} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2915} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2916} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2917} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2918} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2919} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2920} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2921} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2922} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2923} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2924} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2925} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2926} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2927} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2928} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2929} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2930} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2931} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2932} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2933} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2934} -{name:"Boots", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2935} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2936} -{name:"Robe top", itemDescription:"The ultimate in gnome design, now in [colour].", shopValue:650, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2937} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2938} -{name:"Robe bottoms", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2939} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2940} -{name:"Hat", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2941} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2942} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2943} -{name:"Golden key", itemDescription:"A key made from solid gold", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2944} -{name:"Iron key", itemDescription:"A key made of solid iron.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2945} -{name:"Golden tinderbox", itemDescription:"A replica tinderbox made of solid gold.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2946} -{name:"Golden candle", itemDescription:"A replica candle made of solid gold.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2947} -{name:"Golden pot", itemDescription:"A replica pot made of solid gold.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2948} -{name:"Golden hammer", itemDescription:"Celebrating the Golden Joystick awards for Jagex.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2949} -{name:"Golden feather", itemDescription:"", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2950} -{name:"Golden needle", itemDescription:"A replica needle made of solid gold.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2951} -{name:"Wolfbane", itemDescription:"A silver dagger that can prevent werewolves changing form.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:4.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 10.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2952} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2953} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2954} -{name:"Moonlight mead", itemDescription:"A foul smelling brew.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2955} -{name:"Moonlight mead", itemDescription:"A foul smelling brew.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2956} -{name:"Druid pouch", itemDescription:"A druid pouch.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2957} -{name:"Druid pouch", itemDescription:"A druid pouch.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2958} -{name:"Rotten food", itemDescription:"Erhhh! It stinks.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2959} -{name:"Rotten food", itemDescription:"Erhhh! It stinks.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2960} -{name:"Silver sickle", itemDescription:"It's a silver sickle.", shopValue:175, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2961} -{name:"Silver sickle", itemDescription:"It's a silver sickle.", shopValue:175, lowAlch:70, highAlch:105, isStackable:true, isNoteable:true, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2962} -{name:"Silver sickle (b)", itemDescription:"It's a blessed silver sickle.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2963} -{name:"Washing bowl", itemDescription:"Used for washing your face, amongst other things.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2964} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2965} -{name:"Mirror", itemDescription:"A small mirror, probably used for grooming.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2966} -{name:"Journal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2967} -{name:"Druidic spell", itemDescription:"A druidic spell given to you freely by the spirit of Filliman Tarlock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2968} -{name:"A used spell", itemDescription:"A used druidic spell given to you freely by the spirit of Filliman Tarlock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2969} -{name:"Mort myre fungus", itemDescription:"A mushroom from the swamps of Mort Myre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2970} -{name:"Mort myre fungus", itemDescription:"A mushroom from the swamps of Mort Myre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2971} -{name:"Mort myre stem", itemDescription:"A cutting from a budding branch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2972} -{name:"Mort myre stem", itemDescription:"A cutting from a budding branch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2973} -{name:"Mort myre pear", itemDescription:"A pear picked from a dying bush in Mort Myre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2974} -{name:"Mort myre pear", itemDescription:"A pear picked from a dying bush in Mort Myre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2975} -{name:"Sickle mould", itemDescription:"Used to make sickles.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2976} -{name:"Sickle mould", itemDescription:"Used to make sickles.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2977} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2978} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2979} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2980} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2981} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2982} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2983} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2984} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2985} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2986} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2987} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2988} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2989} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2990} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2991} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2992} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2993} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2994} -{name:"Chompy bird hat", itemDescription:"A symbol of your chompy bird hunting prowess.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2995} -{name:"Agility arena ticket", itemDescription:"I can exchange these for further experience or items.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2996} -{name:"Pirate's hook", itemDescription:"You should see the shark...", shopValue:89, lowAlch:35, highAlch:53, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2997} -{name:"Clean toadflax", itemDescription:"A fresh herb.", shopValue:48, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2998} -{name:"Clean toadflax", itemDescription:"A fresh herb.", shopValue:48, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:2999} -{name:"Clean snapdragon", itemDescription:"A fresh herb.", shopValue:59, lowAlch:23, highAlch:35, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3000} -{name:"Clean snapdragon", itemDescription:"A fresh herb.", shopValue:59, lowAlch:23, highAlch:35, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3001} -{name:"Toadflax potion (unf)", itemDescription:"I need another ingredient to finish this toadflax potion.", shopValue:48, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3002} -{name:"Toadflax potion (unf)", itemDescription:"I need another ingredient to finish this toadflax potion.", shopValue:48, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3003} -{name:"Snapdragon potion (unf)", itemDescription:"I need another ingredient to finish this snapdragon potion.", shopValue:59, lowAlch:23, highAlch:35, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3004} -{name:"Snapdragon potion (unf)", itemDescription:"I need another ingredient to finish this snapdragon potion.", shopValue:59, lowAlch:23, highAlch:35, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3005} -{name:"Firework", itemDescription:"Keep out of reach of children and familiars.", shopValue:60, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3006} -{name:"Firework", itemDescription:"Keep out of reach of children and familiars.", shopValue:60, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3007} -{name:"Energy potion (4)", itemDescription:"X doses of energy potion.", shopValue:146, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3008} -{name:"Energy potion (4)", itemDescription:"X doses of energy potion.", shopValue:146, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3009} -{name:"Energy potion (3)", itemDescription:"X doses of energy potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3010} -{name:"Energy potion (3)", itemDescription:"X doses of energy potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3011} -{name:"Energy potion (2)", itemDescription:"X doses of energy potion.", shopValue:72, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3012} -{name:"Energy potion (2)", itemDescription:"X doses of energy potion.", shopValue:72, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3013} -{name:"Energy potion (1)", itemDescription:"X doses of energy potion.", shopValue:36, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3014} -{name:"Energy potion (1)", itemDescription:"X doses of energy potion.", shopValue:36, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3015} -{name:"Super energy (4)", itemDescription:"X dose(s) of super energy potion.", shopValue:300, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3016} -{name:"Super energy (4)", itemDescription:"X dose(s) of super energy potion.", shopValue:300, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3017} -{name:"Super energy (3)", itemDescription:"X dose(s) of super energy potion.", shopValue:230, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3018} -{name:"Super energy (3)", itemDescription:"X dose(s) of super energy potion.", shopValue:230, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3019} -{name:"Super energy (2)", itemDescription:"X dose(s) of super energy potion.", shopValue:160, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3020} -{name:"Super energy (2)", itemDescription:"X dose(s) of super energy potion.", shopValue:160, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3021} -{name:"Super energy (1)", itemDescription:"X dose(s) of super energy potion.", shopValue:90, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3022} -{name:"Super energy (1)", itemDescription:"X dose(s) of super energy potion.", shopValue:90, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3023} -{name:"Super restore (4)", itemDescription:"X dose(s) of super restore potion.", shopValue:300, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3024} -{name:"Super restore (4)", itemDescription:"X dose(s) of super restore potion.", shopValue:300, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3025} -{name:"Super restore (3)", itemDescription:"X dose(s) of super restore potion.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3026} -{name:"Super restore (3)", itemDescription:"X dose(s) of super restore potion.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3027} -{name:"Super restore (2)", itemDescription:"X dose(s) of super restore potion.", shopValue:180, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3028} -{name:"Super restore (2)", itemDescription:"X dose(s) of super restore potion.", shopValue:180, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3029} -{name:"Super restore (1)", itemDescription:"X dose(s) of super restore potion.", shopValue:120, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3030} -{name:"Super restore (1)", itemDescription:"X dose(s) of super restore potion.", shopValue:120, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3031} -{name:"Agility potion (4)", itemDescription:"(X) doses of Agility potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3032} -{name:"Agility potion (4)", itemDescription:"(X) doses of Agility potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3033} -{name:"Agility potion (3)", itemDescription:"(X) doses of Agility potion.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3034} -{name:"Agility potion (3)", itemDescription:"(X) doses of Agility potion.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3035} -{name:"Agility potion (2)", itemDescription:"(X) doses of Agility potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3036} -{name:"Agility potion (2)", itemDescription:"(X) doses of Agility potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3037} -{name:"Agility potion (1)", itemDescription:"(X) doses of Agility potion.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3038} -{name:"Agility potion (1)", itemDescription:"(X) doses of Agility potion.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3039} -{name:"Magic potion (4)", itemDescription:"X dose(s) of Magic potion.", shopValue:300, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3040} -{name:"Magic potion (4)", itemDescription:"X dose(s) of Magic potion.", shopValue:300, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3041} -{name:"Magic potion (3)", itemDescription:"X dose(s) of Magic potion.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3042} -{name:"Magic potion (3)", itemDescription:"X dose(s) of Magic potion.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3043} -{name:"Magic potion (2)", itemDescription:"X dose(s) of Magic potion.", shopValue:200, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3044} -{name:"Magic potion (2)", itemDescription:"X dose(s) of Magic potion.", shopValue:200, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3045} -{name:"Magic potion (1)", itemDescription:"X dose(s) of Magic potion.", shopValue:150, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3046} -{name:"Magic potion (1)", itemDescription:"X dose(s) of Magic potion.", shopValue:150, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3047} -{name:"Pirate's hook", itemDescription:"You should see the shark...", shopValue:89, lowAlch:35, highAlch:53, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3048} -{name:"Grimy toadflax", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3049} -{name:"Grimy toadflax", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3050} -{name:"Grimy snapdragon", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3051} -{name:"Grimy snapdragon", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3052} -{name:"Lava battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3053} -{name:"Mystic lava staff", itemDescription:"It's a slightly magical stick.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3054} -{name:"Lava battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3055} -{name:"Mystic lava staff", itemDescription:"It's a slightly magical stick.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3056} -{name:"Mime mask", itemDescription:"A mime would wear this.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3057} -{name:"Mime top", itemDescription:"A mime would wear these.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3058} -{name:"Mime legs", itemDescription:"A mime would wear these.", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3059} -{name:"Mime gloves", itemDescription:"A mime would wear these.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3060} -{name:"Mime boots", itemDescription:"A mime would wear these.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3061} -{name:"Strange box", itemDescription:"It seems to be humming...", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3062} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3063} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3064} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3065} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3066} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3067} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3068} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3069} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3070} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3071} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3072} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3073} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3074} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3075} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3076} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3077} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3078} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3079} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3080} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3081} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3082} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3083} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3084} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3085} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3086} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3087} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3088} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3089} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3090} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3091} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3092} -{name:"Black dart", itemDescription:"A deadly throwing dart with a black tip.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3093} -{name:"Black dart (p)", itemDescription:"A deadly throwing dart with a black tip.", shopValue:18, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3094} -{name:"Bronze claws", itemDescription:"A set of fighting claws.", shopValue:24, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:9.0, bonuses:[3.0, 4.0, -4.0, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3095} -{name:"Iron claws", itemDescription:"A set of fighting claws.", shopValue:25, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[4.0, 6.0, -4.0, 0.0, 0.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3096} -{name:"Steel claws", itemDescription:"A set of fighting claws.", shopValue:88, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:9.0, bonuses:[8.0, 11.0, -4.0, 0.0, 0.0, 3.0, 6.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3097} -{name:"Black claws", itemDescription:"A set of fighting claws.", shopValue:180, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:6.0, bonuses:[10.0, 14.0, -4.0, 0.0, 0.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3098} -{name:"Mithril claws", itemDescription:"A set of fighting claws.", shopValue:238, lowAlch:190, highAlch:285, isStackable:false, isNoteable:false, weight:9.0, bonuses:[11.0, 16.0, -4.0, 0.0, 0.0, 4.0, 8.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3099} -{name:"Adamant claws", itemDescription:"A set of fighting claws.", shopValue:600, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:0.0, bonuses:[18.0, 23.0, -4.0, 0.0, 0.0, 6.0, 12.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3100} -{name:"Rune claws", itemDescription:"A set of fighting claws.", shopValue:6000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[26.0, 38.0, -4.0, 0.0, 0.0, 10.0, 19.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3101} -{name:"Combination", itemDescription:"The combination to Burthorpe Castle's equipment room.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3102} -{name:"Iou", itemDescription:"The guard wrote the IOU on the back of some paper.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3103} -{name:"Secret way map", itemDescription:"This map shows the secret way up to Death Plateau.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3104} -{name:"Rock climbing boots", itemDescription:"Boots made for general climbing; rocks a specialty.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3105} -{name:"Rock climbing boots", itemDescription:"Boots made for general climbing; rocks a specialty.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3106} -{name:"Spiked boots", itemDescription:"Climbing boots with spikes.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3107} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3108} -{name:"Stone ball", itemDescription:"Place on the stone mechanism in the right order to open the door.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3109} -{name:"Stone ball", itemDescription:"Place on the stone mechanism in the right order to open the door.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3110} -{name:"Stone ball", itemDescription:"Place on the stone mechanism in the right order to open the door.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3111} -{name:"Stone ball", itemDescription:"Place on the stone mechanism in the right order to open the door.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3112} -{name:"Stone ball", itemDescription:"Place on the stone mechanism in the right order to open the door.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3113} -{name:"Certificate", itemDescription:"Entrance certificate to the Imperial Guard.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3114} -{name:"Bronze claws", itemDescription:"A set of fighting claws.", shopValue:24, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:9.0, bonuses:[3.0, 4.0, -4.0, 0.0, 0.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3115} -{name:"Iron claws", itemDescription:"A set of fighting claws.", shopValue:25, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:9.0, bonuses:[4.0, 6.0, -4.0, 0.0, 0.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3116} -{name:"Steel claws", itemDescription:"A set of fighting claws.", shopValue:88, lowAlch:70, highAlch:105, isStackable:true, isNoteable:true, weight:9.0, bonuses:[8.0, 11.0, -4.0, 0.0, 0.0, 3.0, 6.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3117} -{name:"Black claws", itemDescription:"A set of fighting claws.", shopValue:180, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:6.0, bonuses:[10.0, 14.0, -4.0, 0.0, 0.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3118} -{name:"Mithril claws", itemDescription:"A set of fighting claws.", shopValue:238, lowAlch:190, highAlch:285, isStackable:true, isNoteable:true, weight:9.0, bonuses:[11.0, 16.0, -4.0, 0.0, 0.0, 4.0, 8.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3119} -{name:"Adamant claws", itemDescription:"A set of fighting claws.", shopValue:600, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:0.0, bonuses:[18.0, 23.0, -4.0, 0.0, 0.0, 6.0, 12.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3120} -{name:"Rune claws", itemDescription:"A set of fighting claws.", shopValue:6000, lowAlch:4800, highAlch:7200, isStackable:true, isNoteable:true, weight:9.0, bonuses:[26.0, 38.0, -4.0, 0.0, 0.0, 10.0, 19.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3121} -{name:"Granite shield", itemDescription:"A solid stone shield.", shopValue:56000, lowAlch:22400, highAlch:33600, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -12.0, -8.0, 40.0, 42.0, 38.0, 0.0, 65.0, 50.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3122} -{name:"Shaikahan bones", itemDescription:"Large glistening bones which glow with a pale yellow aura.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3123} -{name:"Shaikahan bones", itemDescription:"Large glistening bones which glow with a pale yellow aura.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3124} -{name:"Jogre bones", itemDescription:"Fairly big bones which smell distinctly of Jogre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3125} -{name:"Jogre bones", itemDescription:"Fairly big bones which smell distinctly of Jogre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3126} -{name:"Burnt jogre bones", itemDescription:"These blackened Jogre bones have been somehow burnt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3127} -{name:"Pasty jogre bones", itemDescription:"Burnt Jogre bones smothered with raw Karambwanji Paste.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3128} -{name:"Pasty jogre bones", itemDescription:"Burnt Jogre bones smothered with raw Karambwanji Paste.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3129} -{name:"Marinated j' bones", itemDescription:"Burnt Jogre bones marinated in lovely Karambwanji sauce. Perfect.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3130} -{name:"Pasty jogre bones", itemDescription:"Burnt Jogre bones smothered with raw Karambwanji Paste.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3131} -{name:"Pasty jogre bones", itemDescription:"Burnt Jogre bones smothered with raw Karambwanji Paste.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3132} -{name:"Marinated j' bones", itemDescription:"Burnt Jogre bones marinated in lovely Karambwanji sauce. Perfect.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3133} -{name:"Granite shield", itemDescription:"A solid stone shield.", shopValue:56000, lowAlch:22400, highAlch:33600, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -12.0, -8.0, 40.0, 42.0, 38.0, 0.0, 65.0, 50.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3134} -{name:"Prison key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3135} -{name:"Cell key 1", itemDescription:"The key to the troll prison.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3136} -{name:"Cell key 2", itemDescription:"The key to the troll prison.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3137} -{name:"Potato cactus", itemDescription:"How am I supposed to eat that?!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3138} -{name:"Potato cactus", itemDescription:"How am I supposed to eat that?!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3139} -{name:"Dragon chainbody", itemDescription:"A series of connected metal rings.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3140} -{name:"Dragon chainbody", itemDescription:"A series of connected metal rings.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3141} -{name:"Raw karambwan", itemDescription:"A raw green octopus.", shopValue:440, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3142} -{name:"Raw karambwan", itemDescription:"A raw green octopus.", shopValue:440, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3143} -{name:"Cooked karambwan", itemDescription:"Cooked octopus.", shopValue:460, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3144} -{name:"Cooked karambwan", itemDescription:"Cooked octopus.", shopValue:460, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3145} -{name:"Poison karambwan", itemDescription:"Cooked octopus. It looks poorly cooked and quite dangerous.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3146} -{name:"Cooked karambwan", itemDescription:"Cooked octopus.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3147} -{name:"Burnt karambwan", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3148} -{name:"Burnt karambwan", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3149} -{name:"Raw karambwanji", itemDescription:"Small brightly coloured tropical fish.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3150} -{name:"Karambwanji", itemDescription:"Small brightly coloured tropical fish.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3151} -{name:"Karambwan paste", itemDescription:"Freshly made octopus paste. It smells quite nauseating.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3152} -{name:"Karambwan paste", itemDescription:"Freshly made octopus paste. It smells quite nauseating.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3153} -{name:"Karambwan paste", itemDescription:"Freshly made octopus paste. It smells quite nauseating.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3154} -{name:"Karambwanji paste", itemDescription:"This paste smells of raw fish.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3155} -{name:"Karambwanji paste", itemDescription:"This paste smells of raw fish.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3156} -{name:"Karambwan vessel", itemDescription:"A wide bodied and thin necked vessel, encrusted with sea salt. / The Karambwan Vessel is loaded with Karambwanji", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3157} -{name:"Karambwan vessel", itemDescription:"A wide bodied and thin necked vessel, encrusted with sea salt. / The Karambwan Vessel is loaded with Karambwanji", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3158} -{name:"Karambwan vessel", itemDescription:"A wide bodied and thin necked vessel, encrusted with sea salt. / The Karambwan Vessel is loaded with Karambwanji", shopValue:40, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3159} -{name:"Karambwan vessel", itemDescription:"A wide bodied and thin necked vessel, encrusted with sea salt. / The Karambwan Vessel is loaded with Karambwanji", shopValue:40, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3160} -{name:"Crafting manual", itemDescription:"A set of instructions explaining how to construct a Karambwan vessel", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3161} -{name:"Sliced banana", itemDescription:"You swear you had more than three slices before.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3162} -{name:"Sliced banana", itemDescription:"You swear you had more than three slices before.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3163} -{name:"Karamjan rum", itemDescription:"A very strong spirit brewed in Karamja.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3164} -{name:"Karamjan rum", itemDescription:"A very strong spirit brewed in Karamja.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3165} -{name:"Monkey corpse", itemDescription:"It's the body of a dead monkey.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3166} -{name:"Monkey skin", itemDescription:"It's the skin of a (hopefully) dead monkey.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3167} -{name:"Seaweed sandwich", itemDescription:"A 'Seaweed in Monkey Skin' sandwich. Perfect for statue repair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3168} -{name:"Stuffed monkey", itemDescription:"A body of a dead monkey, tastefully stuffed with seaweed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3169} -{name:"Bronze spear (kp)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3170} -{name:"Iron spear (kp)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3171} -{name:"Steel spear (kp)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3172} -{name:"Mithril spear (kp)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3173} -{name:"Adamant spear (kp)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3174} -{name:"Rune spear (kp)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3175} -{name:"Dragon spear (kp)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3176} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3177} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3178} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3179} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3180} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3181} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3182} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3183} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3184} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3185} -{name:"Monkey bones", itemDescription:"These are small/medium sized monkey bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3186} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3187} -{name:"Cleaning cloth", itemDescription:"A piece of silk which can be used to remove poison from weapons.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3188} -{name:"Cleaning cloth", itemDescription:"A piece of silk which can be used to remove poison from weapons.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3189} -{name:"Bronze halberd", itemDescription:"A bronze halberd.", shopValue:104, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:3.0, bonuses:[7.0, 8.0, 0.0, -4.0, 0.0, -1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3190} -{name:"Bronze halberd", itemDescription:"A bronze halberd.", shopValue:104, lowAlch:32, highAlch:48, isStackable:true, isNoteable:true, weight:3.0, bonuses:[7.0, 8.0, 0.0, -4.0, 0.0, -1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3191} -{name:"Iron halberd", itemDescription:"An iron halberd.", shopValue:364, lowAlch:145, highAlch:218, isStackable:false, isNoteable:false, weight:31.0, bonuses:[9.0, 12.0, 0.0, -4.0, 0.0, -1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3192} -{name:"Iron halberd", itemDescription:"An iron halberd.", shopValue:364, lowAlch:145, highAlch:218, isStackable:true, isNoteable:true, weight:31.0, bonuses:[9.0, 12.0, 0.0, -4.0, 0.0, -1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3193} -{name:"Steel halberd", itemDescription:"A steel halberd.", shopValue:1300, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:3.0, bonuses:[14.0, 19.0, 0.0, -4.0, 0.0, -1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3194} -{name:"Steel halberd", itemDescription:"A steel halberd.", shopValue:1300, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:3.0, bonuses:[14.0, 19.0, 0.0, -4.0, 0.0, -1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3195} -{name:"Black halberd", itemDescription:"A black halberd.", shopValue:2496, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:3.0, bonuses:[19.0, 25.0, 0.0, -4.0, 0.0, -1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3196} -{name:"Black halberd", itemDescription:"A black halberd.", shopValue:2496, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:3.0, bonuses:[19.0, 25.0, 0.0, -4.0, 0.0, -1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3197} -{name:"Mithril halberd", itemDescription:"A mithril halberd.", shopValue:3380, lowAlch:1352, highAlch:2028, isStackable:false, isNoteable:false, weight:27.0, bonuses:[22.0, 28.0, 0.0, -4.0, 0.0, -1.0, 2.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3198} -{name:"Mithril halberd", itemDescription:"A mithril halberd.", shopValue:3380, lowAlch:1352, highAlch:2028, isStackable:true, isNoteable:true, weight:27.0, bonuses:[22.0, 28.0, 0.0, -4.0, 0.0, -1.0, 2.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3199} -{name:"Adamant halberd", itemDescription:"An adamant halberd.", shopValue:8320, lowAlch:3328, highAlch:4992, isStackable:false, isNoteable:false, weight:36.0, bonuses:[28.0, 41.0, 0.0, -4.0, 0.0, -1.0, 3.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3200} -{name:"Adamant halberd", itemDescription:"An adamant halberd.", shopValue:8320, lowAlch:3328, highAlch:4992, isStackable:true, isNoteable:true, weight:36.0, bonuses:[28.0, 41.0, 0.0, -4.0, 0.0, -1.0, 3.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3201} -{name:"Rune halberd", itemDescription:"A rune halberd.", shopValue:128000, lowAlch:51200, highAlch:76800, isStackable:false, isNoteable:false, weight:3.0, bonuses:[48.0, 67.0, 0.0, -4.0, 0.0, -1.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3202} -{name:"Rune halberd", itemDescription:"A rune halberd.", shopValue:128000, lowAlch:51200, highAlch:76800, isStackable:true, isNoteable:true, weight:3.0, bonuses:[48.0, 67.0, 0.0, -4.0, 0.0, -1.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3203} -{name:"Dragon halberd", itemDescription:"A dragon halberd.", shopValue:325000, lowAlch:130000, highAlch:195000, isStackable:false, isNoteable:false, weight:31.0, bonuses:[70.0, 95.0, 0.0, -4.0, 0.0, -1.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3204} -{name:"Dragon halberd", itemDescription:"A dragon halberd.", shopValue:325000, lowAlch:130000, highAlch:195000, isStackable:true, isNoteable:true, weight:31.0, bonuses:[70.0, 95.0, 0.0, -4.0, 0.0, -1.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3205} -{name:"King's message", itemDescription:"A summons from King Lathas.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3206} -{name:"Iorwerth's message", itemDescription:"A letter for King Lathas from Lord Iorwerth.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3207} -{name:"Crystal pendant", itemDescription:"Lord Iorwerth's crystal pendant.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3208} -{name:"Sulphur", itemDescription:"A piece of chemical formation.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3209} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3210} -{name:"Limestone", itemDescription:"Some limestone.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3211} -{name:"Limestone", itemDescription:"Some limestone.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3212} -{name:"Quicklime", itemDescription:"Some quicklime.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3213} -{name:"Pot of quicklime", itemDescription:"A pot of ground quicklime.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3214} -{name:"Ground sulphur", itemDescription:"A pile of ground sulphur.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3215} -{name:"Barrel", itemDescription:"An empty barrel/A Splendid barrel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3216} -{name:"Barrel", itemDescription:"An empty barrel/A Splendid barrel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3217} -{name:"Barrel bomb", itemDescription:"A fused barrel full of fire oil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3218} -{name:"Barrel bomb", itemDescription:"A fused barrel full of fire oil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3219} -{name:"Barrel of coal-tar", itemDescription:"A barrel full of coal-tar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3220} -{name:"Barrel of naphtha", itemDescription:"A barrel full of naphtha.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3221} -{name:"Naphtha mix", itemDescription:"A barrel full of naphtha and sulphur.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3222} -{name:"Naphtha mix", itemDescription:"A barrel full of naphtha and sulphur.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3223} -{name:"Strip of cloth", itemDescription:"A strip of cloth.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3224} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3225} -{name:"Raw rabbit", itemDescription:"Might taste better cooked.", shopValue:67, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3226} -{name:"Raw rabbit", itemDescription:"Might taste better cooked.", shopValue:67, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3227} -{name:"Cooked rabbit", itemDescription:"Mmm this looks tasty.", shopValue:19, lowAlch:7, highAlch:11, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3228} -{name:"Cooked rabbit", itemDescription:"Mmm this looks tasty.", shopValue:19, lowAlch:7, highAlch:11, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3229} -{name:"Big book of bangs", itemDescription:"A book by Mel Achy.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3230} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3231} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3232} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3233} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3234} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3235} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3236} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3237} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3238} -{name:"Bark", itemDescription:"Bark from a hollow tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3239} -{name:"Bark", itemDescription:"Bark from a hollow tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3240} -{name:"Man", itemDescription:" One of the citizens of Al-Kharid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3241} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3242} -{name:"Farmer", itemDescription:"He grows crops in the area.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3243} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3244} -{name:"Warrior woman", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3245} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3246} -{name:"Rogue", itemDescription:"Rogueish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3247} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3248} -{name:"Guard", itemDescription:"Varies, refer below.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3249} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3250} -{name:"Knight of ardougne", itemDescription:"A member of Ardougne's militia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3251} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3252} -{name:"Watchman", itemDescription:"The strong arm of the law.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3253} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3254} -{name:"Paladin", itemDescription:"A holy warrior.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3255} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3256} -{name:"Gnome", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3257} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3258} -{name:"Hero", itemDescription:"Heroic!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3259} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3260} -{name:"Goutweed", itemDescription:"A pale, tough looking herb.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3261} -{name:"Troll thistle", itemDescription:"It's tough and spiky.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3262} -{name:"Dried thistle", itemDescription:"It'll be easier to grind now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3263} -{name:"Ground thistle", itemDescription:"It's ready for mixing.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3264} -{name:"Troll potion", itemDescription:"It's part of Eadgar's plan.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3265} -{name:"Drunk parrot", itemDescription:"It's rather drunk.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3266} -{name:"Dirty robe", itemDescription:"It's dirty and smelly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3267} -{name:"Fake man", itemDescription:"It's good enough to fool a troll.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3268} -{name:"Storeroom key", itemDescription:"The key to the Trollheim storeroom.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3269} -{name:"Alco-chunks", itemDescription:"Pineapple chunks dipped in a strong liquor.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3270} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3271} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3272} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3273} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3274} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3275} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3276} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3277} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3278} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3279} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3280} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3281} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3282} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3283} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3284} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3285} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3286} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3287} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3288} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3289} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3290} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3291} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3292} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3293} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3294} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3295} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3296} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3297} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3298} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3299} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3300} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3301} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3302} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3303} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3304} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3305} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3306} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3307} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3308} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3309} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3310} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3311} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3312} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3313} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3314} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3315} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3316} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3317} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3318} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3319} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3320} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3321} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3322} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3323} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3324} -{name:"Vampire dust", itemDescription:"That used to be a vampyre!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3325} -{name:"Vampire dust", itemDescription:"That used to be a vampyre!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3326} -{name:"Myre snelm", itemDescription:"An easy-to-make, marshy-coloured, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3327} -{name:"Myre snelm", itemDescription:"An easy-to-make, marshy-coloured, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3328} -{name:"Blood'n'tar snelm", itemDescription:" A red and black pointed snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3329} -{name:"Blood'n'tar snelm", itemDescription:" A red and black pointed snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3330} -{name:"Ochre snelm", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3331} -{name:"Ochre snelm", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3332} -{name:"Bruise blue snelm", itemDescription:"A moody blue snail shell helmet, mort myre snail shell helm", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3333} -{name:"Bruise blue snelm", itemDescription:"A moody blue snail shell helmet, mort myre snail shell helm", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3334} -{name:"Broken bark snelm", itemDescription:"An easy-to-make, orange-and-bark coloured, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3335} -{name:"Broken bark snelm", itemDescription:"An easy-to-make, orange-and-bark coloured, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3336} -{name:"Myre snelm", itemDescription:"An easy-to-make, marshy-coloured, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3337} -{name:"Myre snelm", itemDescription:"An easy-to-make, marshy-coloured, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3338} -{name:"Blood'n'tar snelm", itemDescription:" A red and black pointed snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3339} -{name:"Blood'n'tar snelm", itemDescription:" A red and black pointed snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3340} -{name:"Ochre snelm", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3341} -{name:"Ochre snelm", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell helmet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3342} -{name:"Bruise blue snelm", itemDescription:"A moody blue snail shell helmet, mort myre snail shell helm", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3343} -{name:"Bruise blue snelm", itemDescription:"A moody blue snail shell helmet, mort myre snail shell helm", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3344} -{name:"Blamish myre shell", itemDescription:"An easy-to-make, 'myre'-coloured, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3345} -{name:"Blamish myre shell", itemDescription:"An easy-to-make, 'myre'-coloured, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3346} -{name:"Blamish red shell", itemDescription:"An easy-to-make, red, Mort myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3347} -{name:"Blamish red shell", itemDescription:"An easy-to-make, red, Mort myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3348} -{name:"Blamish ochre shell", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3349} -{name:"Blamish ochre shell", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3350} -{name:"Blamish blue shell", itemDescription:"An easy-to-make, blue, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3351} -{name:"Blamish blue shell", itemDescription:"An easy-to-make, blue, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3352} -{name:"Blamish bark shell", itemDescription:"An easy-to-make, bark-coloured, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3353} -{name:"Blamish bark shell", itemDescription:"An easy-to-make, bark-coloured, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3354} -{name:"Blamish myre shell", itemDescription:"An easy-to-make, 'myre'-coloured, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3355} -{name:"Blamish myre shell", itemDescription:"An easy-to-make, 'myre'-coloured, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3356} -{name:"Blamish red shell", itemDescription:"An easy-to-make, red, Mort myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3357} -{name:"Blamish red shell", itemDescription:"An easy-to-make, red, Mort myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3358} -{name:"Blamish ochre shell", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3359} -{name:"Blamish ochre shell", itemDescription:"An easy-to-make, muddy-yellow, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3360} -{name:"Blamish blue shell", itemDescription:"An easy-to-make, blue, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3361} -{name:"Blamish blue shell", itemDescription:"An easy-to-make, blue, Mort Myre snail shell; looks protective.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3362} -{name:"Thin snail", itemDescription:"The thin, slimy corpse of a deceased giant snail.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3363} -{name:"Thin snail", itemDescription:"The thin, slimy corpse of a deceased giant snail.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3364} -{name:"Lean snail", itemDescription:"The lean, slimy corspe of a dead snail.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3365} -{name:"Lean snail", itemDescription:"The lean, slimy corspe of a dead snail.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3366} -{name:"Fat snail", itemDescription:"The fat, slimy, corpse of a deceased giant snail.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3367} -{name:"Fat snail", itemDescription:"The fat, slimy, corpse of a deceased giant snail.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3368} -{name:"Thin snail meat", itemDescription:"A succulently slimy piece of sumptuous snail.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3369} -{name:"Thin snail meat", itemDescription:"A succulently slimy piece of sumptuous snail.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3370} -{name:"Lean snail meat", itemDescription:"A succulently slimey slice of sumptuous snail.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3371} -{name:"Lean snail meat", itemDescription:"A succulently slimey slice of sumptuous snail.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3372} -{name:"Fat snail meat", itemDescription:"A succulently slimy slice of sumptuous snail.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3373} -{name:"Fat snail meat", itemDescription:"A succulently slimy slice of sumptuous snail.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3374} -{name:"Burnt snail", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3375} -{name:"Burnt snail", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3376} -{name:"Sample bottle", itemDescription:"An empty sample bottle.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3377} -{name:"Sample bottle", itemDescription:"An empty sample bottle.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3378} -{name:"Slimy eel", itemDescription:"A slime covered eel - yuck!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3379} -{name:"Slimy eel", itemDescription:"A slime covered eel - yuck!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3380} -{name:"Cooked slimy eel", itemDescription:"A cooked slimy eel - not delicious, but pretty nutritious.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3381} -{name:"Cooked slimy eel", itemDescription:"A cooked slimy eel - not delicious, but pretty nutritious.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3382} -{name:"Burnt eel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3383} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3384} -{name:"Splitbark helm", itemDescription:"A wooden helmet.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3385} -{name:"Splitbark helm", itemDescription:"A wooden helmet.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3386} -{name:"Splitbark body", itemDescription:"Provides good protection.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 10.0, -10.0, 36.0, 26.0, 42.0, 15.0, 0.0, 40.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3387} -{name:"Splitbark body", itemDescription:"Provides good protection.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, 10.0, -10.0, 36.0, 26.0, 42.0, 15.0, 0.0, 40.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3388} -{name:"Splitbark legs", itemDescription:"These should protect my legs.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 7.0, -7.0, 22.0, 20.0, 25.0, 10.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3389} -{name:"Splitbark legs", itemDescription:"These should protect my legs.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, 7.0, -7.0, 22.0, 20.0, 25.0, 10.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3390} -{name:"Splitbark gauntlets", itemDescription:"These should keep my hands safe.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3391} -{name:"Splitbark gauntlets", itemDescription:"These should keep my hands safe.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3392} -{name:"Splitbark boots", itemDescription:"Wooden foot protection.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3393} -{name:"Splitbark boots", itemDescription:"Wooden foot protection.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3394} -{name:"Diary", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3395} -{name:"Loar remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:135.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3396} -{name:"Loar remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:135.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3397} -{name:"Phrin remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3398} -{name:"Phrin remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3399} -{name:"Riyl remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3400} -{name:"Riyl remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3401} -{name:"Asyn remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3402} -{name:"Asyn remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3403} -{name:"Fiyr remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3404} -{name:"Fiyr remains", itemDescription:"The remains of a deadly shade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3405} -{name:"Ash potion (unf)", itemDescription:"I need another ingredient to finish this potion.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3406} -{name:"Ash potion (unf)", itemDescription:"I need another ingredient to finish this potion.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3407} -{name:"Serum 207 (4)", itemDescription:"X doses serum 207 as described in Herbi Flax's diary.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3408} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:14, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3409} -{name:"Serum 207 (3)", itemDescription:"X doses serum 207 as described in Herbi Flax's diary.", shopValue:13, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3410} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:13, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3411} -{name:"Serum 207 (2)", itemDescription:"X doses serum 207 as described in Herbi Flax's diary.", shopValue:13, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3412} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:13, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3413} -{name:"Serum 207 (1)", itemDescription:"X doses serum 207 as described in Herbi Flax's diary.", shopValue:11, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3414} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:11, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3415} -{name:"Serum 208 (4)", itemDescription:"X doses permanent serum 208 as described in Herbi Flax's diary.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3416} -{name:"Serum 208 (3)", itemDescription:"X doses permanent serum 208 as described in Herbi Flax's diary.", shopValue:13, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3417} -{name:"Serum 208 (2)", itemDescription:"X doses permanent serum 208 as described in Herbi Flax's diary.", shopValue:13, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3418} -{name:"Serum 208 (1)", itemDescription:"X doses permanent serum 208 as described in Herbi Flax's diary.", shopValue:11, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3419} -{name:"Limestone brick", itemDescription:"A well carved limestone brick.", shopValue:21, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3420} -{name:"Limestone brick", itemDescription:"A well carved limestone brick.", shopValue:21, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3421} -{name:"Olive oil (4)", itemDescription:"X doses of olive oil.", shopValue:22, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3422} -{name:"Olive oil (4)", itemDescription:"X doses of olive oil.", shopValue:22, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3423} -{name:"Olive oil (3)", itemDescription:"X doses of olive oil.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3424} -{name:"Olive oil (3)", itemDescription:"X doses of olive oil.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3425} -{name:"Olive oil (2)", itemDescription:"X doses of olive oil.", shopValue:17, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3426} -{name:"Olive oil (2)", itemDescription:"X doses of olive oil.", shopValue:17, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3427} -{name:"Olive oil (1)", itemDescription:"X doses of olive oil.", shopValue:14, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3428} -{name:"Olive oil (1)", itemDescription:"X doses of olive oil.", shopValue:14, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3429} -{name:"Sacred oil (4)", itemDescription:"Sacred oil.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3430} -{name:"Sacred oil (4)", itemDescription:"Sacred oil.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3431} -{name:"Sacred oil (3)", itemDescription:"Sacred oil.", shopValue:90, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3432} -{name:"Sacred oil (3)", itemDescription:"Sacred oil.", shopValue:90, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3433} -{name:"Sacred oil (2)", itemDescription:"Sacred oil.", shopValue:75, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3434} -{name:"Sacred oil (2)", itemDescription:"Sacred oil.", shopValue:75, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3435} -{name:"Sacred oil (1)", itemDescription:"Sacred oil.", shopValue:60, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3436} -{name:"Sacred oil (1)", itemDescription:"Sacred oil.", shopValue:60, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3437} -{name:"Pyre logs", itemDescription:"Funeral logs used for burning loars.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3438} -{name:"Pyre logs", itemDescription:"Funeral logs used for burning loars.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3439} -{name:"Oak pyre logs", itemDescription:"Oak logs prepared with sacred oil for a funeral pyre.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3440} -{name:"Oak pyre logs", itemDescription:"Oak logs prepared with sacred oil for a funeral pyre.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3441} -{name:"Willow pyre logs", itemDescription:"Willow logs prepared with sacred oil for a funeral pyre.", shopValue:80, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3442} -{name:"Willow pyre logs", itemDescription:"Willow logs prepared with sacred oil for a funeral pyre.", shopValue:80, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3443} -{name:"Maple pyre logs", itemDescription:"Maple logs prepared with sacred oil for a funeral pyre.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3444} -{name:"Maple pyre logs", itemDescription:"Maple logs prepared with sacred oil for a funeral pyre.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3445} -{name:"Yew pyre logs", itemDescription:"Yew logs prepared with sacred oil for a funeral pyre.", shopValue:320, lowAlch:192, highAlch:288, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3446} -{name:"Yew pyre logs", itemDescription:"Yew logs prepared with sacred oil for a funeral pyre.", shopValue:320, lowAlch:192, highAlch:288, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3447} -{name:"Magic pyre logs", itemDescription:"Magic logs prepared with sacred oil for a funeral pyre.", shopValue:640, lowAlch:256, highAlch:384, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3448} -{name:"Magic pyre logs", itemDescription:"Magic logs prepared with sacred oil for a funeral pyre.", shopValue:640, lowAlch:256, highAlch:384, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3449} -{name:"Bronze key red", itemDescription:"A bronze key with a blood-red painted eyelet. (Shades of Mort'ton)", shopValue:81, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3450} -{name:"Bronze key brown", itemDescription:"A bronze key with a brown painted eyelet. (Shades of Mort'ton)", shopValue:82, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3451} -{name:"Bronze key crimson", itemDescription:"A bronze key with a crimson painted eyelet. (Shades of Mort'ton)", shopValue:83, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3452} -{name:"Bronze key black", itemDescription:"A bronze key with a black painted eyelet. (Shades of Mort'ton)", shopValue:84, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3453} -{name:"Bronze key purple", itemDescription:"A bronze key with a purple painted eyelet. (Shades of Mort'ton)", shopValue:85, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3454} -{name:"Steel key red", itemDescription:"A steel key with a blood-red painted eyelet. (Shades of Mort'ton)", shopValue:86, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3455} -{name:"Steel key brown", itemDescription:"A steel key with a brown painted eyelet. (Shades of Mort'ton)", shopValue:87, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3456} -{name:"Steel key crimson", itemDescription:"A steel key with a crimson painted eyelet. (Shades of Mort'ton)", shopValue:88, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3457} -{name:"Steel key black", itemDescription:"A steel key with a black painted eyelet. (Shades of Mort'ton)", shopValue:89, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3458} -{name:"Steel key purple", itemDescription:"A steel key with a purple painted eyelet. (Shades of Mort'ton)", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3459} -{name:"Black key red", itemDescription:"A black key with a blood-red painted eyelet. (Shades of Mort'ton)", shopValue:91, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3460} -{name:"Black key brown", itemDescription:"A black key with a brown painted eyelet. (Shades of Mort'ton)", shopValue:92, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3461} -{name:"Black key crimson", itemDescription:"A black key with a crimson painted eyelet. (Shades of Mort'ton)", shopValue:93, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3462} -{name:"Black key black", itemDescription:"A black key with a black painted eyelet. (Shades of Mort'ton)", shopValue:94, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3463} -{name:"Black key purple", itemDescription:"A black key with a purple painted eyelet. (Shades of Mort'ton)", shopValue:95, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3464} -{name:"Silver key red", itemDescription:"A silver key with a blood-red painted eyelet. (Shades of Mort'ton)", shopValue:96, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3465} -{name:"Silver key brown", itemDescription:"A silver key with a brown painted eyelet. (Shades of Mort'ton)", shopValue:97, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3466} -{name:"Silver key crimson", itemDescription:"A silver key with a crimson painted eyelet. (Shades of Mort'ton)", shopValue:98, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3467} -{name:"Silver key black", itemDescription:"A silver key with a black painted eyelet. (Shades of Mort'ton)", shopValue:99, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3468} -{name:"Silver key purple", itemDescription:"A silver key with a purple painted eyelet. (Shades of Mort'ton)", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3469} -{name:"Fine cloth", itemDescription:"Amazingly untouched by time.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3470} -{name:"Fine cloth", itemDescription:"Amazingly untouched by time.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3471} -{name:"Black plateskirt (t)", itemDescription:"Black plateskirt with trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3472} -{name:"Black plateskirt (g)", itemDescription:"Black plateskirt with gold trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3473} -{name:"Adamant plateskirt (t)", itemDescription:"Adamant plateskirt with trim.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3474} -{name:"Adamant plateskirt (g)", itemDescription:"Adamant plateskirt with gold trim.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3475} -{name:"Rune plateskirt (g)", itemDescription:"Rune plateskirt with gold trim.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3476} -{name:"Rune plateskirt (t)", itemDescription:"Rune plateskirt with trim.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3477} -{name:"Zamorak plateskirt", itemDescription:"Rune plateskirt in the colours of Zamorak.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3478} -{name:"Saradomin plateskirt", itemDescription:"Rune plateskirt in the colours of Saradomin.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3479} -{name:"Guthix plateskirt", itemDescription:"Rune plateskirt in the colours of Guthix.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3480} -{name:"Gilded platebody", itemDescription:"Rune platebody with complete gold trim & plating.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3481} -{name:"Gilded platebody", itemDescription:"Rune platebody with complete gold trim & plating.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3482} -{name:"Gilded platelegs", itemDescription:"Rune platelegs with gold plate.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3483} -{name:"Gilded platelegs", itemDescription:"Rune platelegs with gold plate.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3484} -{name:"Gilded plateskirt", itemDescription:"Rune plateskirt with gold plate.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3485} -{name:"Gilded full helm", itemDescription:"Rune full helmet with gold plate.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3486} -{name:"Gilded full helm", itemDescription:"Rune full helmet with gold plate.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3487} -{name:"Gilded kiteshield", itemDescription:"Rune kiteshield with gold plate.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 45.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3488} -{name:"Gilded kiteshield", itemDescription:"Rune kiteshield with gold plate.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 45.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3489} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3490} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3491} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3492} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3493} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3494} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3495} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3496} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3497} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3498} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3499} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3500} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3501} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3502} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3503} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3504} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3505} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3506} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3507} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3508} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3509} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3510} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3511} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3512} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3513} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3514} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3515} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3516} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3517} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3518} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3519} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3520} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3521} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3522} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3523} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3524} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3525} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3526} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3527} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3528} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3529} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3530} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3531} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3532} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3533} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3534} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3535} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3536} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3537} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3538} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3539} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3540} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3541} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3542} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3543} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3544} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3545} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3546} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3547} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3548} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3549} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3550} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3551} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3552} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3553} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3554} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3555} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3556} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3557} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3558} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3559} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3560} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3561} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3562} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3563} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3564} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3565} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3566} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3567} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3568} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3569} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3570} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3571} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3572} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3573} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3574} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3575} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3576} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3577} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3578} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3579} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3580} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3581} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3582} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3583} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3584} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3585} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3586} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3587} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3588} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3589} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3590} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3591} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3592} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3593} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3594} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3595} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3596} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3597} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3598} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3599} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3600} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3601} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3602} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3603} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3604} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3605} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3606} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3607} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3608} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3609} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3610} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3611} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3612} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3613} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3614} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3615} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3616} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3617} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3618} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3619} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3620} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3621} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3622} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3623} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3624} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3625} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3626} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3627} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3628} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3629} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3630} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3631} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3632} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3633} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3634} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3635} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3636} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3637} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3638} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3639} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3640} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3641} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3642} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3643} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3644} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3645} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3646} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3647} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3648} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3649} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3650} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3651} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3652} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3653} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3654} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3655} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3656} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3657} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3658} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3659} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3660} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3661} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3662} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3663} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3664} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3665} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3666} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3667} -{name:"Black plateskirt (t)", itemDescription:"Black plateskirt with trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3668} -{name:"Black plateskirt (g)", itemDescription:"Black plateskirt with gold trim.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3669} -{name:"Adamant plateskirt (t)", itemDescription:"Adamant plateskirt with trim.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3670} -{name:"Adamant plateskirt (g)", itemDescription:"Adamant plateskirt with gold trim.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3671} -{name:"Rune plateskirt (g)", itemDescription:"Rune plateskirt with gold trim.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3672} -{name:"Rune plateskirt (t)", itemDescription:"Rune plateskirt with trim.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3673} -{name:"Zamorak plateskirt", itemDescription:"Rune plateskirt in the colours of Zamorak.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3674} -{name:"Saradomin plateskirt", itemDescription:"Rune plateskirt in the colours of Saradomin.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3675} -{name:"Guthix plateskirt", itemDescription:"Rune plateskirt in the colours of Guthix.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3676} -{name:"Gilded plateskirt", itemDescription:"Rune plateskirt with gold plate.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3677} -{name:"Flamtaer hammer", itemDescription:"An exquisitely shaped tool specially designed for fixing temples.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3678} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3679} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3680} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3681} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3682} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3683} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3684} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3685} -{name:"Fremennik", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3686} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3687} -{name:"Unstrung lyre", itemDescription:"It's almost a musical instrument.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3688} -{name:"Lyre", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3689} -{name:"Enchanted lyre", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3690} -{name:"Enchanted lyre (1)", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3691} -{name:"Branch", itemDescription:"I can use this to make a lyre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3692} -{name:"Golden fleece", itemDescription:"I can spin this into golden wool.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3693} -{name:"Golden wool", itemDescription:"I can use this to make a lyre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3694} -{name:"Pet rock", itemDescription:"The lowest maintenance pet you will ever have.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3695} -{name:"Hunters' talisman", itemDescription:"Talisman to bind the Draugen.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3696} -{name:"Hunters' talisman", itemDescription:"Talisman to bind the Draugen.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3697} -{name:"Exotic flower", itemDescription:"Some flowers from a distant land.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3698} -{name:"Fremennik ballad", itemDescription:"A hauntingly beautiful love ballad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3699} -{name:"Sturdy boots", itemDescription:"A pair of sturdy made custom boots.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3700} -{name:"Tracking map", itemDescription:"Could probably be a bit clearer?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3701} -{name:"Custom bow string", itemDescription:"A finely crafted string for a custom bow", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3702} -{name:"Unusual fish", itemDescription:"An extremely odd, non-edible fish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3703} -{name:"Sea fishing map", itemDescription:"Map showing the best fishing spots out at sea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3704} -{name:"Weather forecast", itemDescription:"An estimate of expected local weather conditions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3705} -{name:"Champions token", itemDescription:"Shows the wearer is worthy of the Champions table.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3706} -{name:"Legendary cocktail", itemDescription:"Probably the greatest cocktail in the world.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3707} -{name:"Fiscal statement", itemDescription:"A signed statement promising a reduction on sales tax.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3708} -{name:"Promissory note", itemDescription:"A legally binding contract promising not to enter the longhall.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3709} -{name:"Warriors' contract", itemDescription:"This employment contract is for a warrior to act as a bodyguard.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3710} -{name:"Keg of beer", itemDescription:"A lot of beer in a barrel. Beer in a barrel - a specialty of the Fremennik Province.", shopValue:0, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3711} -{name:"Low alcohol keg", itemDescription:"Suspiciously close to beer, but without the side effects.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3712} -{name:"Strange object", itemDescription:"It's some kind of weird little parcel thing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3713} -{name:"Lit strange object", itemDescription:"It's some kind of weird little parcel thing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3714} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3715} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3716} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3717} -{name:"Magnet", itemDescription:"A very attractive magnet.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3718} -{name:"Thread", itemDescription:"Use with a needle to make clothes.", shopValue:0, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3719} -{name:"Pick", itemDescription:"A small pick for cracking small objects.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3720} -{name:"Ship toy", itemDescription:"Might be fun to play with in the bath.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3721} -{name:"Full bucket", itemDescription:"It's a bucket of salty water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3722} -{name:"4/5ths full bucket", itemDescription:"This bucket is eighty percent full. It has a 5 painted on it's side.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3723} -{name:"3/5ths full bucket", itemDescription:"This bucket is sixty percent full. It has a 5 painted on its side.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3724} -{name:"2/5ths full bucket", itemDescription:"This bucket is forty percent full. It has a 5 painted on its side.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3725} -{name:"1/5ths full bucket", itemDescription:"This bucket is twenty percent full. It has a 5 painted on its side.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3726} -{name:"Empty bucket", itemDescription:"It's an empty bucket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3727} -{name:"Frozen bucket", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3728} -{name:"Full jug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3729} -{name:"2/3rds full jug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3730} -{name:"1/3rds full jug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3731} -{name:"Empty jug", itemDescription:"This jug is empty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3732} -{name:"Frozen jug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3733} -{name:"Vase", itemDescription:"A vessel for holding plants.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3734} -{name:"Vase of water", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3735} -{name:"Frozen vase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3736} -{name:"Vase lid", itemDescription:"This looks like a lid to some kind of container.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3737} -{name:"Sealed vase", itemDescription:"An unusually shaped vase. You can see something glinting inside.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3738} -{name:"Sealed vase", itemDescription:"An unusually shaped vase. You can see something glinting inside.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3739} -{name:"Sealed vase", itemDescription:"An unusually shaped vase. You can see something glinting inside.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3740} -{name:"Frozen key", itemDescription:"A small, cold key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3741} -{name:"Red herring", itemDescription:"The colouring on it seems to be some kind of sticky goop.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3742} -{name:"Red disk", itemDescription:"A red coloured disk, apparently made out of wood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3743} -{name:"Wooden disk", itemDescription:"A simple looking disk made of wood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3744} -{name:"Seer's key", itemDescription:"The key to leave the Seer's house.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3745} -{name:"Sticky red goop", itemDescription:"Yup, it's sticky, it's red and it's goop.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3746} -{name:"Sticky red goop", itemDescription:"Yup, it's sticky, it's red and it's goop.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3747} -{name:"Fremennik helm", itemDescription:"A sturdy helm worn only by Fremennik clan members.", shopValue:6500, lowAlch:2600, highAlch:3900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3748} -{name:"Archer helm", itemDescription:"This helmet is worn by archers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 6.0, 6.0, 8.0, 10.0, 6.0, 6.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3749} -{name:"Archer helm", itemDescription:"This helmet is worn by archers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 6.0, 6.0, 8.0, 10.0, 6.0, 6.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3750} -{name:"Berserker helm", itemDescription:"This helmet is worn by berserkers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -5.0, -5.0, 31.0, 29.0, 33.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3751} -{name:"Berserker helm", itemDescription:"This helmet is worn by berserkers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -5.0, -5.0, 31.0, 29.0, 33.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3752} -{name:"Warrior helm", itemDescription:"This helm is worn by warriors.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 5.0, 0.0, -5.0, -5.0, 31.0, 33.0, 29.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3753} -{name:"Warrior helm", itemDescription:"This helm is worn by warriors.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 5.0, 0.0, -5.0, -5.0, 31.0, 33.0, 29.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3754} -{name:"Farseer helm", itemDescription:"This helm is worn by farseers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-5.0, -5.0, -5.0, 6.0, -5.0, 8.0, 10.0, 12.0, 6.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3755} -{name:"Farseer helm", itemDescription:"This helm is worn by farseers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-5.0, -5.0, -5.0, 6.0, -5.0, 8.0, 10.0, 12.0, 6.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3756} -{name:"Fremennik blade", itemDescription:"A sword used only by Fremennik warriors.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3757} -{name:"Fremennik shield", itemDescription:"A shield worn by Fremennik warriors.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3758} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3759} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3760} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3761} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3762} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3763} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3764} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3765} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3766} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3767} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3768} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3769} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3770} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3771} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3772} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3773} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3774} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3775} -{name:"Fremennik shirt", itemDescription:"The latest in Fremennik fashion.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3776} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3777} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3778} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3779} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3780} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3781} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3782} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3783} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3784} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3785} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3786} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3787} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3788} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3789} -{name:"Fremennik cloak", itemDescription:"The latest fashion in Rellekka.", shopValue:325, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3790} -{name:"Fremennik boots", itemDescription:"Very stylish!", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3791} -{name:"Fremennik boots", itemDescription:"Very stylish!", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3792} -{name:"Fremennik robe", itemDescription:"The latest fashion of Rellekka.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3793} -{name:"Fremennik robe", itemDescription:"The latest fashion of Rellekka.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3794} -{name:"Fremennik skirt", itemDescription:"The latest fashion of Rellekka.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3795} -{name:"Fremennik skirt", itemDescription:"The latest fashion of Rellekka.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3796} -{name:"Fremennik hat", itemDescription:"A silly pointed hat.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3797} -{name:"Fremennik hat", itemDescription:"A silly pointed hat.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3798} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3799} -{name:"Gloves", itemDescription:"", shopValue:650, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3800} -{name:"Keg of beer", itemDescription:"A lot of beer in a barrel. Beer in a barrel - a specialty of the Fremennik Province.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3801} -{name:"Keg of beer", itemDescription:"A lot of beer in a barrel. Beer in a barrel - a specialty of the Fremennik Province.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3802} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:26, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3803} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:26, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3804} -{name:"Tankard", itemDescription:"A big cup for a big thirst.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3805} -{name:"Tankard", itemDescription:"A big cup for a big thirst.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3806} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3807} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3808} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3809} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3810} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3811} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3812} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3813} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3814} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3815} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3816} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3817} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3818} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3819} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3820} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3821} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3822} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3823} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3824} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3825} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3826} -{name:"Saradomin page 1", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3827} -{name:"Saradomin page 2", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3828} -{name:"Saradomin page 3", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3829} -{name:"Saradomin page 4", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3830} -{name:"Zamorak page 1", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3831} -{name:"Zamorak page 2", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3832} -{name:"Zamorak page 3", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3833} -{name:"Zamorak page 4", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3834} -{name:"Guthix page 1", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3835} -{name:"Guthix page 2", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3836} -{name:"Guthix page 3", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3837} -{name:"Guthix page 4", itemDescription:"This seems to have been torn from a book...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3838} -{name:"Damaged book", itemDescription:"An incomplete book of Saradomin/Guthix/Zamorak/Bandos/ArmadylAn incomplete ancient book", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3839} -{name:"Holy book", itemDescription:"The Holy book of Saradomin.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 8.0, 8.0, 8.0, 8.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3840} -{name:"Damaged book", itemDescription:"An incomplete book of Saradomin/Guthix/Zamorak/Bandos/ArmadylAn incomplete ancient book", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3841} -{name:"Unholy book", itemDescription:"The unholy book of Zamorak.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[8.0, 8.0, 8.0, 8.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3842} -{name:"Damaged book", itemDescription:"An incomplete book of Saradomin/Guthix/Zamorak/Bandos/ArmadylAn incomplete ancient book", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3843} -{name:"Book of balance", itemDescription:"The holy book of Guthix.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3844} -{name:"Journal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3845} -{name:"Diary", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3846} -{name:"Manual", itemDescription:"Looks like some kind of manual.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3847} -{name:"Lighthouse key", itemDescription:"A key to the front door of the lighthouse. (Horror from the Deep)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3848} -{name:"Rusty casket", itemDescription:"Looks old and rusty...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3849} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3850} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3851} -{name:"Unholy symbol", itemDescription:"An unholy symbol of Zamorak.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3852} -{name:"Games necklace (8)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3853} -{name:"Games necklace (8)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3854} -{name:"Games necklace (7)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3855} -{name:"Games necklace (7)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3856} -{name:"Games necklace (6)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3857} -{name:"Games necklace (6)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3858} -{name:"Games necklace (5)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3859} -{name:"Games necklace (5)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3860} -{name:"Games necklace (4)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3861} -{name:"Games necklace (4)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3862} -{name:"Games necklace (3)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3863} -{name:"Games necklace (3)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3864} -{name:"Games necklace (2)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3865} -{name:"Games necklace (2)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3866} -{name:"Games necklace (1)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3867} -{name:"Games necklace (1)", itemDescription:"An enchanted necklace.", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3868} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3869} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3870} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3871} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3872} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3873} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3874} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3875} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3876} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3877} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3878} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3879} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3880} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3881} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3882} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3883} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3884} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3885} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3886} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3887} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3888} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3889} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3890} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3891} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3892} -{name:"Stool", itemDescription:"", shopValue:800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3893} -{name:"Awful anthem", itemDescription:"It's not very good.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3894} -{name:"Good anthem", itemDescription:"Much better.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3895} -{name:"Treaty", itemDescription:"Just needs the King's signature.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3896} -{name:"Giant nib", itemDescription:"For making a giant pen.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3897} -{name:"Giant pen", itemDescription:"The king should be able to use this.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3898} -{name:"Iron sickle", itemDescription:"Not as good as a pet frog.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3899} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3900} -{name:"Ghrim's book", itemDescription:"Managing Thine Kingdom for Noobes by A. Ghrim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3901} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3902} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3903} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3904} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3905} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3906} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3907} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3908} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3909} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3910} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3911} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3912} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3913} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3914} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3915} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3916} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3917} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3918} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3919} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3920} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3921} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3922} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3923} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3924} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3925} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3926} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3927} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3928} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3929} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3930} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3931} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3932} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3933} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3934} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3935} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3936} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3937} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3938} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3939} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3940} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3941} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3942} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3943} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3944} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3945} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3946} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3947} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3948} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3949} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3950} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3951} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3952} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3953} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3954} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3955} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3956} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3957} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3958} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3959} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3960} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3961} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3962} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3963} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3964} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3965} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3966} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3967} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3968} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3969} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3970} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3971} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3972} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3973} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3974} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3975} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3976} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3977} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3978} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3979} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3980} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3981} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3982} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3983} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3984} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3985} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3986} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3987} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3988} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3989} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3990} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3991} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3992} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3993} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3994} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3995} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3996} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3997} -{name:"Sliding button", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3998} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:3999} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4000} -{name:"Hardy gout tuber", itemDescription:"A pile of gout tubers suitable for use in mountainous terrain.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4001} -{name:"Spare controls", itemDescription:"It looks like some kind of control panel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4002} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4003} -{name:"Gnome royal seal", itemDescription:"It's the official Gnome Royal Seal, signed by King Narode Shareen.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4004} -{name:"Narnode's orders", itemDescription:"Unreadable orders handwritten by King Narnode Shareen.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4005} -{name:"Monkey dentures", itemDescription:"Magical monkey talking dentures! What more can we say? Ook!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4006} -{name:"Enchanted bar", itemDescription:"A gold bar with a talkative monkey spirit.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4007} -{name:"Eye of gnome", itemDescription:"It's... the eye of a gnome! Now what on earth could one do with this?", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4008} -{name:"Eye of gnome", itemDescription:"It's... the eye of a gnome! Now what on earth could one do with this?", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4009} -{name:"Monkey magic", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4010} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4011} -{name:"Monkey nuts", itemDescription:"They are Monkey Nuts. Yummy.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4012} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4013} -{name:"Monkey bar", itemDescription:"It's a monkey bar. It looks highly nutritious.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4014} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4015} -{name:"Banana stew", itemDescription:"It's a bowl full of mushy banana", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4016} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4017} -{name:"Monkey wrench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4018} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4019} -{name:"M'amulet mould", itemDescription:"It's an amulet mould shaped like a monkey head.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4020} -{name:"Monkeyspeak amulet", itemDescription:"It's an Amulet of Monkey Speak. It makes vague chattering noises.", shopValue:550, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4021} -{name:"M'speak amulet", itemDescription:"It's an unstrung Amulet of Monkey Speak. It makes vague chattering noises.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4022} -{name:"Monkey talisman", itemDescription:"A magic talisman in shape of a monkey head.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4023} -{name:"Ninja monkey greegree", itemDescription:"", shopValue:3000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4024} -{name:"Ninja monkey greegree", itemDescription:"", shopValue:6000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4025} -{name:"Gorilla greegree", itemDescription:"A magical talisman in the shape of a gorilla head.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4026} -{name:"Gorilla greegree", itemDescription:"A magical talisman in the shape of a gorilla head.", shopValue:1500, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4027} -{name:"Gorilla greegree", itemDescription:"A magical talisman in the shape of a gorilla head.", shopValue:10000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4028} -{name:"Zombie monkey greegree", itemDescription:"", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4029} -{name:"Zombie monkey greegree", itemDescription:"", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4030} -{name:"Monkey greegree", itemDescription:"A magical talisman in the shape of a Karamjan monkey head.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4031} -{name:"Dummy", itemDescription:"I can train on this", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4032} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4033} -{name:"Monkey skull", itemDescription:"It's a very ancient skull from some kind of ape.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4034} -{name:"10th squad sigil", itemDescription:"It is the official sigil of the 10th squad of the Royal Guard.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4035} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4036} -{name:"Saradomin flag", itemDescription:"The Holy Team Standard", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4037} -{name:"Saradomin flag", itemDescription:"The Holy Team Standard", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4038} -{name:"Zamorak flag", itemDescription:"The Zamorak team's flag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4039} -{name:"Zamorak flag", itemDescription:"The Zamorak team's flag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4040} -{name:"Hooded cloak", itemDescription:"The colours of Saradomin/Zamorak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4041} -{name:"Hooded cloak", itemDescription:"The colours of Saradomin/Zamorak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4042} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4043} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4044} -{name:"Explosive potion", itemDescription:"I could use this to destroy things...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4045} -{name:"Explosive potion", itemDescription:"I could use this to destroy things...", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4046} -{name:"Climbing rope", itemDescription:"A coil of rope.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4047} -{name:"Climbing rope", itemDescription:"A coil of rope.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4048} -{name:"Bandages", itemDescription:"A box of bandages for healing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4049} -{name:"Bandages", itemDescription:"A box of bandages for healing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4050} -{name:"Toolkit", itemDescription:"Good for repairing a broken cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4051} -{name:"Toolkit", itemDescription:"Good for repairing a broken cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4052} -{name:"Barricade", itemDescription:"Handy for hindering the enemy team's movement.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4053} -{name:"Barricade", itemDescription:"Handy for hindering the enemy team's movement.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4054} -{name:"Castle wars manual", itemDescription:"It's a manual for Castle Wars", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4055} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4056} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4057} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4058} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4059} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4060} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4061} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4062} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4063} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4064} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4065} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4066} -{name:"Castle wars ticket", itemDescription:"I can exchange these for further items.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4067} -{name:"Basic decorative sword", itemDescription:"A sword with simple and basic decoration.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4068} -{name:"Basic decorative platebody", itemDescription:"A platebody with simple and basic decoration.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 32.0, 31.0, 24.0, -6.0, 31.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4069} -{name:"Basic decorative platelegs", itemDescription:"Some platelegs with simple and basic decoration.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 17.0, 16.0, 15.0, -4.0, 16.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4070} -{name:"Basic decorative helm", itemDescription:"A helm with simple and basic decoration.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 6.0, -1.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4071} -{name:"Basic decorative shield", itemDescription:"A shield with simple and basic decoration", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4072} -{name:"Damp tinderbox", itemDescription:"Not so useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4073} -{name:"Damp tinderbox", itemDescription:"Not so useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4074} -{name:"Glowing fungus", itemDescription:"A bizarre fungus. It glows with a pale blue light.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4075} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4076} -{name:"Crystal-mine key", itemDescription:"A key I found in the lower levels of the Morytanian mines. (Haunted Mine)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4077} -{name:"Zealot's key", itemDescription:"I stole this from a Saradominist I met South of Mort'ton.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4078} -{name:"Yo-yo", itemDescription:"A gift from Santa.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4079} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4080} -{name:"Salve amulet", itemDescription:"Increases the wearer's strength and accuracy by 15% when fighting the undead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 3.0, 3.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4081} -{name:"Salve shard", itemDescription:"An unstrung crystal imbued with the power of Saradomin.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4082} -{name:"Sled", itemDescription:" A waxed sled.", shopValue:150, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4083} -{name:"Sled", itemDescription:" A waxed sled.", shopValue:175, lowAlch:70, highAlch:105, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4084} -{name:"Wax", itemDescription:"I can use this to wax my sled.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4085} -{name:"Trollweiss", itemDescription:"These pale flowers have a pungent odour.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4086} -{name:"Dragon platelegs", itemDescription:"Looks pretty heavy.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4087} -{name:"Dragon platelegs", itemDescription:"Looks pretty heavy.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4088} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4089} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4090} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4091} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4092} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4093} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4094} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4095} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4096} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4097} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4098} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4099} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4100} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4101} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4102} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4103} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4104} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4105} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4106} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4107} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4108} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4109} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4110} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4111} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4112} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4113} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4114} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4115} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4116} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4117} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4118} -{name:"Bronze boots", itemDescription:"These will protect my feet.", shopValue:24, lowAlch:9, highAlch:14, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4119} -{name:"Bronze boots", itemDescription:"These will protect my feet.", shopValue:24, lowAlch:9, highAlch:14, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4120} -{name:"Iron boots", itemDescription:"These will protect my feet.", shopValue:84, lowAlch:33, highAlch:50, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 2.0, 3.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4121} -{name:"Iron boots", itemDescription:"These will protect my feet.", shopValue:84, lowAlch:33, highAlch:50, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 2.0, 3.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4122} -{name:"Steel boots", itemDescription:"These will protect my feet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 5.0, 6.0, 7.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4123} -{name:"Steel boots", itemDescription:"These will protect my feet.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 5.0, 6.0, 7.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4124} -{name:"Black boots", itemDescription:"These will protect my feet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 9.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4125} -{name:"Black boots", itemDescription:"These will protect my feet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 9.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4126} -{name:"Mithril boots", itemDescription:"These will protect my feet.", shopValue:780, lowAlch:312, highAlch:468, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 8.0, 9.0, 10.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4127} -{name:"Mithril boots", itemDescription:"These will protect my feet.", shopValue:780, lowAlch:312, highAlch:468, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 8.0, 9.0, 10.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4128} -{name:"Adamant boots", itemDescription:"These will protect my feet.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 12.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4129} -{name:"Adamant boots", itemDescription:"These will protect my feet.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 12.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4130} -{name:"Rune boots", itemDescription:"These will protect my feet.", shopValue:12500, lowAlch:5000, highAlch:7500, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 12.0, 13.0, 14.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4131} -{name:"Rune boots", itemDescription:"These will protect my feet.", shopValue:12500, lowAlch:5000, highAlch:7500, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 12.0, 13.0, 14.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4132} -{name:"Crawling hand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4133} -{name:"Cave crawler", itemDescription:"A spiky crawling critter. (level 23) Not very tasty-looking. (level 138)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4134} -{name:"Banshee", itemDescription:"A tortured screaming soul.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4135} -{name:"Rock slug", itemDescription:"The slime of evil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4136} -{name:"Cockatrice", itemDescription:"The winged reptile.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4137} -{name:"Pyrefiend", itemDescription:"A small fire demon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4138} -{name:"Basilisk", itemDescription:"The eyes of evil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4139} -{name:"Infernal mage", itemDescription:"An evil magic user.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4140} -{name:"Bloodveld", itemDescription:"The tongue of evil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4141} -{name:"Jelly", itemDescription:"• Needs cream.....• Wibbly.• Wobbly...• There's always room for jelly.• Doesn't look so tough...• Looks scared to see me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4142} -{name:"Turoth", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4143} -{name:"Aberrant spectre", itemDescription:"A very smelly ghost.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4144} -{name:"Dust devil", itemDescription:"The vacuumed face of evil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4145} -{name:"Kurask", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4146} -{name:"Gargoyle", itemDescription:"Flies like a rock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4147} -{name:"Nechryael", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4148} -{name:"Abyssal demon", itemDescription:"A denizen of the Abyss!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4149} -{name:"Broad arrows", itemDescription:"Arrows with a wider than normal tip.", shopValue:0, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4150} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:120001, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4151} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:120001, lowAlch:48000, highAlch:75000, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4152} -{name:"Granite maul", itemDescription:"Simplicity is the best weapon.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 81.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4153} -{name:"Granite maul", itemDescription:"Simplicity is the best weapon.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 81.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4154} -{name:"Enchanted gem", itemDescription:"I can contact the Slayer Masters with this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4155} -{name:"Mirror shield", itemDescription:"I can just about see things in this shield's reflection.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 5.0, 5.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4156} -{name:"Mirror shield", itemDescription:"I can just about see things in this shield's reflection.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 5.0, 5.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4157} -{name:"Leaf-bladed spear", itemDescription:"A spear with a leaf-shaped point.", shopValue:31000, lowAlch:12400, highAlch:18600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[47.0, 42.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4158} -{name:"Leaf-bladed spear", itemDescription:"A spear with a leaf-shaped point.", shopValue:0, lowAlch:12400, highAlch:18600, isStackable:true, isNoteable:false, weight:2.0, bonuses:[47.0, 42.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4159} -{name:"Broad arrow", itemDescription:"Arrows with a wider than normal tip.", shopValue:90, lowAlch:36, highAlch:54, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4160} -{name:"Bag of salt", itemDescription:"A bag of salt.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4161} -{name:"Rock hammer", itemDescription:"I can even smash stone with this.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4162} -{name:"Rock hammer", itemDescription:"I can even smash stone with this.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4163} -{name:"Face mask", itemDescription:"Stops me breathing in too much dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4164} -{name:"Face mask", itemDescription:"Stops me breathing in too much dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4165} -{name:"Earmuffs", itemDescription:"These will protect my ears from loud noise.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:26.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4166} -{name:"Earmuffs", itemDescription:"These will protect my ears from loud noise.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:26.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4167} -{name:"Nose peg", itemDescription:"Protects me from any bad smells.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4168} -{name:"Nose peg", itemDescription:"Protects me from any bad smells.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4169} -{name:"Slayer's staff", itemDescription:"An old and magical staff.", shopValue:21000, lowAlch:8400, highAlch:12600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, -1.0, 25.0, 12.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4170} -{name:"Slayer's staff", itemDescription:"An old and magical staff.", shopValue:21000, lowAlch:8400, highAlch:12600, isStackable:true, isNoteable:true, weight:18.0, bonuses:[7.0, -1.0, 25.0, 12.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4171} -{name:"Broad arrows", itemDescription:"Arrows with a wider than normal tip.", shopValue:0, lowAlch:36, highAlch:54, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4172} -{name:"Broad arrows", itemDescription:"Arrows with a wider than normal tip.", shopValue:0, lowAlch:36, highAlch:54, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4173} -{name:"Broad arrows", itemDescription:"Arrows with a wider than normal tip.", shopValue:0, lowAlch:36, highAlch:54, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4174} -{name:"Broad arrows", itemDescription:"Arrows with a wider than normal tip.", shopValue:0, lowAlch:36, highAlch:54, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4175} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4176} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4177} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:6, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4178} -{name:"Stick", itemDescription:"A big, bad troll.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4179} -{name:"Dragon platelegs", itemDescription:"Looks pretty heavy.", shopValue:6, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4180} -{name:"Mouth grip", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4181} -{name:"Goutweed", itemDescription:"A pale, tough looking herb.", shopValue:6, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4182} -{name:"Star amulet", itemDescription:"A six-pointed marble and obsidian amulet", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4183} -{name:"Cavern key", itemDescription:"Upon close examination, this seems to be a key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4184} -{name:"Tower key", itemDescription:"Upon close examination, this seems to be a key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4185} -{name:"Shed key", itemDescription:"Upon close examination, this seems to be a key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4186} -{name:"Marble amulet", itemDescription:"Triangular in shape, made from marble, and as large as your hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4187} -{name:"Obsidian amulet", itemDescription:"Triangular in shape, made from obsidian, and as large as your hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4188} -{name:"Garden cane", itemDescription:"A length of garden cane.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4189} -{name:"Garden brush", itemDescription:"A typical garden brush, with three canes tied to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4190} -{name:"Extended brush", itemDescription:"A typical garden brush, with three canes tied to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4191} -{name:"Extended brush", itemDescription:"A typical garden brush, with three canes tied to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4192} -{name:"Extended brush", itemDescription:"A typical garden brush, with three canes tied to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4193} -{name:"Torso", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4194} -{name:"Arms", itemDescription:"A pair of limp, dead arms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4195} -{name:"Legs", itemDescription:"A pair of lifeless, rotting legs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4196} -{name:"Decapitated head", itemDescription:"A gruesome, decapitated head - its eyes stare lifelessly at nothing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4197} -{name:"Decapitated head", itemDescription:"A gruesome, decapitated head - its eyes stare lifelessly at nothing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4198} -{name:"Pickled brain", itemDescription:"A pickled brain, submerged inside a jar of vinegar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4199} -{name:"Conductor mould", itemDescription:"A mould for making silver lightning conductors.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4200} -{name:"Conductor", itemDescription:"A silver lightning conductor.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4201} -{name:"Ring of charos", itemDescription:" The power within this ring has been activated.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4202} -{name:"Journal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4203} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4204} -{name:"Consecration seed", itemDescription:"This consecration seed looks grey and dead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4205} -{name:"Consecration seed", itemDescription:"This consecration seed looks grey and dead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4206} -{name:"Crystal seed", itemDescription:"This crystal seed looks grey and dead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4207} -{name:"Crystal seed", itemDescription:"This crystal seed looks grey and dead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4208} -{name:"Cadarn lineage", itemDescription:"A book on Cadarn clan history.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4209} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4210} -{name:"Elf crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4211} -{name:"New crystal bow", itemDescription:"A nice sturdy magical bow.", shopValue:900000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4212} -{name:"New crystal bow", itemDescription:"A nice sturdy magical bow.", shopValue:900000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4213} -{name:"Crystal bow full", itemDescription:"A nice sturdy magical bow.", shopValue:900000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4214} -{name:"Crystal bow 9/10", itemDescription:"A nice sturdy magical bow.", shopValue:800000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4215} -{name:"Crystal bow 8/10", itemDescription:"A nice sturdy magical bow.", shopValue:700000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4216} -{name:"Crystal bow 7/10", itemDescription:"A nice sturdy magical bow.", shopValue:600000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4217} -{name:"Crystal bow 6/10", itemDescription:"A nice sturdy magical bow.", shopValue:500000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4218} -{name:"Crystal bow 5/10", itemDescription:"A nice sturdy magical bow.", shopValue:400000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4219} -{name:"Crystal bow 4/10", itemDescription:"A nice sturdy magical bow.", shopValue:300000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4220} -{name:"Crystal bow 3/10", itemDescription:"A nice sturdy magical bow.", shopValue:200000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4221} -{name:"Crystal bow 2/10", itemDescription:"A nice sturdy magical bow.", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4222} -{name:"Crystal bow 1/10", itemDescription:"A nice sturdy magical bow.", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 64100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5270.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4223} -{name:"New crystal shield", itemDescription:"A nice sturdy crystal shield.", shopValue:800000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4224} -{name:"Crystal shield full", itemDescription:"A nice sturdy crystal shield.", shopValue:750000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4225} -{name:"Crystal shield 9/10", itemDescription:"A nice sturdy crystal shield.", shopValue:670000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4226} -{name:"Crystal shield 8/10", itemDescription:"A nice sturdy crystal shield.", shopValue:590000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4227} -{name:"Crystal shield 7/10", itemDescription:"A nice sturdy crystal shield.", shopValue:510000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4228} -{name:"Crystal shield 6/10", itemDescription:"A nice sturdy crystal shield.", shopValue:430000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4229} -{name:"Crystal shield 5/10", itemDescription:"A nice sturdy crystal shield.", shopValue:350000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4230} -{name:"Crystal shield 4/10", itemDescription:"A nice sturdy crystal shield.", shopValue:270000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4231} -{name:"Crystal shield 3/10", itemDescription:"A nice sturdy crystal shield.", shopValue:190000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4232} -{name:"Crystal shield 2/10", itemDescription:"A nice sturdy crystal shield.", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4233} -{name:"Crystal shield 1/10", itemDescription:"A nice sturdy crystal shield.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4234} -{name:"New crystal shield", itemDescription:"A nice sturdy crystal shield.", shopValue:800000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 51.0, 54.0, 53.0, 0.0, 80.0, 70.0, 6.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4235} -{name:"Signed oak bow", itemDescription:"This bow has been signed by Robin, Master Bowman.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4236} -{name:"Nettle-water", itemDescription:"It's a bowl of water, with some nettles in it.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4237} -{name:"Puddle of slime", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4238} -{name:"Nettle tea", itemDescription:"It's a bowl of (milky) nettle tea.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4239} -{name:"Nettle tea", itemDescription:"It's a bowl of (milky) nettle tea.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4240} -{name:"Nettles", itemDescription:"(In inventory) A handful of nettles (In ground) I better not get stung/I wouldn't like to get stung/I wish I could sting other people/Dock leaves at the ready/These may hurt/nettles sting my leggies(Draynor Village nettles)", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4241} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4242} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4243} -{name:"Porcelain cup", itemDescription:"A porcelain cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4244} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4245} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4246} -{name:"Mystical robes", itemDescription:"The Robes of Necrovarus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:23.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4247} -{name:"Book of haricanto", itemDescription:"The Book of Haricanto.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4248} -{name:"Translation manual", itemDescription:"A translation manual.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4249} -{name:"Ghostspeak amulet", itemDescription:" It lets me talk to ghosts.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4250} -{name:"Ectophial", itemDescription:"The Ectophial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4251} -{name:"Ectophial", itemDescription:"The Ectophial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4252} -{name:"Model ship", itemDescription:"A small wooden ship. / A small wooden ship with a silk flag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4253} -{name:"Model ship", itemDescription:"A small wooden ship. / A small wooden ship with a silk flag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4254} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4255} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4256} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4257} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4258} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4259} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4260} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4261} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4262} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4263} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4264} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4265} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4266} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4267} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4268} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4269} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4270} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4271} -{name:"Bone key", itemDescription:"A key fashioned from a shard of bone. (Shilo Village)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4272} -{name:"Chest key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4273} -{name:"Map scrap", itemDescription:"A section from some kind of map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4274} -{name:"Map scrap", itemDescription:"A section from some kind of map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4275} -{name:"Map scrap", itemDescription:"A section from some kind of map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4276} -{name:"Treasure map", itemDescription:"A complete treasure map.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4277} -{name:"Ecto-token", itemDescription:"A token with ectoplasm on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4278} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4279} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4280} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4281} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4282} -{name:"Petition form", itemDescription:"A scroll of paper containing signatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4283} -{name:"Bedsheet", itemDescription:" It's an ectoplasm-covered bedsheet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4284} -{name:"Bedsheet", itemDescription:" It's an ectoplasm-covered bedsheet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4285} -{name:"Bucket of slime", itemDescription:"It's a bucket of ectoplasm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4286} -{name:"Raw beef", itemDescription:"I need to cook this first.", shopValue:1, lowAlch:23, highAlch:35, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4287} -{name:"Raw beef", itemDescription:"I need to cook this first.", shopValue:1, lowAlch:23, highAlch:35, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4288} -{name:"Raw chicken", itemDescription:"I need to cook this first.", shopValue:1, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4289} -{name:"Raw chicken", itemDescription:"I need to cook this first.", shopValue:1, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4290} -{name:"Cooked chicken", itemDescription:"Mmm this looks tasty.", shopValue:4, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4291} -{name:"Cooked chicken", itemDescription:"Mmm this looks tasty.", shopValue:4, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4292} -{name:"Cooked meat", itemDescription:"Mmm this looks tasty.", shopValue:4, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4293} -{name:"Cooked meat", itemDescription:"Mmm this looks tasty.", shopValue:4, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4294} -{name:"Female h.a.m.", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4295} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4296} -{name:"Male h.a.m.", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4297} -{name:"H.a.m. shirt", itemDescription:"The label says 'Vivid Crimson', but it looks like pink to me!", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4298} -{name:"H.a.m. shirt", itemDescription:"The label says 'Vivid Crimson', but it looks like pink to me!", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4299} -{name:"H.a.m. robe", itemDescription:"The label says 'Vivid Crimson', but it looks like pink to me!", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4300} -{name:"H.a.m. robe", itemDescription:"The label says 'Vivid Crimson', but it looks like pink to me!", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4301} -{name:"H.a.m. hood", itemDescription:"Light-weight head protection and eye shield.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4302} -{name:"H.a.m. hood", itemDescription:"Light-weight head protection and eye shield.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4303} -{name:"H.a.m. cloak", itemDescription:"A HAM cape.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4304} -{name:"H.a.m. cloak", itemDescription:"A HAM cape.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4305} -{name:"H.a.m. logo", itemDescription:"A badge for the HAM cult.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4306} -{name:"H.a.m. logo", itemDescription:"A badge for the HAM cult.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4307} -{name:"H.a.m. gloves", itemDescription:"Gloves worn by the Humans Against Monsters group.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4308} -{name:"H.a.m. gloves", itemDescription:"Gloves worn by the Humans Against Monsters group.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4309} -{name:"H.a.m. boots", itemDescription:"Boots worn by the Humans Against Monsters group.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4310} -{name:"H.a.m. boots", itemDescription:"Boots worn by the Humans Against Monsters group.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4311} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4312} -{name:"Crystal of seren", itemDescription:"A book on elven crystal.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4313} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4314} -{name:"Team-1 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4315} -{name:"Team-1 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4316} -{name:"Team-2 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4317} -{name:"Team-2 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4318} -{name:"Team-3 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4319} -{name:"Team-3 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4320} -{name:"Team-4 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4321} -{name:"Team-4 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4322} -{name:"Team-5 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4323} -{name:"Team-5 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4324} -{name:"Team-6 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4325} -{name:"Team-6 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4326} -{name:"Team-7 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4327} -{name:"Team-7 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4328} -{name:"Team-8 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4329} -{name:"Team-8 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4330} -{name:"Team-9 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4331} -{name:"Team-9 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4332} -{name:"Team-10 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4333} -{name:"Team-10 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4334} -{name:"Team-11 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4335} -{name:"Team-11 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4336} -{name:"Team-12 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4337} -{name:"Team-12 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4338} -{name:"Team-13 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4339} -{name:"Team-13 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4340} -{name:"Team-14 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4341} -{name:"Team-14 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4342} -{name:"Team-15 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4343} -{name:"Team-15 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4344} -{name:"Team-16 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4345} -{name:"Team-16 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4346} -{name:"Team-17 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4347} -{name:"Team-17 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4348} -{name:"Team-18 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4349} -{name:"Team-18 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4350} -{name:"Team-19 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4351} -{name:"Team-19 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4352} -{name:"Team-20 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4353} -{name:"Team-20 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4354} -{name:"Team-21 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4355} -{name:"Team-21 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4356} -{name:"Team-22 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4357} -{name:"Team-22 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4358} -{name:"Team-23 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4359} -{name:"Team-23 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4360} -{name:"Team-24 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4361} -{name:"Team-24 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4362} -{name:"Team-25 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4363} -{name:"Team-25 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4364} -{name:"Team-26 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4365} -{name:"Team-26 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4366} -{name:"Team-27 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4367} -{name:"Team-27 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4368} -{name:"Team-28 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4369} -{name:"Team-28 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4370} -{name:"Team-29 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4371} -{name:"Team-29 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4372} -{name:"Team-30 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4373} -{name:"Team-30 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4374} -{name:"Team-31 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4375} -{name:"Team-31 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4376} -{name:"Team-32 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4377} -{name:"Team-32 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4378} -{name:"Team-33 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4379} -{name:"Team-33 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4380} -{name:"Team-34 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4381} -{name:"Team-34 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4382} -{name:"Team-35 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4383} -{name:"Team-35 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4384} -{name:"Team-36 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4385} -{name:"Team-36 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4386} -{name:"Team-37 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4387} -{name:"Team-37 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4388} -{name:"Team-38 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4389} -{name:"Team-38 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4390} -{name:"Team-39 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4391} -{name:"Team-39 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4392} -{name:"Team-40 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4393} -{name:"Team-40 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4394} -{name:"Team-41 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4395} -{name:"Team-41 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4396} -{name:"Team-42 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4397} -{name:"Team-42 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4398} -{name:"Team-43 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4399} -{name:"Team-43 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4400} -{name:"Team-44 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4401} -{name:"Team-44 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4402} -{name:"Team-45 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4403} -{name:"Team-45 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4404} -{name:"Team-46 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4405} -{name:"Team-46 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4406} -{name:"Team-47 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4407} -{name:"Team-47 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4408} -{name:"Team-48 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4409} -{name:"Team-48 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4410} -{name:"Team-49 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4411} -{name:"Team-49 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4412} -{name:"Team-50 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4413} -{name:"Team-50 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4414} -{name:"Blunt hatchet", itemDescription:"A jungle forester's blunt hatchet.", shopValue:56, lowAlch:22, highAlch:33, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4415} -{name:"Herbal tincture", itemDescription:"A strong medicinal brew for heavy chests.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4416} -{name:"Guthix rest (4)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4417} -{name:"Guthix rest (4)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4418} -{name:"Guthix rest (3)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4419} -{name:"Guthix rest (3)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4420} -{name:"Guthix rest (2)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4421} -{name:"Guthix rest (2)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4422} -{name:"Guthix rest (1)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4423} -{name:"Guthix rest (1)", itemDescription:"A cup of Guthix rest.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4424} -{name:"Stodgy mattress", itemDescription:"A half-filled feather mattress.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4425} -{name:"Comfy mattress", itemDescription:"A comfy-looking feather mattress.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4426} -{name:"Iron oxide", itemDescription:"Looks like a bunch of rust to me.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4427} -{name:"Animate rock scroll", itemDescription:"An animate rock spell is written on this parchment.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4428} -{name:"Broken vane part", itemDescription:"0.0 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4429} -{name:"Directionals", itemDescription:"The weathervane directions should now work.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4430} -{name:"Broken vane part", itemDescription:"0.0 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4431} -{name:"Ornament", itemDescription:"A fixed weathervane ornament.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4432} -{name:"Broken vane part", itemDescription:"0.0 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4433} -{name:"Weathervane pillar", itemDescription:"A fixed weathervane rotating pillar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4434} -{name:"Weather report", itemDescription:"Clear skies ahead, with some chance of showers, thunderstorms, ice and hail.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4435} -{name:"Airtight pot", itemDescription:"This is pretty well sealed.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4436} -{name:"Airtight pot", itemDescription:"This is pretty well sealed.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4437} -{name:"Unfired pot lid", itemDescription:"This should fit on a normal-sized pot.", shopValue:10, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4438} -{name:"Unfired pot lid", itemDescription:"This should fit on a normal-sized pot.", shopValue:10, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4439} -{name:"Pot lid", itemDescription:"This should fit on a normal-sized pot.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4440} -{name:"Pot lid", itemDescription:"This should fit on a normal-sized pot.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4441} -{name:"Breathing salts", itemDescription:"An airtight pot with something inside, most likely breathing salts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4442} -{name:"Chicken cage", itemDescription:"A large cage for transporting chickens.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4443} -{name:"Sharpened hatchet", itemDescription:"A jungle forester's super sharp axe.", shopValue:56, lowAlch:22, highAlch:33, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4444} -{name:"Red mahogany logs", itemDescription:"Some mahogany logs which have been professionally cured.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4445} -{name:"Steel key ring", itemDescription:"I can store my keys here.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4446} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4447} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4448} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4449} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4450} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4451} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4452} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4453} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4454} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4455} -{name:"Bowl of hot water", itemDescription:"It's a bowl of hot water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4456} -{name:"Bowl of hot water", itemDescription:"It's a bowl of hot water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4457} -{name:"Cup of water", itemDescription:"A cup of water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4458} -{name:"Cup of water", itemDescription:"A cup of water.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4459} -{name:"Cup of hot water", itemDescription:"It's hot!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4460} -{name:"Cup of hot water", itemDescription:"It's hot!", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4461} -{name:"Ruined herb tea", itemDescription:"A ruined herb tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4462} -{name:"Ruined herb tea", itemDescription:"A ruined herb tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4463} -{name:"Herb tea mix", itemDescription:"See article", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4464} -{name:"Herb tea mix", itemDescription:"See article", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4465} -{name:"Herb tea mix", itemDescription:"See article", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4466} -{name:"Herb tea mix", itemDescription:"See article", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4467} -{name:"Herb tea mix", itemDescription:"See article", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4468} -{name:"Herb tea mix", itemDescription:"See article", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4469} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4470} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4471} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4472} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4473} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4474} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4475} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4476} -{name:"Herb tea mix", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4477} -{name:"Herb tea mix", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4478} -{name:"Herb tea mix", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4479} -{name:"Herb tea mix", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4480} -{name:"Herb tea mix", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4481} -{name:"Herb tea mix", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4482} -{name:"Herb tea mix", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4483} -{name:"Safety guarantee", itemDescription:"The strange characters supposedly grant Svidi safe passage into Rellekka.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4484} -{name:"White pearl", itemDescription:"This fruit is known as White Pearl. Should taste good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4485} -{name:"White pearl seed", itemDescription:"You can grow this seed even in cold mountain ranges!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4486} -{name:"Half a rock", itemDescription:"It's a piece of the Ancient Rock of the mountain people. It's still just a stone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4487} -{name:"Corpse of woman", itemDescription:"The corpse of a woman who died long ago.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4488} -{name:"Asleif's necklace", itemDescription:"This used to belong to Asleif, daughter of the mountain camp chieftain.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4489} -{name:"Mud", itemDescription:"Marginally better than egg on your face.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4490} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4491} -{name:"Muddy rock", itemDescription:"A muddy rock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4492} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4493} -{name:"Pole", itemDescription:"It's just a long stick, really.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4494} -{name:"Pole", itemDescription:"It's just a long stick, really.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4495} -{name:"Broken pole", itemDescription:"Splintered into pieces, it has become completely useless to you.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4496} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4497} -{name:"Rope", itemDescription:"A coil of rope.", shopValue:0, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4498} -{name:"Rope", itemDescription:"A coil of rope.", shopValue:0, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4499} -{name:"Pole", itemDescription:"It's just a long stick, really.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4500} -{name:"Pole", itemDescription:"It's just a long stick, really.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4501} -{name:"Bearhead", itemDescription:"Quite ferocious looking", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -3.0, -3.0, 12.0, 14.0, 10.0, 7.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4502} -{name:"Detailed decorative sword", itemDescription:"A sword with highly detailed decoration.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[15.0, 20.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4503} -{name:"Detailed decorative platebody", itemDescription:"A platebody with finely detailed decoration.", shopValue:20000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 46.0, 44.0, 38.0, -6.0, 44.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4504} -{name:"Detailed decorative platelegs", itemDescription:"Some platelegs with highly detailed decoration.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4505} -{name:"Detailed decorative helm", itemDescription:"A helm with finely detailed decoration.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 9.0, -1.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4506} -{name:"Detailed decorative shield", itemDescription:"A shield with finely detailed decoration.", shopValue:8500, lowAlch:884, highAlch:1326, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 18.0, 22.0, 20.0, -4.0, 22.0, 5.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4507} -{name:"Intricate decorative sword", itemDescription:"A sword with incredibly intricate decoration.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4508} -{name:"Intricate decorative platebody", itemDescription:"A platebody with incredibly intricate decoration.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4509} -{name:"Intricate decorative platelegs", itemDescription:"Some platelegs with incredibly intricate decoration.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4510} -{name:"Intricate decorative helm", itemDescription:"A helm with incredibly intricate decoration.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 14.0, 15.0, 13.0, -1.0, 14.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4511} -{name:"Intricate decorative shield", itemDescription:"A shield with incredibly intricate decoration", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4512} -{name:"Saradomin team hood", itemDescription:"A Castle Wars hood in Saradomin blue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4513} -{name:"Saradomin team cape", itemDescription:"A Castle Wars cape in Saradomin blue.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4514} -{name:"Zamorak team hood", itemDescription:"A Castle Wars hood in Zamorak red.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4515} -{name:"Zamorak team cape", itemDescription:"A Castle Wars cape in Zamorak red.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4516} -{name:"Giant frog legs", itemDescription:"This could feed a family of gnomes for a week!", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4517} -{name:"Giant frog legs", itemDescription:"This could feed a family of gnomes for a week!", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4518} -{name:"Swamp wallbeast", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4519} -{name:"Swamp cave slime", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4520} -{name:"Swamp cave bug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4521} -{name:"Oil lamp", itemDescription:" Not the genie sort.", shopValue:28, lowAlch:11, highAlch:16, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4522} -{name:"Oil lamp", itemDescription:" Not the genie sort.", shopValue:28, lowAlch:11, highAlch:16, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4523} -{name:"Oil lamp", itemDescription:" Not the genie sort.", shopValue:28, lowAlch:11, highAlch:16, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4524} -{name:"Oil lamp", itemDescription:" Not the genie sort.", shopValue:25, lowAlch:11, highAlch:16, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4525} -{name:"Oil lamp", itemDescription:" Not the genie sort.", shopValue:25, lowAlch:11, highAlch:16, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4526} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4527} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4528} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:15, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4529} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:15, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4530} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:15, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4531} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:15, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4532} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:15, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4533} -{name:"Candle lantern", itemDescription:" Put a candle in to complete it.", shopValue:15, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4534} -{name:"Oil lantern", itemDescription:"Lighting paths in dark places.", shopValue:120, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4535} -{name:"Oil lantern", itemDescription:"Lighting paths in dark places.", shopValue:120, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4536} -{name:"Oil lantern", itemDescription:"Lighting paths in dark places.", shopValue:125, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4537} -{name:"Oil lantern", itemDescription:"Lighting paths in dark places.", shopValue:125, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4538} -{name:"Oil lantern", itemDescription:"Lighting paths in dark places.", shopValue:125, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4539} -{name:"Oil lantern frame", itemDescription:"Add the glass to complete.", shopValue:90, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4540} -{name:"Oil lantern frame", itemDescription:"Add the glass to complete.", shopValue:90, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4541} -{name:"Lantern lens", itemDescription:"A roughly circular disc of glass", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4542} -{name:"Lantern lens", itemDescription:"A roughly circular disc of glass", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4543} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:300, lowAlch:168, highAlch:252, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4544} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:300, lowAlch:168, highAlch:252, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4545} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:400, lowAlch:168, highAlch:252, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4546} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:400, lowAlch:168, highAlch:252, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4547} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:420, lowAlch:168, highAlch:252, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4548} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:420, lowAlch:168, highAlch:252, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4549} -{name:"Bullseye lantern", itemDescription:"A sturdy steel lantern casting a bright beam.", shopValue:420, lowAlch:168, highAlch:252, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4550} -{name:"Spiny helmet", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4551} -{name:"Spiny helmet", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4552} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4553} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4554} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4555} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4556} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4557} -{name:"Blue sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4558} -{name:"Deep blue sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4559} -{name:"White sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4560} -{name:"Purple sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4561} -{name:"Red sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4562} -{name:"Green sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4563} -{name:"Pink sweets", itemDescription:"Remember to brush after eating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4564} -{name:"Basket of eggs", itemDescription:"Hand them out to spread the Easter happiness.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4565} -{name:"Rubber chicken", itemDescription:"Perhaps not the most powerful weapon in RuneScape.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4566} -{name:"Gold helmet", itemDescription:"Made of gold and white gold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 20.0, 0.0, 10.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4567} -{name:"Dwarven lore", itemDescription:"This book is almost falling apart, you'll have to handle it quite carefully.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4568} -{name:"Book page 1", itemDescription:"A missing page from Rolad's book! It seems to be the first one.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4569} -{name:"Book page 2", itemDescription:"A missing page from Rolad's book! It seems to be the second one.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4570} -{name:"Book page 3", itemDescription:"A missing page from Rolad's book! It seems to be the third one.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4571} -{name:"Pages", itemDescription:"A collection of missing pages from Rolad's book!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4572} -{name:"Pages", itemDescription:"A collection of missing pages from Rolad's book!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4573} -{name:"Base schematics", itemDescription:"These are the base schematics of a dwarven multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4574} -{name:"Schematic", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4575} -{name:"Schematics", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4576} -{name:"Schematics", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4577} -{name:"Schematic", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4578} -{name:"Cannon ball", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4579} -{name:"Black spear", itemDescription:"A black tipped spear.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4580} -{name:"Black spear", itemDescription:"A black tipped spear.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4581} -{name:"Black spear (p)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4582} -{name:"Black spear (p)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4583} -{name:"Black spear (kp)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4584} -{name:"Dragon plateskirt", itemDescription:"This looks pretty heavy.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4585} -{name:"Dragon plateskirt", itemDescription:"This looks pretty heavy.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4586} -{name:"Dragon scimitar", itemDescription:"A vicious, curved sword.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[8.0, 67.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4587} -{name:"Dragon scimitar", itemDescription:"A vicious, curved sword.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[8.0, 67.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4588} -{name:"Keys", itemDescription:"Keys to the Mayor's house. (The Feud)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4589} -{name:"Jewels", itemDescription:"The Mayor of Pollnivneach's wife's jewels.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4590} -{name:"Karidian headpiece", itemDescription:"Wear it on your head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4591} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4592} -{name:"Fake beard", itemDescription:"Makes me itch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4593} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4594} -{name:"Karidian disguise", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4595} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4596} -{name:"Note", itemDescription:"Swap this note at any bank for the equivalent item.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4597} -{name:"Note", itemDescription:"Swap this note at any bank for the equivalent item.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4598} -{name:"Oak-blackjack", itemDescription:"A handy little club made out of oak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4599} -{name:"Willow-blackjack", itemDescription:"A handy little club made out of willow.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4600} -{name:"Ugthanki dung", itemDescription:"Dung of the Camelus Horribleus variety.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4601} -{name:"Ugthanki dung", itemDescription:"Dung of the Camelus Horribleus variety.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4602} -{name:"Receipt", itemDescription:"A receipt for one 'Camelus Horribleus'", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4603} -{name:"Hag's poison", itemDescription:"A red viscous liquid in a vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4604} -{name:"Snake charm", itemDescription:"Makes a hissing sound.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4605} -{name:"Snake basket", itemDescription:"This is used to hold snakes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4606} -{name:"Full snake basket", itemDescription:"This basket contains a snake.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4607} -{name:"Super kebab", itemDescription:"A meaty and very hot kebab.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4608} -{name:"Super kebab", itemDescription:"A meaty and very hot kebab.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4609} -{name:"Red hot sauce", itemDescription:"The bottle feels warm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4610} -{name:"Desert disguise", itemDescription:"A disguise suitable for the desert.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4611} -{name:"Willow-blackjack", itemDescription:"A handy little club made out of willow.", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4612} -{name:"Spinning plate", itemDescription:"It has a picture of a dragon on it.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4613} -{name:"Broken plate", itemDescription:"Alas...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4614} -{name:"Letter", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4615} -{name:"Varmen's notes", itemDescription:"An archaeologist's notes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4616} -{name:"Display cabinet key", itemDescription:"The museum curator's key (The Golem).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4617} -{name:"Statuette", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4618} -{name:"Strange implement", itemDescription:"It's pretty, but you wish you knew what it was.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4619} -{name:"Black mushroom", itemDescription:" Not good for eating.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4620} -{name:"Phoenix feather", itemDescription:"A long feather patterned like a flame.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4621} -{name:"Black mushroom ink", itemDescription:"Black ink made out of mushrooms.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4622} -{name:"Phoenix quill pen", itemDescription:"A phoenix feather dipped in ink.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4623} -{name:"Golem program", itemDescription:"It reads 'YOUR TASK IS DONE'.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4624} -{name:"Bandit", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4625} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4626} -{name:"Bandit's brew", itemDescription:"A cheeky little lager from the Bandit Camp.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4627} -{name:"Bandit's brew", itemDescription:"A cheeky little lager from the Bandit Camp.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4628} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4629} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4630} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4631} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4632} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4633} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4634} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4635} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4636} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4637} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4638} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4639} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4640} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4641} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4642} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4643} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4644} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4645} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4646} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4647} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4648} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4649} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4650} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4651} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4652} -{name:"Fire", itemDescription:"", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4653} -{name:"Etchings", itemDescription:"A copy of the engravings found on a mysterious stone tablet.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4654} -{name:"Translation", itemDescription:"A rough translation made from archaeological etchings.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4655} -{name:"Warm key", itemDescription:"This key is unusally warm to the touch.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4656} -{name:"Ring of visibility", itemDescription:"A ring that allows you to see things that are normally invisible.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4657} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4658} -{name:"Blessed pot", itemDescription:"A silver pot made by Ruantun and blessed on Entrana.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4659} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4660} -{name:"Blessed pot", itemDescription:"A silver pot made by Ruantun and blessed on Entrana.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4661} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4662} -{name:"Blessed pot", itemDescription:"A silver pot made by Ruantun and blessed on Entrana.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4663} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4664} -{name:"Blessed pot", itemDescription:"A silver pot made by Ruantun and blessed on Entrana.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4665} -{name:"Silver pot", itemDescription:"Frank's shiny silver coated pot.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4666} -{name:"Blessed pot", itemDescription:"A silver pot made by Ruantun and blessed on Entrana.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4667} -{name:"Garlic powder", itemDescription:"Finely ground garlic powder.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4668} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4669} -{name:"Blood diamond", itemDescription:"The Diamond of Blood.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4670} -{name:"Ice diamond", itemDescription:"The Diamond of Ice.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4671} -{name:"Smoke diamond", itemDescription:"The Diamond of Smoke.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4672} -{name:"Shadow diamond", itemDescription:"The Diamond of Shadow.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4673} -{name:"Gilded cross", itemDescription:"An old and strangely shaped metal cross.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4674} -{name:"Ancient staff", itemDescription:"A magical staff of ancient origin...", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:225.0, bonuses:[10.0, -1.0, 40.0, 15.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 5.0, 0.0, 0.0, 0.0, 50.0, 0.0, -1.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4675} -{name:"Ancient staff", itemDescription:"A magical staff of ancient origin...", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:225.0, bonuses:[10.0, -1.0, 40.0, 15.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 5.0, 0.0, 0.0, 0.0, 50.0, 0.0, -1.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4676} -{name:"Catspeak amulet", itemDescription:"It's an amulet of cat speak. It makes vague purring noises.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4677} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4678} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4679} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4680} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4681} -{name:"Holy symbol", itemDescription:"A blessed holy symbol of Saradomin.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4682} -{name:"Unholy symbol", itemDescription:"An unholy symbol of Zamorak.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4683} -{name:"Linen", itemDescription:"One sheet of mummy wrap.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4684} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4685} -{name:"Embalming manual", itemDescription:"Little book of embalming by Bod E. Wrapper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4686} -{name:"Bucket of sap", itemDescription:"It's a bucket of sap.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4687} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4688} -{name:"Pile of salt", itemDescription:"A little heap of salt.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4689} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4690} -{name:"Sphinx's token", itemDescription:"Miniature golden statue of a sphinx.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4691} -{name:"Gold leaf", itemDescription:"A very delicate sheet of gold.", shopValue:0, lowAlch:52000, highAlch:78000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4692} -{name:"Full bucket", itemDescription:"It's a bucket of salty water.", shopValue:6, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4693} -{name:"Steam rune", itemDescription:"A combined Water and Fire Rune.", shopValue:20, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4694} -{name:"Mist rune", itemDescription:"A combined air and water rune.", shopValue:20, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4695} -{name:"Dust rune", itemDescription:"A combined Air and Earth Rune.", shopValue:20, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4696} -{name:"Smoke rune", itemDescription:"A combined Air and Fire Rune.", shopValue:20, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4697} -{name:"Mud rune", itemDescription:"A combined Earth and Water rune.", shopValue:20, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4698} -{name:"Lava rune", itemDescription:"A combined earth and fire rune.", shopValue:20, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4699} -{name:"Sapphire lantern", itemDescription:"A lantern casting a bright blue beam.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4700} -{name:"Sapphire lantern", itemDescription:"A lantern casting a bright blue beam.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4701} -{name:"Sapphire lantern", itemDescription:"A lantern casting a bright blue beam.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4702} -{name:"Magic stone", itemDescription:"A magic stone to make high-level furniture.", shopValue:1, lowAlch:390000, highAlch:585000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4703} -{name:"Stone bowl", itemDescription:"A magic stone bowl for catching the tears of Guthix.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4704} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4705} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4706} -{name:"Crumbling tome", itemDescription:"This book must be really old!", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4707} -{name:"Ahrim's hood", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4708} -{name:"Ahrim's hood", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4709} -{name:"Ahrim's staff", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4710} -{name:"Ahrim's staff", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4711} -{name:"Ahrim's robetop", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4712} -{name:"Ahrim's robetop", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4713} -{name:"Ahrim's robeskirt", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4714} -{name:"Ahrim's robeskirt", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4715} -{name:"Dharok's helm", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4716} -{name:"Dharok's helm", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4717} -{name:"Dharok's greataxe", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4718} -{name:"Dharok's greataxe", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4719} -{name:"Dharok's platebody", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4720} -{name:"Dharok's platebody", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4721} -{name:"Dharok's platelegs", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4722} -{name:"Dharok's platelegs", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4723} -{name:"Guthan's helm", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4724} -{name:"Guthan's helm", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4725} -{name:"Guthan's warspear", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4726} -{name:"Guthan's warspear", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4727} -{name:"Guthan's platebody", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4728} -{name:"Guthan's platebody", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4729} -{name:"Guthan's chainskirt", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4730} -{name:"Guthan's chainskirt", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4731} -{name:"Karil's coif", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4732} -{name:"Karil's coif", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4733} -{name:"Karil's crossbow", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4734} -{name:"Karil's crossbow", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4735} -{name:"Karil's top", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4736} -{name:"Karil's top", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4737} -{name:"Karil's skirt", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4738} -{name:"Karil's skirt", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4739} -{name:"Bolt rack", itemDescription:"Must need a special type of crossbow to use this.", shopValue:420, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4740} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4741} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4742} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4743} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4744} -{name:"Torag's helm", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4745} -{name:"Torag's helm", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4746} -{name:"Torag's hammers", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4747} -{name:"Torag's hammers", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4748} -{name:"Torag's platebody", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4749} -{name:"Torag's platebody", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4750} -{name:"Torag's platelegs", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4751} -{name:"Torag's platelegs", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4752} -{name:"Verac's helm", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4753} -{name:"Verac's helm", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4754} -{name:"Verac's flail", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4755} -{name:"Verac's flail", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4756} -{name:"Verac's brassard", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4757} -{name:"Verac's brassard", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4758} -{name:"Verac's plateskirt", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4759} -{name:"Verac's plateskirt", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4760} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4761} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4762} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4763} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4764} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4765} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4766} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4767} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4768} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4769} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4770} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4771} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4772} -{name:"Bronze brutal", itemDescription:"Blunt bronze arrow...ouch", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4773} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4774} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4775} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4776} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4777} -{name:"Iron brutal", itemDescription:"Blunt iron arrow...ouch", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4778} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4779} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4780} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4781} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4782} -{name:"Steel brutal", itemDescription:"Blunt steel arrow...ouch", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4783} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4784} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4785} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4786} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4787} -{name:"Black brutal", itemDescription:"Blunt black arrow...ouch", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4788} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4789} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4790} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4791} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4792} -{name:"Mithril brutal", itemDescription:"Blunt mithril arrow...ouch", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 34.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4793} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4794} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4795} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4796} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4797} -{name:"Adamant brutal", itemDescription:"Blunt adamant arrow...ouch", shopValue:95, lowAlch:38, highAlch:57, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4798} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4799} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4800} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4801} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4802} -{name:"Rune brutal", itemDescription:"Blunt rune arrow...ouch", shopValue:450, lowAlch:180, highAlch:270, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4803} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4804} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4805} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4806} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4807} -{name:"Black prism", itemDescription:"A very black prism.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4808} -{name:"Torn page", itemDescription:"A half torn necromantic page.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4809} -{name:"Ruined backpack", itemDescription:"It's about to fall apart.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4810} -{name:"Dragon inn tankard", itemDescription:"A white ceramic mug with a dragon insignia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4811} -{name:"Zogre bones", itemDescription:"A pile of Zombie Ogre bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4812} -{name:"Zogre bones", itemDescription:"A pile of Zombie Ogre bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4813} -{name:"Sithik portrait", itemDescription:"A classic realist charcoal portrait of Sithik.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4814} -{name:"Sithik portrait", itemDescription:"A classic realist charcoal portrait of Sithik.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4815} -{name:"Signed portrait", itemDescription:"A signed classic realist charcoal portrait of Sithik.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4816} -{name:"Book of portraiture", itemDescription:"A book explaining the art of portraiture", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4817} -{name:"Ogre artefact", itemDescription:"An ancient ogre artefact-resembling a large heavy helm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4818} -{name:"Bronze nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4819} -{name:"Iron nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:33, lowAlch:13, highAlch:19, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4820} -{name:"Black nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4821} -{name:"Mithril nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:18, lowAlch:7, highAlch:10, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4822} -{name:"Adamantite nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4823} -{name:"Rune nails", itemDescription:"Keeps things in place fairly permanently.", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4824} -{name:"Unstrung comp bow", itemDescription:"An unstrung composite ogre bow.", shopValue:90, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4825} -{name:"Unstrung comp bow", itemDescription:"An unstrung composite ogre bow.", shopValue:90, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4826} -{name:"Comp ogre bow", itemDescription:"A composite ogre bow.", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4827} -{name:"Comp ogre bow", itemDescription:"A composite ogre bow.", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4828} -{name:"Book of 'h.a.m'", itemDescription:"A book of H.A.M. affiliation", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4829} -{name:"Fayrg bones", itemDescription:"Ancient ogre bones from the ogre burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4830} -{name:"Fayrg bones", itemDescription:"Ancient ogre bones from the ogre burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4831} -{name:"Raurg bones", itemDescription:"Ancient ogre bones from the ogre burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4832} -{name:"Raurg bones", itemDescription:"Ancient ogre bones from the ogre burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4833} -{name:"Ourg bones", itemDescription:"Ancient ogre bones from the burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4834} -{name:"Ourg bones", itemDescription:"Ancient ogre bones from the burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4835} -{name:"Strange potion", itemDescription:"Some strange liquid given to you by Zavistic Rarve.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4836} -{name:"Necromancy book", itemDescription:"A book of necromantic spells.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4837} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4838} -{name:"Ogre gate key", itemDescription:"A key to some sort of special tomb area.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4839} -{name:"Rogue's purse potion (unf)", itemDescription:"I need another ingredient to finish this rogue's purse potion.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4840} -{name:"Rogue's purse potion (unf)", itemDescription:"I need another ingredient to finish this rogue's purse potion.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4841} -{name:"Relicym's balm (4)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:225, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4842} -{name:"Relicym's balm (4)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:225, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4843} -{name:"Relicym's balm (3)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4844} -{name:"Relicym's balm (3)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:200, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4845} -{name:"Relicym's balm (2)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4846} -{name:"Relicym's balm (2)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4847} -{name:"Relicym's balm (1)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:75, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4848} -{name:"Relicym's balm (1)", itemDescription:"X doses of Relicym's balm, which helps cure disease.", shopValue:75, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4849} -{name:"Ogre coffin key", itemDescription:"A key which opens a coffin!", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4850} -{name:"Ogre coffin key", itemDescription:"A key which opens a coffin!", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4851} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4852} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4853} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4854} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4855} -{name:"Ahrim's hood 100", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4856} -{name:"Ahrim's hood 75", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4857} -{name:"Ahrim's hood 50", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4858} -{name:"Ahrim's hood 25", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4859} -{name:"Ahrim's hood 0", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4860} -{name:"Ahrim's hood 0", itemDescription:"Ahrim The Blighted's Hood.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 6.0, -2.0, 15.0, 13.0, 16.0, 6.0, 0.0, 15.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4861} -{name:"Ahrim's staff 100", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4862} -{name:"Ahrim's staff 75", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4863} -{name:"Ahrim's staff 50", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4864} -{name:"Ahrim's staff 25", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4865} -{name:"Ahrim's staff 0", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4866} -{name:"Ahrim's staff 0", itemDescription:"Ahrim the Blighted's quarterstaff.", shopValue:85000, lowAlch:34000, highAlch:51000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[12.0, -1.0, 65.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4867} -{name:"Ahrim's robetop 100", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4868} -{name:"Ahrim's robetop 75", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4869} -{name:"Ahrim's robetop 50", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4870} -{name:"Ahrim's robetop 25", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4871} -{name:"Ahrim's robetop 0", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4872} -{name:"Ahrim's robetop 0", itemDescription:"Ahrim the Blighted's armoured robe top.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 30.0, -10.0, 52.0, 37.0, 63.0, 30.0, 0.0, 60.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4873} -{name:"Ahrim's robeskirt 100", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4874} -{name:"Ahrim's robeskirt 75", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4875} -{name:"Ahrim's robeskirt 50", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4876} -{name:"Ahrim's robeskirt 25", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4877} -{name:"Ahrim's robeskirt 0", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4878} -{name:"Ahrim's robeskirt 0", itemDescription:"Ahrim the Blighted's armoured robe skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, 22.0, -7.0, 33.0, 30.0, 36.0, 22.0, 0.0, 30.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4879} -{name:"Dharok's helm 100", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4880} -{name:"Dharok's helm 75", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4881} -{name:"Dharok's helm 50", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4882} -{name:"Dharok's helm 25", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4883} -{name:"Dharok's helm 0", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4884} -{name:"Dharok's helm 0", itemDescription:"Dharok The Wretched's Helmet", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 45.0, 48.0, 44.0, 0.0, 51.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4885} -{name:"Dharok's greataxe 100", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4886} -{name:"Dharok's greataxe 75", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4887} -{name:"Dharok's greataxe 50", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4888} -{name:"Dharok's greataxe 25", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4889} -{name:"Dharok's greataxe 0", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4890} -{name:"Dharok's greataxe 0", itemDescription:"Dharok the Wretched's Greataxe.", shopValue:208000, lowAlch:83200, highAlch:124800, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-4.0, 103.0, 95.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4891} -{name:"Dharok's platebody 100", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4892} -{name:"Dharok's platebody 75", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4893} -{name:"Dharok's platebody 50", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4894} -{name:"Dharok's platebody 25", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4895} -{name:"Dharok's platebody 0", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4896} -{name:"Dharok's platebody 0", itemDescription:"Dharok the Wretched's platebody.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4897} -{name:"Dharok's platelegs 100", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4898} -{name:"Dharok's platelegs 75", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4899} -{name:"Dharok's platelegs 50", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4900} -{name:"Dharok's platelegs 25", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4901} -{name:"Dharok's platelegs 0", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4902} -{name:"Dharok's platelegs 0", itemDescription:"Dharok the wretched's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4903} -{name:"Guthan's helm 100", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4904} -{name:"Guthan's helm 75", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4905} -{name:"Guthan's helm 50", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4906} -{name:"Guthan's helm 25", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4907} -{name:"Guthan's helm 0", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4908} -{name:"Guthan's helm 0", itemDescription:"Guthan the Infested's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4909} -{name:"Guthan's warspear 100", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4910} -{name:"Guthan's warspear 75", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4911} -{name:"Guthan's warspear 50", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4912} -{name:"Guthan's warspear 25", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4913} -{name:"Guthan's warspear 0", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4914} -{name:"Guthan's warspear 0", itemDescription:"Guthan The Infested's Warspear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[75.0, 75.0, 75.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4915} -{name:"Guthan's platebody 100", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4916} -{name:"Guthan's platebody 75", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4917} -{name:"Guthan's platebody 50", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4918} -{name:"Guthan's platebody 25", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4919} -{name:"Guthan's platebody 0", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4920} -{name:"Guthan's platebody 0", itemDescription:"Guthan the Infested's platebody armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4921} -{name:"Guthan's chainskirt 100", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4922} -{name:"Guthan's chainskirt 75", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4923} -{name:"Guthan's chainskirt 50", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4924} -{name:"Guthan's chainskirt 25", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4925} -{name:"Guthan's chainskirt 0", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4926} -{name:"Guthan's chainskirt 0", itemDescription:"Guthan the Infested's chainskirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -14.0, -7.0, 75.0, 72.0, 73.0, -4.0, 82.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4927} -{name:"Karil's coif 100", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4928} -{name:"Karil's coif 75", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4929} -{name:"Karil's coif 50", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4930} -{name:"Karil's coif 25", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4931} -{name:"Karil's coif 0", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4932} -{name:"Karil's coif 0", itemDescription:"Karil the Tainted's coif.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 3.0, 6.0, 9.0, 12.0, 6.0, 10.0, 15.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4933} -{name:"Karil's crossbow 100", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4934} -{name:"Karil's crossbow 75", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4935} -{name:"Karil's crossbow 50", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4936} -{name:"Karil's crossbow 25", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4937} -{name:"Karil's crossbow 0", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4938} -{name:"Karil's crossbow 0", itemDescription:"Karil the Tainted's repeating crossbow.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4939} -{name:"Karil's top 100", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4940} -{name:"Karil's top 75", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4941} -{name:"Karil's top 50", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4942} -{name:"Karil's top 25", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4943} -{name:"Karil's top 0", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4944} -{name:"Karil's top 0", itemDescription:"Karil the Tainted's leatherbody.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 47.0, 42.0, 50.0, 65.0, 57.0, 60.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4945} -{name:"Karil's skirt 100", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4946} -{name:"Karil's skirt 75", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4947} -{name:"Karil's skirt 50", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4948} -{name:"Karil's skirt 25", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4949} -{name:"Karil's skirt 0", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4950} -{name:"Karil's skirt 0", itemDescription:"Karil the Tainted's leather skirt.", shopValue:47000, lowAlch:18800, highAlch:28200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 26.0, 20.0, 28.0, 35.0, 33.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4951} -{name:"Torag's helm 100", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4952} -{name:"Torag's helm 75", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4953} -{name:"Torag's helm 50", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4954} -{name:"Torag's helm 25", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4955} -{name:"Torag's helm 0", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4956} -{name:"Torag's helm 0", itemDescription:"Torag the Corrupted's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, -1.0, 62.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4957} -{name:"Torag's hammers 100", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4958} -{name:"Torag's hammers 75", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4959} -{name:"Torag's hammers 50", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4960} -{name:"Torag's hammers 25", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4961} -{name:"Torag's hammers 0", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4962} -{name:"Torag's hammers 0", itemDescription:"Torag the Corrupted's twin hammers.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[-4.0, -4.0, 85.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4963} -{name:"Torag's platebody 100", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4964} -{name:"Torag's platebody 75", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4965} -{name:"Torag's platebody 50", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4966} -{name:"Torag's platebody 25", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4967} -{name:"Torag's platebody 0", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4968} -{name:"Torag's platebody 0", itemDescription:"Torag the Corrupted's plate body armour.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 122.0, 120.0, 107.0, -6.0, 132.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4969} -{name:"Torag's platelegs 100", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4970} -{name:"Torag's platelegs 75", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4971} -{name:"Torag's platelegs 50", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4972} -{name:"Torag's platelegs 25", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4973} -{name:"Torag's platelegs 0", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4974} -{name:"Torag's platelegs 0", itemDescription:"Torag the Corrupted's plate leg armour.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, -4.0, 92.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4975} -{name:"Verac's helm 100", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4976} -{name:"Verac's helm 75", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4977} -{name:"Verac's helm 50", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4978} -{name:"Verac's helm 25", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4979} -{name:"Verac's helm 0", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4980} -{name:"Verac's helm 0", itemDescription:"Verac the Defiled's helm.", shopValue:103000, lowAlch:41200, highAlch:61800, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 55.0, 58.0, 54.0, 0.0, 56.0, 15.0, 2.0, 0.0, 5.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4981} -{name:"Verac's flail 100", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4982} -{name:"Verac's flail 75", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4983} -{name:"Verac's flail 50", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4984} -{name:"Verac's flail 25", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4985} -{name:"Verac's flail 0", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4986} -{name:"Verac's flail 0", itemDescription:"Verac the Defiled's Flail.", shopValue:160000, lowAlch:64000, highAlch:96000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[68.0, -2.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4987} -{name:"Verac's brassard 100", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4988} -{name:"Verac's brassard 75", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4989} -{name:"Verac's brassard 50", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4990} -{name:"Verac's brassard 25", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4991} -{name:"Verac's brassard 0", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4992} -{name:"Verac's brassard 0", itemDescription:"Verac The Defiled's Brassard.", shopValue:280000, lowAlch:112000, highAlch:168000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 81.0, 95.0, 85.0, 0.0, 81.0, 60.0, 5.0, 0.0, 10.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4993} -{name:"Verac's plateskirt 100", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4994} -{name:"Verac's plateskirt 75", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4995} -{name:"Verac's plateskirt 50", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4996} -{name:"Verac's plateskirt 25", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4997} -{name:"Verac's plateskirt 0", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4998} -{name:"Verac's plateskirt 0", itemDescription:"Verac the Defiled's plate skirt.", shopValue:275000, lowAlch:110000, highAlch:165000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 85.0, 82.0, 83.0, 0.0, 84.0, 30.0, 3.0, 0.0, 7.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:4999} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5000} -{name:"Raw cave eel", itemDescription:"It's incredibly slimy.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5001} -{name:"Burnt cave eel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5002} -{name:"Cave eel", itemDescription:"It's a bit slimy.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5003} -{name:"Frog spawn", itemDescription:"That's disgusting!", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5004} -{name:"Raw cave eel", itemDescription:"It's incredibly slimy.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5005} -{name:"Burnt cave eel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5006} -{name:"Cave eel", itemDescription:"It's a bit slimy.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5007} -{name:"Brooch", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5008} -{name:"Goblin symbol book", itemDescription:"A book about the ancient goblin tribes.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5009} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5010} -{name:"Silverware", itemDescription:"You found the Lumbridge silverware in the HAM cave.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5011} -{name:"Peace treaty", itemDescription:"A peace treaty between Lumbridge and the Cave Goblins.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5012} -{name:"Mining helmet", itemDescription:" A helmet with a lamp on it.", shopValue:600, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5013} -{name:"Mining helmet", itemDescription:" A helmet with a lamp on it.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5014} -{name:"Mining helmet", itemDescription:" A helmet with a lamp on it.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 5.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5015} -{name:"Bone spear", itemDescription:"Basic but brutal!", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:13.0, bonuses:[11.0, 11.0, 11.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5016} -{name:"Bone spear", itemDescription:"Basic but brutal!", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:13.0, bonuses:[11.0, 11.0, 11.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5017} -{name:"Bone club", itemDescription:"Basic but brutal!", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-4.0, -4.0, 16.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5018} -{name:"Bone club", itemDescription:"Basic but brutal!", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-4.0, -4.0, 16.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5019} -{name:"Minecart ticket", itemDescription:"A ticket to take you from the dwarven mines under Ice Mountain to Keldagrim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5020} -{name:"Minecart ticket", itemDescription:"A ticket to take you from the dwarven mines under Ice Mountain to Keldagrim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5021} -{name:"Minecart ticket", itemDescription:"A ticket to take you from the dwarven mines under Ice Mountain to Keldagrim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5022} -{name:"Minecart ticket", itemDescription:"A ticket to take you from the dwarven mines under Ice Mountain to Keldagrim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5023} -{name:"Woven top", itemDescription:"Blue top, very tiny.", shopValue:650, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5024} -{name:"Woven top", itemDescription:"Blue top, very tiny.", shopValue:650, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5025} -{name:"Woven top", itemDescription:"Blue top, very tiny.", shopValue:812, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5026} -{name:"Woven top", itemDescription:"Blue top, very tiny.", shopValue:812, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5027} -{name:"Woven top", itemDescription:"Blue top, very tiny.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5028} -{name:"Woven top", itemDescription:"Blue top, very tiny.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5029} -{name:"Shirt", itemDescription:"", shopValue:585, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5030} -{name:"Shirt", itemDescription:"", shopValue:585, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5031} -{name:"Shirt", itemDescription:"", shopValue:780, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5032} -{name:"Shirt", itemDescription:"", shopValue:780, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5033} -{name:"Shirt", itemDescription:"", shopValue:812, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5034} -{name:"Shirt", itemDescription:"", shopValue:812, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5035} -{name:"Trousers", itemDescription:"", shopValue:715, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5036} -{name:"Trousers", itemDescription:"", shopValue:715, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5037} -{name:"Trousers", itemDescription:"", shopValue:910, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5038} -{name:"Trousers", itemDescription:"", shopValue:910, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5039} -{name:"Trousers", itemDescription:"", shopValue:975, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5040} -{name:"Trousers", itemDescription:"", shopValue:975, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5041} -{name:"Shorts", itemDescription:"", shopValue:364, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5042} -{name:"Shorts", itemDescription:"", shopValue:364, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5043} -{name:"Shorts", itemDescription:"", shopValue:468, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5044} -{name:"Shorts", itemDescription:"", shopValue:468, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5045} -{name:"Shorts", itemDescription:"", shopValue:507, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5046} -{name:"Shorts", itemDescription:"", shopValue:507, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5047} -{name:"Skirt", itemDescription:"", shopValue:455, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5048} -{name:"Skirt", itemDescription:"", shopValue:455, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5049} -{name:"Skirt", itemDescription:"", shopValue:715, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5050} -{name:"Skirt", itemDescription:"", shopValue:715, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5051} -{name:"Skirt", itemDescription:"", shopValue:812, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5052} -{name:"Skirt", itemDescription:"", shopValue:812, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5053} -{name:"Dwarf", itemDescription:"A short angry guy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5054} -{name:"Dwarf", itemDescription:"A short angry guy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5055} -{name:"Dwarven battleaxe", itemDescription:"This looks very rusty and worn;", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5056} -{name:"Dwarven battleaxe", itemDescription:"This looks very rusty and worn;", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5057} -{name:"Dwarven battleaxe", itemDescription:"This looks very rusty and worn;", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5058} -{name:"Dwarven battleaxe", itemDescription:"This looks very rusty and worn;", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5059} -{name:"Dwarven battleaxe", itemDescription:"This looks very rusty and worn;", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5060} -{name:"Dwarven battleaxe", itemDescription:"This looks very rusty and worn;", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5061} -{name:"Left boot", itemDescription:"One of a pair I assume.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5062} -{name:"Right boot", itemDescription:"A good looking boot, for the right foot. Literally.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5063} -{name:"Exquisite boots", itemDescription:"A lovely pair of boots.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5064} -{name:"Book on costumes", itemDescription:"An old library book. It bears the title 'Scholars to Dwarven Costumes'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5065} -{name:"Meeting notes", itemDescription:"These notes are from a meeting of the Keldagrim Consortium.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5066} -{name:"Exquisite clothes", itemDescription:"Clothes for the sculptor's model.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5067} -{name:"Master farmer", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5068} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5069} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5070} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5071} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5072} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5073} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5074} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5075} -{name:"Bird's egg", itemDescription:"A green/red/blue bird's egg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5076} -{name:"Bird's egg", itemDescription:"A green/red/blue bird's egg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5077} -{name:"Bird's egg", itemDescription:"A green/red/blue bird's egg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5078} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5079} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5080} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5081} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5082} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5083} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5084} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5085} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5086} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5087} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5088} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5089} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5090} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5091} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5092} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5093} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5094} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5095} -{name:"Marigold seed", itemDescription:"", shopValue:84, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5096} -{name:"Rosemary seed", itemDescription:"", shopValue:98, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5097} -{name:"Nasturtium seed", itemDescription:"", shopValue:11, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5098} -{name:"Woad seed", itemDescription:"", shopValue:11, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5099} -{name:"Limpwurt seed", itemDescription:"", shopValue:12, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5100} -{name:"Redberry seed", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5101} -{name:"Cadavaberry seed", itemDescription:"", shopValue:9, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5102} -{name:"Dwellberry seed", itemDescription:"", shopValue:25, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5103} -{name:"Jangerberry seed", itemDescription:"", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5104} -{name:"Whiteberry seed", itemDescription:"", shopValue:133, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5105} -{name:"Poison ivy seed", itemDescription:"", shopValue:166, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5106} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5107} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5108} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5109} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5110} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5111} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5112} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5113} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5114} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5115} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5116} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5117} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5118} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5119} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5120} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5121} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5122} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5123} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5124} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5125} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5126} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5127} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5128} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5129} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5130} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5131} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5132} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5133} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5134} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5135} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5136} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5137} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5138} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5139} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5140} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5141} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5142} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5143} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5144} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5145} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5146} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5147} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5148} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5149} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5150} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5151} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5152} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5153} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5154} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5155} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5156} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5157} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5158} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5159} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5160} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5161} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5162} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5163} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5164} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5165} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5166} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5167} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5168} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5169} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5170} -{name:"Seeds", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5171} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5172} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5173} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5174} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5175} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5176} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5177} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5178} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5179} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5180} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5181} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5182} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5183} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5184} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5185} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5186} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5187} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5188} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5189} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5190} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5191} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5192} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5193} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5194} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5195} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5196} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5197} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5198} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5199} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5200} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5201} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5202} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5203} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5204} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5205} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5206} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5207} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5208} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5209} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5210} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5211} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5212} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5213} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5214} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5215} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5216} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5217} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5218} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5219} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5220} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5221} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5222} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5223} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5224} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5225} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5226} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5227} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5228} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5229} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5230} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5231} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5232} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5233} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5234} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5235} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5236} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5237} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5238} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5239} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5240} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5241} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5242} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5243} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5244} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5245} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5246} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5247} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5248} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5249} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5250} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5251} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5252} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5253} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5254} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5255} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5256} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5257} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5258} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5259} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5260} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5261} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5262} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5263} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5264} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5265} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5266} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5267} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5268} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5269} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5270} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5271} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5272} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5273} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5274} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5275} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5276} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5277} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5278} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5279} -{name:"Cactus seed", itemDescription:"", shopValue:99, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5280} -{name:"Belladonna seed", itemDescription:"", shopValue:177, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5281} -{name:"Mushroom spore", itemDescription:"", shopValue:86, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5282} -{name:"Apple tree seed", itemDescription:"", shopValue:13, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5283} -{name:"Banana tree seed", itemDescription:"", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5284} -{name:"Orange tree seed", itemDescription:"", shopValue:31, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5285} -{name:"Curry tree seed", itemDescription:"", shopValue:39, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5286} -{name:"Pineapple seed", itemDescription:"", shopValue:74, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5287} -{name:"Papaya tree seed", itemDescription:"", shopValue:115, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5288} -{name:"Palm tree seed", itemDescription:"", shopValue:254, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5289} -{name:"Calquat tree seed", itemDescription:"", shopValue:340, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5290} -{name:"Guam seed", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5291} -{name:"Marrentill seed", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5292} -{name:"Tarromin seed", itemDescription:"", shopValue:7, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5293} -{name:"Harralander seed", itemDescription:"", shopValue:12, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5294} -{name:"Ranarr seed", itemDescription:"", shopValue:19, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5295} -{name:"Toadflax seed", itemDescription:"", shopValue:34, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5296} -{name:"Irit seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5297} -{name:"Avantoe seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5298} -{name:"Kwuarm seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5299} -{name:"Snapdragon seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5300} -{name:"Cadantine seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5301} -{name:"Lantadyme seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5302} -{name:"Dwarf weed seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5303} -{name:"Torstol seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5304} -{name:"Barley seed", itemDescription:"", shopValue:38, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5305} -{name:"Jute seed", itemDescription:"", shopValue:86, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5306} -{name:"Hammerstone seed", itemDescription:"", shopValue:52, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5307} -{name:"Asgarnian seed", itemDescription:"", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5308} -{name:"Yanillian seed", itemDescription:"", shopValue:210, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5309} -{name:"Krandorian seed", itemDescription:"", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5310} -{name:"Wildblood seed", itemDescription:"", shopValue:14, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5311} -{name:"Acorn", itemDescription:"", shopValue:6, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5312} -{name:"Willow seed", itemDescription:"", shopValue:16, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5313} -{name:"Maple seed", itemDescription:"", shopValue:48, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5314} -{name:"Yew seed", itemDescription:"", shopValue:143, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5315} -{name:"Magic seed", itemDescription:"", shopValue:422, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5316} -{name:"Spirit seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5317} -{name:"Potato seed", itemDescription:"", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5318} -{name:"Onion seed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5319} -{name:"Sweetcorn seed", itemDescription:"", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5320} -{name:"Watermelon seed", itemDescription:"", shopValue:56, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5321} -{name:"Tomato seed", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5322} -{name:"Strawberry seed", itemDescription:"", shopValue:18, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5323} -{name:"Cabbage seed", itemDescription:"", shopValue:25, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5324} -{name:"Gardening trowel", itemDescription:"Not suitable for archaeological digs.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5325} -{name:"Gardening trowel", itemDescription:"Not suitable for archaeological digs.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5326} -{name:"Spade handle", itemDescription:"I need to attach this to its head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5327} -{name:"Spade head", itemDescription:"I need to attach this to its handle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5328} -{name:"Secateurs", itemDescription:"Good for pruning away diseased leaves.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5329} -{name:"Secateurs", itemDescription:"Good for pruning away diseased leaves.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5330} -{name:"Watering can", itemDescription:"See article", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5331} -{name:"Watering can", itemDescription:"See article", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5332} -{name:"Watering can (1)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5333} -{name:"Watering can (2)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5334} -{name:"Watering can (3)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5335} -{name:"Watering can (4)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5336} -{name:"Watering can (5)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5337} -{name:"Watering can (6)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5338} -{name:"Watering can (7)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5339} -{name:"Watering can (8)", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5340} -{name:"Rake", itemDescription:"Use this to clear weeds.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5341} -{name:"Rake", itemDescription:"Use this to clear weeds.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5342} -{name:"Seed dibber", itemDescription:"Use this to plant seeds with.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5343} -{name:"Seed dibber", itemDescription:"Use this to plant seeds with.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5344} -{name:"Gardening boots", itemDescription:"A pair of gardening boots.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5345} -{name:"Gardening boots", itemDescription:"A pair of gardening boots.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5346} -{name:"Rake handle", itemDescription:"I need to reattach this to its head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5347} -{name:"Rake head", itemDescription:"I need to reattach this to its handle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5348} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5349} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5350} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5351} -{name:"Unfired plant pot", itemDescription:"An unfired plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5352} -{name:"Unfired plant pot", itemDescription:"An unfired plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5353} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5354} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5355} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5356} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5357} -{name:"Oak seedling", itemDescription:"An acorn has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5358} -{name:"Willow seedling", itemDescription:"A willow tree seed has been sown and watered in this plant pot", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5359} -{name:"Maple seedling", itemDescription:"A maple tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5360} -{name:"Yew seedling", itemDescription:"A yew seed has been sown in the plant pot", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5361} -{name:"Magic seedling", itemDescription:"A magic tree seed has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5362} -{name:"Spirit seedling", itemDescription:"A spirit seedling is growing in this pot. It has been sown and watered.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5363} -{name:"Oak seedling", itemDescription:"An acorn has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5364} -{name:"Willow seedling", itemDescription:"A willow tree seed has been sown and watered in this plant pot", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5365} -{name:"Maple seedling", itemDescription:"A maple tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5366} -{name:"Yew seedling", itemDescription:"A yew seed has been sown in the plant pot", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5367} -{name:"Magic seedling", itemDescription:"A magic tree seed has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5368} -{name:"Spirit seedling", itemDescription:"A spirit seedling is growing in this pot. It has been sown and watered.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5369} -{name:"Oak sapling", itemDescription:"This sapling is ready to be planted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5370} -{name:"Willow sapling", itemDescription:"This sapling is ready to be replanted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5371} -{name:"Maple sapling", itemDescription:"This sapling is ready to be planted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5372} -{name:"Yew sapling", itemDescription:"This sapling is ready to be planted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5373} -{name:"Magic sapling", itemDescription:"This sapling is ready to be planted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5374} -{name:"Spirit sapling", itemDescription:"This sapling is ready to be planted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5375} -{name:"Basket", itemDescription:"An empty fruit basket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5376} -{name:"Basket", itemDescription:"An empty fruit basket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5377} -{name:"Apples (1)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5378} -{name:"Apples (1)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5379} -{name:"Apples (2)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5380} -{name:"Apples (2)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5381} -{name:"Apples (3)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5382} -{name:"Apples (3)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5383} -{name:"Apples (4)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5384} -{name:"Apples (4)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5385} -{name:"Apples (5)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5386} -{name:"Apples (5)", itemDescription:"A fruit basket filled with apples.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5387} -{name:"Oranges (1)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5388} -{name:"Oranges (1)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5389} -{name:"Oranges (2)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5390} -{name:"Oranges (2)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5391} -{name:"Oranges (3)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5392} -{name:"Oranges (3)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5393} -{name:"Oranges (4)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5394} -{name:"Oranges (4)", itemDescription:"A fruit basket filled with oranges", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5395} -{name:"Oranges (5)", itemDescription:"A common fruit.", shopValue:0, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5396} -{name:"Oranges (5)", itemDescription:"A common fruit.", shopValue:0, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5397} -{name:"Strawberries (1)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5398} -{name:"Strawberries (1)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5399} -{name:"Strawberries (2)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5400} -{name:"Strawberries (2)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5401} -{name:"Strawberries (3)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5402} -{name:"Strawberries (3)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5403} -{name:"Strawberries (4)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5404} -{name:"Strawberries (4)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5405} -{name:"Strawberries (5)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5406} -{name:"Strawberries (5)", itemDescription:"A fruit basket filled with strawberries.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5407} -{name:"Bananas (1)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5408} -{name:"Bananas (1)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5409} -{name:"Bananas (2)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5410} -{name:"Bananas (2)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5411} -{name:"Bananas (3)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5412} -{name:"Bananas (3)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5413} -{name:"Bananas (4)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5414} -{name:"Bananas (4)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5415} -{name:"Bananas (5)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5416} -{name:"Bananas (5)", itemDescription:"A fruit basket filled with bananas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5417} -{name:"Empty sack", itemDescription:"An empty sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5418} -{name:"Empty sack", itemDescription:"An empty sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5419} -{name:"Potatoes (1)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5420} -{name:"Potatoes (1)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5421} -{name:"Potatoes (2)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5422} -{name:"Potatoes (2)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5423} -{name:"Potatoes (3)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5424} -{name:"Potatoes (3)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5425} -{name:"Potatoes (4)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5426} -{name:"Potatoes (4)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5427} -{name:"Potatoes (5)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5428} -{name:"Potatoes (5)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5429} -{name:"Potatoes (6)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5430} -{name:"Potatoes (6)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5431} -{name:"Potatoes (7)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5432} -{name:"Potatoes (7)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5433} -{name:"Potatoes (8)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5434} -{name:"Potatoes (8)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5435} -{name:"Potatoes (9)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5436} -{name:"Potatoes (9)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5437} -{name:"Potatoes (10)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5438} -{name:"Potatoes (10)", itemDescription:"There are <number of potatoes> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5439} -{name:"Onions (1)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5440} -{name:"Onions (1)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5441} -{name:"Onions (2)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5442} -{name:"Onions (2)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5443} -{name:"Onions (3)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5444} -{name:"Onions (3)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5445} -{name:"Onions (4)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5446} -{name:"Onions (4)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5447} -{name:"Onions (5)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5448} -{name:"Onions (5)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5449} -{name:"Onions (6)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5450} -{name:"Onions (6)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5451} -{name:"Onions (7)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5452} -{name:"Onions (7)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5453} -{name:"Onions (8)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5454} -{name:"Onions (8)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5455} -{name:"Onions (9)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5456} -{name:"Onions (9)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5457} -{name:"Onions (10)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5458} -{name:"Onions (10)", itemDescription:"There are/is (1-10) onion(s) in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5459} -{name:"Cabbages (1)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5460} -{name:"Cabbages (1)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5461} -{name:"Cabbages (2)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5462} -{name:"Cabbages (2)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5463} -{name:"Cabbages (3)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5464} -{name:"Cabbages (3)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5465} -{name:"Cabbages (4)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5466} -{name:"Cabbages (4)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5467} -{name:"Cabbages (5)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5468} -{name:"Cabbages (5)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5469} -{name:"Cabbages (6)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5470} -{name:"Cabbages (6)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5471} -{name:"Cabbages (7)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5472} -{name:"Cabbages (7)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5473} -{name:"Cabbages (8)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5474} -{name:"Cabbages (8)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5475} -{name:"Cabbages (9)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5476} -{name:"Cabbages (9)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5477} -{name:"Cabbages (10)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5478} -{name:"Cabbages (10)", itemDescription:"There are <number of cabbages> in this sack.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5479} -{name:"Apple seedling", itemDescription:"An apple tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5480} -{name:"Banana seedling", itemDescription:"A banana tree seed has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5481} -{name:"Orange seedling", itemDescription:"An orange tree seed has been sown (and watered)in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5482} -{name:"Curry seedling", itemDescription:"A curry seed has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5483} -{name:"Pineapple seedling", itemDescription:"A pineapple tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5484} -{name:"Papaya seedling", itemDescription:"This needs watering before it will grow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5485} -{name:"Palm seedling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:66.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5486} -{name:"Calquat seedling", itemDescription:"A calquat tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5487} -{name:"Apple seedling", itemDescription:"An apple tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5488} -{name:"Banana seedling", itemDescription:"A banana tree seed has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5489} -{name:"Orange seedling", itemDescription:"An orange tree seed has been sown (and watered)in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5490} -{name:"Curry seedling", itemDescription:"A curry seed has been sown and watered in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5491} -{name:"Pineapple seedling", itemDescription:"A pineapple tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5492} -{name:"Papaya seedling", itemDescription:"This needs watering before it will grow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5493} -{name:"Palm seedling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:66.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5494} -{name:"Calquat seedling", itemDescription:"A calquat tree has been sown (and watered) in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5495} -{name:"Apple sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5496} -{name:"Banana sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5497} -{name:"Orange sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5498} -{name:"Curry sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5499} -{name:"Pineapple sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5500} -{name:"Papaya sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5501} -{name:"Palm sapling", itemDescription:"This sapling is ready to be replanted in a fruit tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5502} -{name:"Calquat sapling", itemDescription:"This sapling is ready to be planted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5503} -{name:"Strawberry", itemDescription:"A freshly picked strawberry.", shopValue:17, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5504} -{name:"Strawberry", itemDescription:"A freshly picked strawberry.", shopValue:17, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5505} -{name:"Old man's message", itemDescription:"The Wise Old Man of Draynor Village asked you to take this to someone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5506} -{name:"Strange book", itemDescription:"A tatty old book belonging to the Wise Old Man of Draynor Village.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5507} -{name:"Book of folklore", itemDescription:"A tatty old book belonging to the Wise Old Man of Draynor Village.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5508} -{name:"Small pouch", itemDescription:"A small pouch used for storing essence.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5509} -{name:"Medium pouch", itemDescription:"A medium-sized pouch used for storing essence.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5510} -{name:"Medium pouch", itemDescription:"A medium-sized pouch used for storing essence.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5511} -{name:"Large pouch", itemDescription:"A large pouch used for storing essence.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5512} -{name:"Large pouch", itemDescription:"A large pouch used for storing essence.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5513} -{name:"Giant pouch", itemDescription:"A giant-sized pouch used for storing essence.", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5514} -{name:"Giant pouch", itemDescription:"A giant-sized pouch used for storing essence.", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5515} -{name:"Elemental talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5516} -{name:"Elemental talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5517} -{name:"Scrying orb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5518} -{name:"Scrying orb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5519} -{name:"Abyssal book", itemDescription:"Some research notes on abyssal space.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5520} -{name:"Binding necklace", itemDescription:"A necklace embedded with mystical power.", shopValue:1425, lowAlch:570, highAlch:855, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5521} -{name:"Binding necklace", itemDescription:"A necklace embedded with mystical power.", shopValue:1425, lowAlch:570, highAlch:855, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5522} -{name:"Tiara mould", itemDescription:"A mould for tiaras.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5523} -{name:"Tiara mould", itemDescription:"A mould for tiaras.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5524} -{name:"Tiara", itemDescription:"Makes me feel like a Princess.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5525} -{name:"Tiara", itemDescription:"Makes me feel like a Princess.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5526} -{name:"Air tiara", itemDescription:"A tiara infused with the properties of air.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5527} -{name:"Air tiara", itemDescription:"A tiara infused with the properties of air.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5528} -{name:"Mind tiara", itemDescription:"A tiara infused with the properties of the mind.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5529} -{name:"Mind tiara", itemDescription:"A tiara infused with the properties of the mind.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5530} -{name:"Water tiara", itemDescription:"A tiara infused with the properties of water.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5531} -{name:"Water tiara", itemDescription:"A tiara infused with the properties of water.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5532} -{name:"Body tiara", itemDescription:"A tiara infused with the properties of the body.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5533} -{name:"Body tiara", itemDescription:"A tiara infused with the properties of the body.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5534} -{name:"Earth tiara", itemDescription:"A tiara infused with the properties of the earth.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5535} -{name:"Earth tiara", itemDescription:"A tiara infused with the properties of the earth.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5536} -{name:"Fire tiara", itemDescription:"A tiara infused with the properties of fire.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5537} -{name:"Fire tiara", itemDescription:"A tiara infused with the properties of fire.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5538} -{name:"Cosmic tiara", itemDescription:"A tiara infused with the properties of the cosmos.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5539} -{name:"Cosmic tiara", itemDescription:"A tiara infused with the properties of the cosmos.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5540} -{name:"Nature tiara", itemDescription:"A tiara infused with the properties of nature.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5541} -{name:"Nature tiara", itemDescription:"A tiara infused with the properties of nature.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5542} -{name:"Chaos tiara", itemDescription:"A tiara infused with the properties of chaos.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5543} -{name:"Chaos tiara", itemDescription:"A tiara infused with the properties of chaos.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5544} -{name:"Law tiara", itemDescription:"A tiara infused with the properties of law.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5545} -{name:"Law tiara", itemDescription:"A tiara infused with the properties of law.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5546} -{name:"Death tiara", itemDescription:"A tiara infused with the properties of death.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5547} -{name:"Death tiara", itemDescription:"A tiara infused with the properties of death.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5548} -{name:"Blood tiara", itemDescription:"A tiara infused with the properties of Blood.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5549} -{name:"Blood tiara", itemDescription:"A tiara infused with the properties of Blood.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5550} -{name:"Soul tiara", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5551} -{name:"Soul tiara", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5552} -{name:"Rogue top", itemDescription:"Black banded leather armour, a rogue's dream!", shopValue:0, lowAlch:250, highAlch:375, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5553} -{name:"Rogue mask", itemDescription:"Black banded leather armour, a rogue's dream!", shopValue:375, lowAlch:150, highAlch:225, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5554} -{name:"Rogue trousers", itemDescription:"Black banded leather armour, a rogue's dream!", shopValue:0, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5555} -{name:"Rogue gloves", itemDescription:"Black banded leather gloves, a rogue's dream!", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5556} -{name:"Rogue boots", itemDescription:"Black banded leather boots, a rogue's dream!", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5557} -{name:"Rogue kit", itemDescription:"It can do almost anything!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5558} -{name:"Flash powder", itemDescription:"A small satchel of bright powder!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5559} -{name:"Stethoscope", itemDescription:"A useful hearing aid.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5560} -{name:"Mystic jewel", itemDescription:"I can escape the Maze with this!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5561} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5562} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5563} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5564} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5565} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5566} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5567} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5568} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5569} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5570} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5571} -{name:"Dial", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5572} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5573} -{name:"Initiate sallet", itemDescription:"An initiate Temple Knight's helm.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 13.0, 14.0, 11.0, -1.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5574} -{name:"Initiate hauberk", itemDescription:"An initiate Temple Knight's Armour.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 46.0, 44.0, 38.0, -6.0, 44.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5575} -{name:"Initiate cuisse", itemDescription:"An initiate Temple Knight's leg armour.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5576} -{name:"Cupric sulphate", itemDescription:"A vial of something labelled 'Cupric Sulfate'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5577} -{name:"Acetic acid", itemDescription:"A vial of something labelled 'Acetic Acid'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5578} -{name:"Gypsum", itemDescription:"A vial of something labelled 'Gypsum'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5579} -{name:"Sodium chloride", itemDescription:"A vial of something labelled 'Sodium Chloride'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5580} -{name:"Nitrous oxide", itemDescription:"A vial of something labelled 'Nitrous Oxide'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5581} -{name:"Vial of liquid", itemDescription:"A vial of something labelled Dihydrogen Monoxide.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5582} -{name:"Tin ore powder", itemDescription:"A vial of something labelled 'Powdered Tin Ore'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5583} -{name:"Cupric ore powder", itemDescription:"A vial of something labelled 'Powdered Cupric Ore'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5584} -{name:"Bronze key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5585} -{name:"Metal spade", itemDescription:"It's a metal spade without a handle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5586} -{name:"Metal spade", itemDescription:"It's a metal spade without a handle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5587} -{name:"Alchemical notes", itemDescription:"Looks like a pretty boring read.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5588} -{name:"??? mixture", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5589} -{name:"??? mixture", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5590} -{name:"??? mixture", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5591} -{name:"Tin", itemDescription:"This needs refining.", shopValue:10, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5592} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5593} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5594} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5595} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5596} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5597} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5598} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5599} -{name:"Tin", itemDescription:"This needs refining.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5600} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:0, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5601} -{name:"Bronze wire", itemDescription:"Useful for crafting items.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5602} -{name:"Shears", itemDescription:"For shearing sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5603} -{name:"Magnet", itemDescription:"A very attractive magnet.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5604} -{name:"Knife", itemDescription:"A dangerous looking knife.", shopValue:6, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5605} -{name:"Makeover voucher", itemDescription:"I can exchange this for one free makeover with the makeover mage.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5606} -{name:"Grain", itemDescription:" Baby bread. Grain (on right): A sack full of grain", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5607} -{name:"Fox", itemDescription:"A cunning animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5608} -{name:"Chicken", itemDescription:" Yep. Definitely a chicken.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5609} -{name:"Hourglass", itemDescription:"There's not much sand left in the top half...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5610} -{name:"Initiate sallet", itemDescription:"An initiate Temple Knight's helm.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 13.0, 14.0, 11.0, -1.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5611} -{name:"Initiate hauberk", itemDescription:"An initiate Temple Knight's Armour.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 46.0, 44.0, 38.0, -6.0, 44.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5612} -{name:"Initiate cuisse", itemDescription:"An initiate Temple Knight's leg armour.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 24.0, 22.0, 20.0, -4.0, 22.0, 5.0, 1.0, 0.0, 2.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5613} -{name:"Magic carpet", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5614} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5615} -{name:"Bronze arrow (p+)", itemDescription:"Arrows with bronze heads.", shopValue:1, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5616} -{name:"Iron arrow (p+)", itemDescription:"Arrows with iron heads.", shopValue:3, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5617} -{name:"Steel arrow (p+)", itemDescription:"Arrows with steel heads.", shopValue:12, lowAlch:18, highAlch:27, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5618} -{name:"Mithril arrow (p+)", itemDescription:"Arrows with mithril heads.", shopValue:32, lowAlch:30, highAlch:45, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5619} -{name:"Adamant arrow (p+)", itemDescription:"Arrows with adamantite heads.", shopValue:80, lowAlch:68, highAlch:103, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5620} -{name:"Rune arrow (p+)", itemDescription:"Arrows with rune heads.", shopValue:400, lowAlch:204, highAlch:306, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5621} -{name:"Bronze arrow (p++)", itemDescription:"Arrows with bronze heads.", shopValue:1, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5622} -{name:"Iron arrow (p++)", itemDescription:"Arrows with iron heads.", shopValue:3, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5623} -{name:"Steel arrow (p++)", itemDescription:"Arrows with steel heads.", shopValue:12, lowAlch:18, highAlch:27, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5624} -{name:"Mithril arrow (p++)", itemDescription:"Arrows with mithril heads.", shopValue:32, lowAlch:30, highAlch:45, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5625} -{name:"Adamant arrow (p++)", itemDescription:"Arrows with adamantite heads.", shopValue:80, lowAlch:68, highAlch:103, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5626} -{name:"Rune arrow (p++)", itemDescription:"Arrows with rune heads.", shopValue:400, lowAlch:204, highAlch:306, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5627} -{name:"Bronze dart (p+)", itemDescription:"A deadly throwing dart with a bronze tip.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5628} -{name:"Iron dart (p+)", itemDescription:"A deadly throwing dart with an iron tip.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5629} -{name:"Steel dart (p+)", itemDescription:"A deadly throwing dart with a steel tip.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5630} -{name:"Black dart (p+)", itemDescription:"A deadly throwing dart with a black tip.", shopValue:18, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5631} -{name:"Mithril dart (p+)", itemDescription:"A deadly throwing dart with a mithril tip.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5632} -{name:"Adamant dart (p+)", itemDescription:"A deadly throwing dart with an adamantite tip.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5633} -{name:"Rune dart (p+)", itemDescription:"A deadly throwing dart with a rune tip.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5634} -{name:"Bronze dart (p++)", itemDescription:"A deadly throwing dart with a bronze tip.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5635} -{name:"Iron dart (p++)", itemDescription:"A deadly throwing dart with an iron tip.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5636} -{name:"Steel dart (p++)", itemDescription:"A deadly throwing dart with a steel tip.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5637} -{name:"Black dart (p++)", itemDescription:"A deadly throwing dart with a black tip.", shopValue:18, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5638} -{name:"Mithril dart (p++)", itemDescription:"A deadly throwing dart with a mithril tip.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5639} -{name:"Adamant dart (p++)", itemDescription:"A deadly throwing dart with an adamantite tip.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5640} -{name:"Rune dart (p++)", itemDescription:"A deadly throwing dart with a rune tip.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5641} -{name:"Bronze javelin (p+)", itemDescription:"A bronze-tipped javelin.", shopValue:4, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5642} -{name:"Iron javelin (p+)", itemDescription:"An iron-tipped javelin.", shopValue:6, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5643} -{name:"Steel javelin (p+)", itemDescription:"A steel-tipped javelin.", shopValue:24, lowAlch:14, highAlch:22, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5644} -{name:"Mithril javelin (p+)", itemDescription:"A mithril tipped javelin.", shopValue:64, lowAlch:39, highAlch:58, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5645} -{name:"Adamant javelin (p+)", itemDescription:"An adamant tipped javelin.", shopValue:160, lowAlch:98, highAlch:147, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5646} -{name:"Rune javelin (p+)", itemDescription:"A rune tipped javelin.", shopValue:400, lowAlch:249, highAlch:374, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5647} -{name:"Bronze jav'n (p++)", itemDescription:"A bronze-tipped javelin.", shopValue:4, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5648} -{name:"Iron javelin (p++)", itemDescription:"An iron-tipped javelin.", shopValue:6, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5649} -{name:"Steel javelin (p++)", itemDescription:"A steel-tipped javelin.", shopValue:24, lowAlch:14, highAlch:22, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5650} -{name:"Mithril javelin (p++)", itemDescription:"A mithril tipped javelin.", shopValue:64, lowAlch:39, highAlch:58, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5651} -{name:"Adamant javelin (p++)", itemDescription:"An adamant tipped javelin.", shopValue:160, lowAlch:98, highAlch:147, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5652} -{name:"Rune javelin (p++)", itemDescription:"A rune tipped javelin.", shopValue:400, lowAlch:249, highAlch:374, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5653} -{name:"Bronze knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:1, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5654} -{name:"Iron knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:3, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5655} -{name:"Steel knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:10, lowAlch:27, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5656} -{name:"Mithril knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:27, lowAlch:10, highAlch:16, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5657} -{name:"Black knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:18, lowAlch:7, highAlch:11, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5658} -{name:"Adamant knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:66, lowAlch:26, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5659} -{name:"Rune knife (p+)", itemDescription:"A finely balanced throwing knife.", shopValue:166, lowAlch:66, highAlch:100, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5660} -{name:"Bronze knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:1, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5661} -{name:"Iron knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:3, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5662} -{name:"Steel knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:10, lowAlch:27, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5663} -{name:"Mithril knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:27, lowAlch:10, highAlch:16, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5664} -{name:"Black knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:18, lowAlch:7, highAlch:11, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5665} -{name:"Adamant knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:66, lowAlch:26, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5666} -{name:"Rune knife (p++)", itemDescription:"A finely balanced throwing knife.", shopValue:166, lowAlch:66, highAlch:100, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5667} -{name:"Iron dagger (p+)", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5668} -{name:"Iron dagger (p+)", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5669} -{name:"Bronze dagger (p+)", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5670} -{name:"Bronze dagger (p+)", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5671} -{name:"Steel dagger (p+)", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5672} -{name:"Steel dagger (p+)", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5673} -{name:"Mithril dagger (p+)", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5674} -{name:"Mithril dagger (p+)", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5675} -{name:"Adamant dagger (p+)", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5676} -{name:"Adamant dagger (p+)", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5677} -{name:"Rune dagger (p+)", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5678} -{name:"Rune dagger (p+)", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5679} -{name:"Dragon dagger (p+)", itemDescription:"A powerful dagger.", shopValue:24000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5680} -{name:"Dragon dagger (p+)", itemDescription:"A powerful dagger.", shopValue:24000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5681} -{name:"Black dagger (p+)", itemDescription:"A vicious black dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5682} -{name:"Black dagger (p+)", itemDescription:"A vicious black dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5683} -{name:"Poison dagger (p+)", itemDescription:"", shopValue:565, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5684} -{name:"Poison dagger (p+)", itemDescription:"", shopValue:565, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5685} -{name:"Iron dagger (p++)", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5686} -{name:"Iron dagger (p++)", itemDescription:"Short but pointy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5687} -{name:"Bronze dagger (p++)", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5688} -{name:"Bronze dagger (p++)", itemDescription:"Short but pointy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5689} -{name:"Steel dagger (p++)", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5690} -{name:"Steel dagger (p++)", itemDescription:"Short but pointy.", shopValue:125, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:4.0, bonuses:[8.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5691} -{name:"Mithril dagger (p++)", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5692} -{name:"Mithril dagger (p++)", itemDescription:"A dangerous dagger.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:3.0, bonuses:[11.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5693} -{name:"Adamant dagger (p++)", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5694} -{name:"Adamant dagger (p++)", itemDescription:"Short and deadly.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:4.0, bonuses:[15.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5695} -{name:"Rune dagger (p++)", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5696} -{name:"Rune dagger (p++)", itemDescription:"A powerful dagger.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5697} -{name:"Dragon dagger (p++)", itemDescription:"A powerful dagger.", shopValue:24000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5698} -{name:"Dragon dagger (p++)", itemDescription:"A powerful dagger.", shopValue:24000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5699} -{name:"Black dagger (p++)", itemDescription:"Short but pointy.", shopValue:240, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5700} -{name:"Black dagger (p++)", itemDescription:"Short but pointy.", shopValue:240, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[4.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5701} -{name:"Poison dagger (p++)", itemDescription:"", shopValue:565, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5702} -{name:"Poison dagger (p++)", itemDescription:"", shopValue:565, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5703} -{name:"Bronze spear (p+)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5704} -{name:"Bronze spear (p+)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5705} -{name:"Iron spear (p+)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5706} -{name:"Iron spear (p+)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5707} -{name:"Steel spear (p+)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5708} -{name:"Steel spear (p+)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5709} -{name:"Mithril spear (p+)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5710} -{name:"Mithril spear (p+)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5711} -{name:"Adamant spear (p+)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5712} -{name:"Adamant spear (p+)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5713} -{name:"Rune spear (p+)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5714} -{name:"Rune spear (p+)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5715} -{name:"Dragon spear (p+)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5716} -{name:"Dragon spear (p+)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:true, isNoteable:true, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5717} -{name:"Bronze spear (p++)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5718} -{name:"Bronze spear (p++)", itemDescription:"A bronze tipped spear.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5719} -{name:"Iron spear (p++)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5720} -{name:"Iron spear (p++)", itemDescription:"An iron tipped spear.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:22.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5721} -{name:"Steel spear (p++)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5722} -{name:"Steel spear (p++)", itemDescription:"A steel tipped spear.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5723} -{name:"Mithril spear (p++)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5724} -{name:"Mithril spear (p++)", itemDescription:"A mithril tipped spear.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5725} -{name:"Adamant spear (p++)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5726} -{name:"Adamant spear (p++)", itemDescription:"An adamant tipped spear.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5727} -{name:"Rune spear (p++)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5728} -{name:"Rune spear (p++)", itemDescription:"A rune tipped spear.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5729} -{name:"Dragon spear (p++)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5730} -{name:"Dragon spear (p++)", itemDescription:"A dragon tipped spear.", shopValue:62400, lowAlch:24960, highAlch:37440, isStackable:true, isNoteable:true, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5731} -{name:"Stool", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5732} -{name:"Rotten potato", itemDescription:"Yuk!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5733} -{name:"Black spear (p+)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5734} -{name:"Black spear (p+)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5735} -{name:"Black spear (p++)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5736} -{name:"Black spear (p++)", itemDescription:"A black tipped spear.", shopValue:750, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:22.0, bonuses:[15.0, 15.0, 15.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5737} -{name:"Woad leaf", itemDescription:"A slightly bluish leaf.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5738} -{name:"Asgarnian ale (m)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5739} -{name:"Asgarnian ale (m)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5740} -{name:"Mature wmb", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5741} -{name:"Mature wmb", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5742} -{name:"Greenman's ale (m)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5743} -{name:"Greenman's ale (m)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5744} -{name:"Dragon bitter (m)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5745} -{name:"Dragon bitter (m)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5746} -{name:"Dwarven stout (m)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5747} -{name:"Dwarven stout (m)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5748} -{name:"Moonlight mead (m)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5749} -{name:"Moonlight mead (m)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5750} -{name:"Axeman's folly", itemDescription:"This might help me chop harder.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5751} -{name:"Axeman's folly", itemDescription:"This might help me chop harder.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5752} -{name:"Axeman's folly (m)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5753} -{name:"Axeman's folly (m)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5754} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5755} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5756} -{name:"Chef's delight (m)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5757} -{name:"Chef's delight (m)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5758} -{name:"Slayer's respite", itemDescription:"Ale with bite.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5759} -{name:"Slayer's respite", itemDescription:"Ale with bite.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5760} -{name:"Slayer's respite (m)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5761} -{name:"Slayer's respite (m)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5762} -{name:"Cider", itemDescription:"A glass of Cider", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5763} -{name:"Cider", itemDescription:"A glass of Cider", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5764} -{name:"Mature cider", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5765} -{name:"Mature cider", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5766} -{name:"Ale yeast", itemDescription:"A pot filled with ale yeast.", shopValue:0, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5767} -{name:"Ale yeast", itemDescription:"A pot filled with ale yeast.", shopValue:0, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5768} -{name:"Calquat keg", itemDescription:"Sliced and hollowed out to form a keg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5769} -{name:"Calquat keg", itemDescription:"Sliced and hollowed out to form a keg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5770} -{name:"Dwarven stout (1)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5771} -{name:"Dwarven stout (1)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5772} -{name:"Dwarven stout (2)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5773} -{name:"Dwarven stout (2)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5774} -{name:"Dwarven stout (3)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5775} -{name:"Dwarven stout (3)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5776} -{name:"Dwarven stout (4)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5777} -{name:"Dwarven stout (4)", itemDescription:"A pint of thick dark beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5778} -{name:"Asgarnian ale (1)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5779} -{name:"Asgarnian ale (1)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5780} -{name:"Asgarnian ale (2)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5781} -{name:"Asgarnian ale (2)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5782} -{name:"Asgarnian ale (3)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5783} -{name:"Asgarnian ale (3)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5784} -{name:"Asgarnian ale (4)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5785} -{name:"Asgarnian ale (4)", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5786} -{name:"Greenman's ale (1)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5787} -{name:"Greenman's ale (1)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5788} -{name:"Greenman's ale (2)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5789} -{name:"Greenman's ale (2)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5790} -{name:"Greenman's ale (3)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5791} -{name:"Greenman's ale (3)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5792} -{name:"Greenman's ale (4)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5793} -{name:"Greenman's ale (4)", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5794} -{name:"Mind bomb (1)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5795} -{name:"Mind bomb (1)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5796} -{name:"Mind bomb (2)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5797} -{name:"Mind bomb (2)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5798} -{name:"Mind bomb (3)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5799} -{name:"Mind bomb (3)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5800} -{name:"Mind bomb (4)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5801} -{name:"Mind bomb (4)", itemDescription:"It's got strange bubbles in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5802} -{name:"Dragon bitter (1)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5803} -{name:"Dragon bitter (1)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5804} -{name:"Dragon bitter (2)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5805} -{name:"Dragon bitter (2)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5806} -{name:"Dragon bitter (3)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5807} -{name:"Dragon bitter (3)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5808} -{name:"Dragon bitter (4)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5809} -{name:"Dragon bitter (4)", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5810} -{name:"Moonlight mead (1)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5811} -{name:"Moonlight mead (1)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5812} -{name:"Moonlight mead (2)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5813} -{name:"Moonlight mead (2)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5814} -{name:"Moonlight mead (3)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5815} -{name:"Moonlight mead (3)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5816} -{name:"Moonlight mead (4)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5817} -{name:"Moonlight mead (4)", itemDescription:"A foul smelling brew.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5818} -{name:"Axeman's folly (1)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5819} -{name:"Axeman's folly (1)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5820} -{name:"Axeman's folly (2)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5821} -{name:"Axeman's folly (2)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5822} -{name:"Axeman's folly (3)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5823} -{name:"Axeman's folly (3)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5824} -{name:"Axeman's folly (4)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5825} -{name:"Axeman's folly (4)", itemDescription:"This might help me chop harder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5826} -{name:"Chef's delight (1)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5827} -{name:"Chef's delight (1)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5828} -{name:"Chef's delight (2)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5829} -{name:"Chef's delight (2)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5830} -{name:"Chef's delight (3)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5831} -{name:"Chef's delight (3)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5832} -{name:"Chef's delight (4)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5833} -{name:"Chef's delight (4)", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5834} -{name:"Slayer's respite (1)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5835} -{name:"Slayer's respite (1)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5836} -{name:"Slayer's respite (2)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5837} -{name:"Slayer's respite (2)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5838} -{name:"Slayer's respite (3)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5839} -{name:"Slayer's respite (3)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5840} -{name:"Slayer's respite (4)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5841} -{name:"Slayer's respite (4)", itemDescription:"Ale with bite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5842} -{name:"Cider (1)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5843} -{name:"Cider (1)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5844} -{name:"Cider (2)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5845} -{name:"Cider (2)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5846} -{name:"Cider (3)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5847} -{name:"Cider (3)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5848} -{name:"Cider (4)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5849} -{name:"Cider (4)", itemDescription:"A glass of Cider", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5850} -{name:"Dwarven stout (m1)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5851} -{name:"Dwarven stout (m1)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5852} -{name:"Dwarven stout (m2)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5853} -{name:"Dwarven stout (m2)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5854} -{name:"Dwarven stout (m3)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5855} -{name:"Dwarven stout (m3)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5856} -{name:"Dwarven stout (m4)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5857} -{name:"Dwarven stout (m4)", itemDescription:"This looks a good deal stronger than normal dwarven stout.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5858} -{name:"Asgarnian ale (m1)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5859} -{name:"Asgarnian ale (m1)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5860} -{name:"Asgarnian ale (m2)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5861} -{name:"Asgarnian ale (m2)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5862} -{name:"Asgarnian ale (m3)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5863} -{name:"Asgarnian ale (m3)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5864} -{name:"Asgarnian ale (m4)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5865} -{name:"Asgarnian ale (m4)", itemDescription:"This looks a good deal stronger than normal Asgarnian ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5866} -{name:"Greenman's ale (m1)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5867} -{name:"Greenman's ale (m1)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5868} -{name:"Greenman's ale (m2)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5869} -{name:"Greenman's ale (m2)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5870} -{name:"Greenman's ale (m3)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5871} -{name:"Greenman's ale (m3)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5872} -{name:"Greenman's ale (m4)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5873} -{name:"Greenman's ale (m4)", itemDescription:"This looks a good deal stronger than normal Greenman's Ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5874} -{name:"Mind bomb (m1)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5875} -{name:"Mind bomb (m1)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5876} -{name:"Mind bomb (m2)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5877} -{name:"Mind bomb (m2)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5878} -{name:"Mind bomb (m3)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5879} -{name:"Mind bomb (m3)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5880} -{name:"Mind bomb (m4)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5881} -{name:"Mind bomb (m4)", itemDescription:"This looks a good deal stronger than normal Wizards Mind Bomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5882} -{name:"Dragon bitter (m1)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5883} -{name:"Dragon bitter (m1)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5884} -{name:"Dragon bitter (m2)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5885} -{name:"Dragon bitter (m2)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5886} -{name:"Dragon bitter (m3)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5887} -{name:"Dragon bitter (m3)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5888} -{name:"Dragon bitter (m4)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5889} -{name:"Dragon bitter (m4)", itemDescription:"This looks a good deal stronger than normal Dragon Bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5890} -{name:"M'light mead (m1)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5891} -{name:"M'light mead (m1)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5892} -{name:"M'light mead (m2)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5893} -{name:"M'light mead (m2)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5894} -{name:"M'light mead (m3)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5895} -{name:"M'light mead (m3)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5896} -{name:"M'light mead (m4)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5897} -{name:"M'light mead (m4)", itemDescription:"This looks a good deal stronger than normal Moonlight Mead.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5898} -{name:"Axeman's folly (m1)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5899} -{name:"Axeman's folly (m1)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5900} -{name:"Axeman's folly (m2)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5901} -{name:"Axeman's folly (m2)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5902} -{name:"Axeman's folly (m3)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5903} -{name:"Axeman's folly (m3)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5904} -{name:"Axeman's folly (m4)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5905} -{name:"Axeman's folly (m4)", itemDescription:"This looks a good deal stronger than a normal Axeman's Folly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5906} -{name:"Chef's delight (m1)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5907} -{name:"Chef's delight (m1)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5908} -{name:"Chef's delight (m2)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5909} -{name:"Chef's delight (m2)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5910} -{name:"Chef's delight (m3)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5911} -{name:"Chef's delight (m3)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5912} -{name:"Chef's delight (m4)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5913} -{name:"Chef's delight (m4)", itemDescription:"This looks a good deal stronger than normal Chef's Delight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5914} -{name:"Slayer respite (m1)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5915} -{name:"Slayer respite (m1)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5916} -{name:"Slayer respite (m2)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5917} -{name:"Slayer respite (m2)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5918} -{name:"Slayer respite (m3)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5919} -{name:"Slayer respite (m3)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5920} -{name:"Slayer respite (m4)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5921} -{name:"Slayer respite (m4)", itemDescription:"This looks a good deal stronger than normal Slayer's Respite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5922} -{name:"Cider (m1)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5923} -{name:"Cider (m1)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5924} -{name:"Cider (m2)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5925} -{name:"Cider (m2)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5926} -{name:"Cider (m3)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5927} -{name:"Cider (m3)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5928} -{name:"Cider (m4)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5929} -{name:"Cider (m4)", itemDescription:"This looks a good deal stronger than normal cider.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5930} -{name:"Jute fibre", itemDescription:"I can weave this to make sacks.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5931} -{name:"Jute fibre", itemDescription:"I can weave this to make sacks.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5932} -{name:"Willow branch", itemDescription:"A branch from a willow tree.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5933} -{name:"Willow branch", itemDescription:"A branch from a willow tree.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5934} -{name:"Coconut milk", itemDescription:"A vial filled with coconut milk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5935} -{name:"Weapon poison+ (unf)", itemDescription:"A vial of coconut milk and a cactus spine.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5936} -{name:"Weapon poison+", itemDescription:"A vial of extra-strong weapon poison, for spears and daggers.", shopValue:288, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5937} -{name:"Weapon poison+", itemDescription:"A vial of extra-strong weapon poison, for spears and daggers.", shopValue:288, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5938} -{name:"Weapon poison++ (unf)", itemDescription:"A vial of coconut milk and some deadly nightshade.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5939} -{name:"Weapon poison++", itemDescription:"A vial of super strong weapon poison, for spears and daggers.", shopValue:432, lowAlch:172, highAlch:259, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5940} -{name:"Weapon poison++", itemDescription:"A vial of super strong weapon poison, for spears and daggers.", shopValue:432, lowAlch:172, highAlch:259, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5941} -{name:"Antipoison+ (unf)", itemDescription:"A vial of coconut milk and toadflax.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5942} -{name:"Antipoison+ (4)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:360, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5943} -{name:"Antipoison+ (4)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5944} -{name:"Antipoison+ (3)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:288, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5945} -{name:"Antipoison+ (3)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:288, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5946} -{name:"Antipoison+ (2)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:216, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5947} -{name:"Antipoison+ (2)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:216, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5948} -{name:"Antipoison+ (1)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:144, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5949} -{name:"Antipoison+ (1)", itemDescription:"N doses of extra-stong antipoison potion", shopValue:144, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5950} -{name:"Antipoison++ (unf)", itemDescription:"A vial of coconut milk and an irit.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5951} -{name:"Antipoison++ (4)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5952} -{name:"Antipoison++ (4)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:360, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5953} -{name:"Antipoison++ (3)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5954} -{name:"Antipoison++ (3)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:288, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5955} -{name:"Antipoison++ (2)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5956} -{name:"Antipoison++ (2)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:216, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5957} -{name:"Antipoison++ (1)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5958} -{name:"Antipoison++ (1)", itemDescription:"X doses of a super-strong antipoison potion.", shopValue:144, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5959} -{name:"Tomatoes (1)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5960} -{name:"Tomatoes (1)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5961} -{name:"Tomatoes (2)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5962} -{name:"Tomatoes (2)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5963} -{name:"Tomatoes (3)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5964} -{name:"Tomatoes (3)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5965} -{name:"Tomatoes (4)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5966} -{name:"Tomatoes (4)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5967} -{name:"Tomatoes (5)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5968} -{name:"Tomatoes (5)", itemDescription:"A basket filled with tomatoes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5969} -{name:"Curry leaf", itemDescription:"I could make a spicy curry with this.", shopValue:19, lowAlch:7, highAlch:11, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5970} -{name:"Curry leaf", itemDescription:"I could make a spicy curry with this.", shopValue:19, lowAlch:7, highAlch:11, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5971} -{name:"Papaya fruit", itemDescription:"Looks delicious.", shopValue:64, lowAlch:25, highAlch:38, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5972} -{name:"Papaya fruit", itemDescription:"Looks delicious.", shopValue:64, lowAlch:25, highAlch:38, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5973} -{name:"Coconut", itemDescription:"It's a coconut.", shopValue:87, lowAlch:34, highAlch:52, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5974} -{name:"Coconut", itemDescription:"It's a coconut.", shopValue:87, lowAlch:34, highAlch:52, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5975} -{name:"Coconut", itemDescription:"It's a coconut.", shopValue:87, lowAlch:34, highAlch:52, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5976} -{name:"Coconut", itemDescription:"It's a coconut.", shopValue:87, lowAlch:34, highAlch:52, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5977} -{name:"Coconut shell", itemDescription:"All the milk has been removed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5978} -{name:"Coconut shell", itemDescription:"All the milk has been removed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5979} -{name:"Calquat fruit", itemDescription:"This is the largest fruit I've ever seen.", shopValue:54, lowAlch:21, highAlch:32, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5980} -{name:"Calquat fruit", itemDescription:"This is the largest fruit I've ever seen.", shopValue:54, lowAlch:21, highAlch:32, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5981} -{name:"Watermelon", itemDescription:"A juicy watermelon.", shopValue:48, lowAlch:19, highAlch:28, isStackable:false, isNoteable:false, weight:1111.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5982} -{name:"Watermelon", itemDescription:"A juicy watermelon.", shopValue:48, lowAlch:19, highAlch:28, isStackable:true, isNoteable:true, weight:1111.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5983} -{name:"Watermelon slice", itemDescription:"A slice of watermelon.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5984} -{name:"Watermelon slice", itemDescription:"A slice of watermelon.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5985} -{name:"Sweetcorn", itemDescription:"Raw sweetcorn.", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5986} -{name:"Sweetcorn", itemDescription:"Raw sweetcorn.", shopValue:9, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5987} -{name:"Cooked sweetcorn", itemDescription:"Delicious cooked sweetcorn.", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5988} -{name:"Cooked sweetcorn", itemDescription:"Delicious cooked sweetcorn.", shopValue:9, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5989} -{name:"Burnt sweetcorn", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5990} -{name:"Burnt sweetcorn", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5991} -{name:"Apple mush", itemDescription:"A bucket of apple mush.", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5992} -{name:"Apple mush", itemDescription:"A bucket of apple mush.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5993} -{name:"Hammerstone hops", itemDescription:"A handful of Hammerstone hops.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5994} -{name:"Hammerstone hops", itemDescription:"A handful of Hammerstone hops.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5995} -{name:"Asgarnian hops", itemDescription:"A handful of Asgarnian hops.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5996} -{name:"Asgarnian hops", itemDescription:"A handful of Asgarnian hops.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5997} -{name:"Yanillian hops", itemDescription:"A handful of Yanillian hops", shopValue:7, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5998} -{name:"Yanillian hops", itemDescription:"A handful of Yanillian hops", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:5999} -{name:"Krandorian hops", itemDescription:"A handful of Krandorian hops.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6000} -{name:"Krandorian hops", itemDescription:"A handful of Krandorian hops.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6001} -{name:"Wildblood hops", itemDescription:"", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6002} -{name:"Wildblood hops", itemDescription:"", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6003} -{name:"Mushroom", itemDescription:"", shopValue:38, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6004} -{name:"Mushroom", itemDescription:"", shopValue:38, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6005} -{name:"Barley", itemDescription:"A handful of Barley.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6006} -{name:"Barley", itemDescription:"A handful of Barley.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6007} -{name:"Barley malt", itemDescription:"A handful of barley malt.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6008} -{name:"Barley malt", itemDescription:"A handful of barley malt.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6009} -{name:"Marigolds", itemDescription:"A bunch of marigolds.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6010} -{name:"Marigolds", itemDescription:"A bunch of marigolds.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6011} -{name:"Nasturtiums", itemDescription:"A bunch of nasturtiums.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6012} -{name:"Nasturtiums", itemDescription:"A bunch of nasturtiums.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6013} -{name:"Rosemary", itemDescription:"Some rosemary.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6014} -{name:"Rosemary", itemDescription:"Some rosemary.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6015} -{name:"Cactus spine", itemDescription:"Don't prick yourself with this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6016} -{name:"Cactus spine", itemDescription:"Don't prick yourself with this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6017} -{name:"Poison ivy berries", itemDescription:"They look sweet and juicy, but only a fool would eat them.", shopValue:65, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6018} -{name:"Poison ivy berries", itemDescription:"They look sweet and juicy, but only a fool would eat them.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6019} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6020} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6021} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6022} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6023} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6024} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6025} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6026} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6027} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6028} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6029} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6030} -{name:"Leaves", itemDescription:"A pile of leaves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6031} -{name:"Compost", itemDescription:"Good for plants, helps them grow.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6032} -{name:"Compost", itemDescription:"Good for plants, helps them grow.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6033} -{name:"Supercompost", itemDescription:"Super-good for the smallest or largest of plants.", shopValue:85, lowAlch:34, highAlch:51, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6034} -{name:"Supercompost", itemDescription:"Super-good for the smallest or largest of plants.", shopValue:85, lowAlch:34, highAlch:51, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6035} -{name:"Plant cure", itemDescription:"Use this on plants to cure disease.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6036} -{name:"Plant cure", itemDescription:"Use this on plants to cure disease.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6037} -{name:"Magic string", itemDescription:"I could use this to make jewellery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6038} -{name:"Magic string", itemDescription:"I could use this to make jewellery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6039} -{name:"Amulet of nature", itemDescription:"An Amulet of Nature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6040} -{name:"Pre-nature amulet", itemDescription:"Strung with the root of a Magic Tree. If I enchant this it will become an amulet of nature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6041} -{name:"Pre-nature amulet", itemDescription:"Strung with the root of a Magic Tree. If I enchant this it will become an amulet of nature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6042} -{name:"Oak roots", itemDescription:"The roots of the Oak tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6043} -{name:"Oak roots", itemDescription:"The roots of the Oak tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6044} -{name:"Willow roots", itemDescription:"The roots of the Willow tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6045} -{name:"Willow roots", itemDescription:"The roots of the Willow tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6046} -{name:"Maple roots", itemDescription:"The roots of the Maple tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6047} -{name:"Maple roots", itemDescription:"The roots of the Maple tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6048} -{name:"Yew roots", itemDescription:"The roots of a yew tree", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6049} -{name:"Yew roots", itemDescription:"The roots of a yew tree", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6050} -{name:"Magic roots", itemDescription:"The roots of a magic tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6051} -{name:"Magic roots", itemDescription:"The roots of a magic tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6052} -{name:"Spirit roots", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6053} -{name:"Spirit roots", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6054} -{name:"Weeds", itemDescription:"A handful of weeds.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6055} -{name:"Weeds", itemDescription:"A handful of weeds.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6056} -{name:"Hay sack", itemDescription:"A sack filled with hay. / This sack of hay has a bronze spear sticking through it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6057} -{name:"Hay sack", itemDescription:"A sack filled with hay. / This sack of hay has a bronze spear sticking through it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6058} -{name:"Scarecrow", itemDescription:"This should scare the birds.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6059} -{name:"Stool", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6060} -{name:"Bronze bolts (p+)", itemDescription:"Bronze crossbow bolts.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6061} -{name:"Bronze bolts (p++)", itemDescription:"Bronze crossbow bolts.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6062} -{name:"Spirit tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6063} -{name:"Bloody mourner top", itemDescription:"How do I wash blood stains out?", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:272.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6064} -{name:"Mourner top", itemDescription:"A thick heavy leather top.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6065} -{name:"Mourner trousers", itemDescription:" A pair of mourner trousers.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6066} -{name:"Mourner trousers", itemDescription:" A pair of mourner trousers.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6067} -{name:"Mourner gloves", itemDescription:"These will keep my hands warm.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:23.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6068} -{name:"Mourner boots", itemDescription:"Comfortable leather boots.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:136.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6069} -{name:"Mourner cloak", itemDescription:"A dull brown cape.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6070} -{name:"Mourner letter", itemDescription:"A letter of recommendation.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6071} -{name:"Tegid's soap", itemDescription:"A bar of soap taken from Tegid.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6072} -{name:"Prifddinas' history", itemDescription:"A book on the history of Prifddinas.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6073} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6074} -{name:"Eastern discovery", itemDescription:"A book on the exploration of the eastern realm.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6075} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6076} -{name:"Eastern settlement", itemDescription:"A book on the settlement of the eastern realm.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6077} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6078} -{name:"The great divide", itemDescription:"A book about the great divide.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6079} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6080} -{name:"Broken device", itemDescription:"A strange broken device of gnomic design.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6081} -{name:"Fixed device", itemDescription:"A device for firing dye.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:40.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6082} -{name:"Tarnished key", itemDescription:"This key has seen a lot of use. (Mourning's Ends Part I)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6083} -{name:"Worn key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6084} -{name:"Red dye bellows", itemDescription:"A large pair of ogre bellows filled with red dye.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6085} -{name:"Blue dye bellows", itemDescription:"A large pair of ogre bellows filled with blue dye.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6086} -{name:"Yellow dye bellows", itemDescription:"A large pair of ogre bellows filled with yellow dye.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6087} -{name:"Green dye bellows", itemDescription:"A large pair of ogre bellows filled with green dye.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6088} -{name:"Blue toad", itemDescription:"A blue dye filled toad.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6089} -{name:"Red toad", itemDescription:"A red dye filled toad.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6090} -{name:"Yellow toad", itemDescription:"A yellow dye filled toad.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6091} -{name:"Green toad", itemDescription:"A green dye filled toad.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6092} -{name:"Rotten apples", itemDescription:"A barrel full of rotten apples.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:17.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6093} -{name:"Apple barrel", itemDescription:"A barrel full of mushed apples.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6094} -{name:"Naphtha apple mix", itemDescription:"A barrel full of rotten apples and naptha.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6095} -{name:"Toxic naphtha", itemDescription:"A barrel full of toxic naphtha.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6096} -{name:"Sieve", itemDescription:"It's a sieve.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6097} -{name:"Toxic powder", itemDescription:"A pile of toxic powder.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6098} -{name:"Teleport crystal (4)", itemDescription:"A tiny crystal enchanted to return the user to Lletya.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6099} -{name:"Teleport crystal (3)", itemDescription:"A tiny crystal enchanted to return the user to Lletya.", shopValue:45, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6100} -{name:"Teleport crystal (2)", itemDescription:"A tiny crystal enchanted to return the user to Lletya.", shopValue:35, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6101} -{name:"Teleport crystal (1)", itemDescription:"A tiny crystal enchanted to return the user to Lletya.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6102} -{name:"Tiny elf crystal", itemDescription:"A tiny Elf crystal, I need to have this re-enchanted", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6103} -{name:"New key", itemDescription:"This key is newly cut. (Mourning's Ends Part II)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6104} -{name:"Elf", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6105} -{name:"Ghostly boots", itemDescription:"They seem to be not quite of this world...", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6106} -{name:"Ghostly robe", itemDescription:"Varies", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 21.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6107} -{name:"Ghostly robe", itemDescription:"Varies", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 21.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6108} -{name:"Ghostly hood", itemDescription:"A ghostly hood, fit for a ghostly head.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6109} -{name:"Ghostly gloves", itemDescription:"They seem to fade in and out of existence...", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6110} -{name:"Ghostly cloak", itemDescription:"Made of a strange, ghostly material...", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6111} -{name:"Kelda seed", itemDescription:"Kelda hop seeds can only be grown underground!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6112} -{name:"Kelda hops", itemDescription:"A handful of Kelda Hops.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6113} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6114} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6115} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6116} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6117} -{name:"Kelda stout", itemDescription:"A pint of bluish beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6118} -{name:"Square stone", itemDescription:"There is a strange [green/yellow] marking on this stone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6119} -{name:"Square stone", itemDescription:"There is a strange [green/yellow] marking on this stone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6120} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6121} -{name:"A chair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6122} -{name:"Beer glass", itemDescription:"I need to fill this with beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6123} -{name:"Coconut milk", itemDescription:"A vial filled with coconut milk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6124} -{name:"Enchanted lyre (2)", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6125} -{name:"Enchanted lyre (3)", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6126} -{name:"Enchanted lyre (4)", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6127} -{name:"Rock-shell helm", itemDescription:"Protective headwear made from crabs. Better than it sounds.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 6.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6128} -{name:"Rock-shell plate", itemDescription:"A sturdy body armour made from rock crab pieces.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6129} -{name:"Rock-shell legs", itemDescription:"Some tough leggings made from rock crab parts.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6130} -{name:"Spined helm", itemDescription:"A helm fit for any Fremennik ranger.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, -6.0, -6.0, -6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6131} -{name:"Spined helm", itemDescription:"A helm fit for any Fremennik ranger.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, -6.0, -6.0, -6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6132} -{name:"Spined body", itemDescription:"A constant reminder that I'm above a Dagannoth in the food chain.", shopValue:7800, lowAlch:3000, highAlch:4500, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 30.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6133} -{name:"Spined body", itemDescription:"A constant reminder that I'm above a Dagannoth in the food chain.", shopValue:7800, lowAlch:3000, highAlch:4500, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 30.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6134} -{name:"Spined chaps", itemDescription:"Stylish leg armour for rangers with a lingering smell of raw fish...", shopValue:3900, lowAlch:1560, highAlch:2340, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 10.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6135} -{name:"Spined chaps", itemDescription:"Stylish leg armour for rangers with a lingering smell of raw fish...", shopValue:3900, lowAlch:1560, highAlch:2340, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 10.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6136} -{name:"Skeletal helm", itemDescription:"Make your foes cower by wearing a skull as a helmet!", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 2.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6137} -{name:"Skeletal helm", itemDescription:"Make your foes cower by wearing a skull as a helmet!", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 2.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6138} -{name:"Skeletal top", itemDescription:"The bones in this armour seems to vibrate with a magic quality...", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:49.0, bonuses:[0.0, 0.0, 0.0, 8.0, -10.0, 35.0, 25.0, 42.0, 15.0, 0.0, 30.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6139} -{name:"Skeletal top", itemDescription:"The bones in this armour seems to vibrate with a magic quality...", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:49.0, bonuses:[0.0, 0.0, 0.0, 8.0, -10.0, 35.0, 25.0, 42.0, 15.0, 0.0, 30.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6140} -{name:"Skeletal bottoms", itemDescription:"A superior set of strengthened slacks for any self respecting seer.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, -7.0, 22.0, 20.0, 24.0, 10.0, 0.0, 10.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6141} -{name:"Skeletal bottoms", itemDescription:"A superior set of strengthened slacks for any self respecting seer.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, -7.0, 22.0, 20.0, 24.0, 10.0, 0.0, 10.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6142} -{name:"Spined boots", itemDescription:"Some finely crafted Fremennik boots, made from spined dagannoth hide.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6143} -{name:"Spined boots", itemDescription:"Some finely crafted Fremennik boots, made from spined dagannoth hide.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6144} -{name:"Rock-shell boots", itemDescription:"Some Fremennik boots, made from the shards of a rock crab's shell.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6145} -{name:"Rock-shell boots", itemDescription:"Some Fremennik boots, made from the shards of a rock crab's shell.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6146} -{name:"Skeletal boots", itemDescription:"Some finely crafted Fremennik boots, made from the bones of a Wallasalki.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6147} -{name:"Skeletal boots", itemDescription:"Some finely crafted Fremennik boots, made from the bones of a Wallasalki.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6148} -{name:"Spined gloves", itemDescription:"Fremennik gloves stitched together from spined dagannoth hide.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6149} -{name:"Spined gloves", itemDescription:"Fremennik gloves stitched together from spined dagannoth hide.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6150} -{name:"Rock-shell gloves", itemDescription:"Fremennik gloves stitched together from rock crab shell shards.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6151} -{name:"Rock-shell gloves", itemDescription:"Fremennik gloves stitched together from rock crab shell shards.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6152} -{name:"Skeletal gloves", itemDescription:"Fremennik gloves stitched together from wallasalki bones fragments.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6153} -{name:"Skeletal gloves", itemDescription:"Fremennik gloves stitched together from wallasalki bones fragments.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6154} -{name:"Dagannoth hide", itemDescription:"A sturdy piece of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6155} -{name:"Dagannoth hide", itemDescription:"A sturdy piece of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6156} -{name:"Rock-shell chunk", itemDescription:"A spherical chunk of rock-shell.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6157} -{name:"Rock-shell chunk", itemDescription:"A spherical chunk of rock-shell.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6158} -{name:"Rock-shell shard", itemDescription:"A curved piece of rock-shell.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6159} -{name:"Rock-shell shard", itemDescription:"A curved piece of rock-shell.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6160} -{name:"Rock-shell splinter", itemDescription:"A slim piece of rock-shell.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6161} -{name:"Rock-shell splinter", itemDescription:"A slim piece of rock-shell.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6162} -{name:"Skull piece", itemDescription:"A fearsome looking skull.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6163} -{name:"Skull piece", itemDescription:"A fearsome looking skull.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6164} -{name:"Ribcage piece", itemDescription:"A slightly damaged ribcage.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6165} -{name:"Ribcage piece", itemDescription:"A slightly damaged ribcage.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6166} -{name:"Fibula piece", itemDescription:"An interesting looking bone shard.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6167} -{name:"Fibula piece", itemDescription:"An interesting looking bone shard.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6168} -{name:"Circular hide", itemDescription:"A toughened chunk of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6169} -{name:"Circular hide", itemDescription:"A toughened chunk of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6170} -{name:"Flattened hide", itemDescription:"A tattered chunk of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6171} -{name:"Flattened hide", itemDescription:"A tattered chunk of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6172} -{name:"Stretched hide", itemDescription:"A weathered chunk of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6173} -{name:"Stretched hide", itemDescription:"A weathered chunk of dagannoth hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6174} -{name:"Rock-shell helm", itemDescription:"Protective headwear made from crabs. Better than it sounds.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 6.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6175} -{name:"Rock-shell plate", itemDescription:"A sturdy body armour made from rock crab pieces.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6176} -{name:"Rock-shell legs", itemDescription:"Some tough leggings made from rock crab parts.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6177} -{name:"Raw pheasant", itemDescription:"I need to cook this first.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6178} -{name:"Raw pheasant", itemDescription:"I need to cook this first.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6179} -{name:"Lederhosen top", itemDescription:"A leather strapped top.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6180} -{name:"Lederhosen shorts", itemDescription:"Brown leather shorts with bright white socks?", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6181} -{name:"Lederhosen hat", itemDescription:"A hat with a goat's hair attached.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6182} -{name:"Random event gift", itemDescription:"Open the box and choose a gift.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6183} -{name:"Prince tunic", itemDescription:"Very posh!", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6184} -{name:"Prince leggings", itemDescription:"Very posh!", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6185} -{name:"Princess blouse", itemDescription:"Very posh!", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6186} -{name:"Princess skirt", itemDescription:"Very posh!", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6187} -{name:"Frog mask", itemDescription:"Now that's just silly.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6188} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6189} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6190} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6191} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6192} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6193} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6194} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6195} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6196} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6197} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6198} -{name:"Mystery box", itemDescription:"Could there be something valuable in here?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6199} -{name:"Raw fish-like thing", itemDescription:"A raw...fish? Is this a fish??", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6200} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6201} -{name:"Fish-like thing", itemDescription:"It's a fish-like thing that appears to already be cooked. It looks disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6202} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6203} -{name:"Raw fish-like thing", itemDescription:"A raw...fish? Is this a fish??", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6204} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6205} -{name:"Fish-like thing", itemDescription:"It's a fish-like thing that appears to already be cooked. It looks disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6206} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6207} -{name:"Manspeak amulet", itemDescription:"It's an amulet of Man speak. It makes vague grunting noises.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6208} -{name:"Small fishing net", itemDescription:"Useful for catching small fish.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6209} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6210} -{name:"Teak pyre logs", itemDescription:"Teak logs prepared with sacred oil for a funeral pyre.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6211} -{name:"Teak pyre logs", itemDescription:"Teak logs prepared with sacred oil for a funeral pyre.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6212} -{name:"Mahogany pyre log", itemDescription:"Mahogany logs prepared with sacred oil for a funeral pyre.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6213} -{name:"Mahogany pyre log", itemDescription:"Mahogany logs prepared with sacred oil for a funeral pyre.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6214} -{name:"Broodoo shield (10)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6215} -{name:"Broodoo shield (10)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6216} -{name:"Broodoo shield (9)", itemDescription:"A scary broodoo shield.", shopValue:2750, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6217} -{name:"Broodoo shield (9)", itemDescription:"A scary broodoo shield.", shopValue:2750, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6218} -{name:"Broodoo shield (8)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6219} -{name:"Broodoo shield (8)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6220} -{name:"Broodoo shield (7)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6221} -{name:"Broodoo shield (7)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6222} -{name:"Broodoo shield (6)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6223} -{name:"Broodoo shield (6)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6224} -{name:"Broodoo shield (5)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6225} -{name:"Broodoo shield (5)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6226} -{name:"Broodoo shield (4)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6227} -{name:"Broodoo shield (4)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6228} -{name:"Broodoo shield (3)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6229} -{name:"Broodoo shield (3)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6230} -{name:"Broodoo shield (2)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6231} -{name:"Broodoo shield (2)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6232} -{name:"Broodoo shield (1)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6233} -{name:"Broodoo shield (1)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6234} -{name:"Broodoo shield", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6235} -{name:"Broodoo shield", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6236} -{name:"Broodoo shield (10)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6237} -{name:"Broodoo shield (10)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6238} -{name:"Broodoo shield (9)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6239} -{name:"Broodoo shield (9)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6240} -{name:"Broodoo shield (8)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6241} -{name:"Broodoo shield (8)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6242} -{name:"Broodoo shield (7)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6243} -{name:"Broodoo shield (7)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6244} -{name:"Broodoo shield (6)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6245} -{name:"Broodoo shield (6)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6246} -{name:"Broodoo shield (5)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6247} -{name:"Broodoo shield (5)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6248} -{name:"Broodoo shield (4)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6249} -{name:"Broodoo shield (4)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6250} -{name:"Broodoo shield (3)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6251} -{name:"Broodoo shield (3)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6252} -{name:"Broodoo shield (2)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6253} -{name:"Broodoo shield (2)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6254} -{name:"Broodoo shield (1)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6255} -{name:"Broodoo shield (1)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6256} -{name:"Broodoo shield", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6257} -{name:"Broodoo shield", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6258} -{name:"Broodoo shield (10)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6259} -{name:"Broodoo shield (10)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6260} -{name:"Broodoo shield (9)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6261} -{name:"Broodoo shield (9)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6262} -{name:"Broodoo shield (8)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6263} -{name:"Broodoo shield (8)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6264} -{name:"Broodoo shield (7)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6265} -{name:"Broodoo shield (7)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6266} -{name:"Broodoo shield (6)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6267} -{name:"Broodoo shield (6)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6268} -{name:"Broodoo shield (5)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6269} -{name:"Broodoo shield (5)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6270} -{name:"Broodoo shield (4)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6271} -{name:"Broodoo shield (4)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6272} -{name:"Broodoo shield (3)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6273} -{name:"Broodoo shield (3)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6274} -{name:"Broodoo shield (2)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6275} -{name:"Broodoo shield (2)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6276} -{name:"Broodoo shield (1)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6277} -{name:"Broodoo shield (1)", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6278} -{name:"Broodoo shield", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6279} -{name:"Broodoo shield", itemDescription:"A scary broodoo shield.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 3.0, -7.0, 10.0, 10.0, 15.0, 5.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6280} -{name:"Thatch spar light", itemDescription:"A wooden pole for use in primitive construction.", shopValue:10, lowAlch:48, highAlch:612, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6281} -{name:"Thatch spar light", itemDescription:"A wooden pole for use in primitive construction.", shopValue:10, lowAlch:48, highAlch:612, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6282} -{name:"Thatch spar med", itemDescription:"A wooden pole for use in primitive construction.", shopValue:15, lowAlch:48, highAlch:612, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6283} -{name:"Thatch spar med", itemDescription:"A wooden pole for use in primitive construction.", shopValue:15, lowAlch:48, highAlch:612, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6284} -{name:"Thatch spar dense", itemDescription:"A wooden pole for use in primitive construction.", shopValue:20, lowAlch:48, highAlch:612, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6285} -{name:"Thatch spar dense", itemDescription:"A wooden pole for use in primitive construction.", shopValue:20, lowAlch:48, highAlch:612, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6286} -{name:"Snake hide", itemDescription:"Scaly but not slimy!", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6287} -{name:"Snake hide", itemDescription:"Scaly but not slimy!", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6288} -{name:"Snakeskin", itemDescription:"Scaley but not slimy!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6289} -{name:"Snakeskin", itemDescription:"Scaley but not slimy!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6290} -{name:"Spider carcass", itemDescription:"Its creeping days are over!", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6291} -{name:"Spider carcass", itemDescription:"Its creeping days are over!", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6292} -{name:"Spider on stick", itemDescription:" A nicely roasted spider threaded onto a skewer stick.", shopValue:25, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6293} -{name:"Spider on stick", itemDescription:" A nicely roasted spider threaded onto a skewer stick.", shopValue:25, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6294} -{name:"Spider on shaft", itemDescription:"A raw spider threaded onto an arrow shaft. (Raw) A nicely roasted spider threaded onto an arrow shaft. (Cooked)", shopValue:20, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6295} -{name:"Spider on shaft", itemDescription:"A raw spider threaded onto an arrow shaft. (Raw) A nicely roasted spider threaded onto an arrow shaft. (Cooked)", shopValue:20, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6296} -{name:"Spider on stick", itemDescription:" A nicely roasted spider threaded onto a skewer stick.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6297} -{name:"Spider on stick", itemDescription:" A nicely roasted spider threaded onto a skewer stick.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6298} -{name:"Spider on shaft", itemDescription:"A raw spider threaded onto an arrow shaft. (Raw) A nicely roasted spider threaded onto an arrow shaft. (Cooked)", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6299} -{name:"Spider on shaft", itemDescription:"A raw spider threaded onto an arrow shaft. (Raw) A nicely roasted spider threaded onto an arrow shaft. (Cooked)", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6300} -{name:"Burnt spider", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6301} -{name:"Burnt spider", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6302} -{name:"Spider on shaft", itemDescription:"A raw spider threaded onto an arrow shaft. (Raw) A nicely roasted spider threaded onto an arrow shaft. (Cooked)", shopValue:1, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6303} -{name:"Spider on shaft", itemDescription:"A raw spider threaded onto an arrow shaft. (Raw) A nicely roasted spider threaded onto an arrow shaft. (Cooked)", shopValue:1, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6304} -{name:"Skewer stick", itemDescription:"A sharp pointed stick, quite resistant to fire.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6305} -{name:"Trading sticks", itemDescription:"Karamja currency.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6306} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6307} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6308} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6309} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6310} -{name:"Gout tuber", itemDescription:"", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6311} -{name:"Gout tuber", itemDescription:"", shopValue:200, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6312} -{name:"Opal machete", itemDescription:"A jungle specific slashing device.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:135.0, bonuses:[0.0, 8.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6313} -{name:"Opal machete", itemDescription:"A jungle specific slashing device.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:135.0, bonuses:[0.0, 8.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6314} -{name:"Jade machete", itemDescription:"A jungle specific slashing device.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 11.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6315} -{name:"Jade machete", itemDescription:"A jungle specific slashing device.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 11.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6316} -{name:"Red topaz machete", itemDescription:"A jungle specific slashing device.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 16.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6317} -{name:"Red topaz machete", itemDescription:"A jungle specific slashing device.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 16.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6318} -{name:"Proboscis", itemDescription:" aerodynamic, sharp and pointy!", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6319} -{name:"null", itemDescription:"It's a null.", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6320} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6321} -{name:"Snakeskin body", itemDescription:"Made from 100% real snakeskin.", shopValue:1250, lowAlch:500, highAlch:750, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -5.0, 12.0, 25.0, 28.0, 32.0, 15.0, 35.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6322} -{name:"Snakeskin body", itemDescription:"Made from 100% real snakeskin.", shopValue:1250, lowAlch:500, highAlch:750, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -5.0, 12.0, 25.0, 28.0, 32.0, 15.0, 35.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6323} -{name:"Snakeskin chaps", itemDescription:"Made from 100% real snake.", shopValue:1175, lowAlch:470, highAlch:705, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 8.0, 8.0, 10.0, 4.0, 10.0, 10.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6324} -{name:"Snakeskin chaps", itemDescription:"Made from 100% real snake.", shopValue:1175, lowAlch:470, highAlch:705, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 8.0, 8.0, 10.0, 4.0, 10.0, 10.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6325} -{name:"Snakeskin bandana", itemDescription:"Lightweight head protection.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -5.0, 4.0, 2.0, 4.0, 4.0, 2.0, 2.0, 6.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6326} -{name:"Snakeskin bandana", itemDescription:"Lightweight head protection.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -5.0, 4.0, 2.0, 4.0, 4.0, 2.0, 2.0, 6.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6327} -{name:"Snakeskin boots", itemDescription:"Made from snakes.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -10.0, 3.0, 1.0, 1.0, 2.0, 1.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6328} -{name:"Snakeskin boots", itemDescription:"Made from snakes.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -10.0, 3.0, 1.0, 1.0, 2.0, 1.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6329} -{name:"Snakeskin vambraces", itemDescription:"Made from 100% real snake.", shopValue:434, lowAlch:173, highAlch:260, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 2.0, 2.0, 2.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6330} -{name:"Snakeskin vambraces", itemDescription:"Made from 100% real snake.", shopValue:434, lowAlch:173, highAlch:260, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 2.0, 2.0, 2.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6331} -{name:"Mahogany logs", itemDescription:"Some well-cut mahogany logs.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:133.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6332} -{name:"Teak logs", itemDescription:"Some well-cut teak logs.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:135.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6333} -{name:"Teak logs", itemDescription:"Some well-cut teak logs.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:135.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6334} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6335} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6336} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6337} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6338} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6339} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6340} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6341} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6342} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6343} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6344} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6345} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6346} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6347} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6348} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6349} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6350} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6351} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6352} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6353} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6354} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6355} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6356} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6357} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6358} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6359} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6360} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6361} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6362} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6363} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6364} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6365} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6366} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6367} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6368} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6369} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6370} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6371} -{name:"Tribal top", itemDescription:"Local dress.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6372} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6373} -{name:"Villager robe", itemDescription:"A brightly coloured robe prized by the Tai Bwo Wannai peoples.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6374} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6375} -{name:"Villager hat", itemDescription:"A brightly coloured hat prized by the Tai Bwo Wannai peoples.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6376} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6377} -{name:"Villager sandals", itemDescription:"A brightly coloured pair of local sandals.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6378} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6379} -{name:"Villager armband", itemDescription:"A <colour> armband, as worn by the Tai Bwo Wannai locals.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6380} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6381} -{name:"Fez", itemDescription:"A fez hat. Juss like that.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6382} -{name:"Fez", itemDescription:"A fez hat. Juss like that.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6383} -{name:"Desert top", itemDescription:"A bit itchy.", shopValue:15, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6384} -{name:"Desert top", itemDescription:"A bit itchy.", shopValue:15, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6385} -{name:"Desert robes", itemDescription:"Has a coarse hard wearing texture.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6386} -{name:"Desert robes", itemDescription:"Has a coarse hard wearing texture.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6387} -{name:"Desert top", itemDescription:"A bit itchy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6388} -{name:"Desert top", itemDescription:"A bit itchy.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6389} -{name:"Desert legs", itemDescription:"Better than factor 50 sun cream.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6390} -{name:"Desert legs", itemDescription:"Better than factor 50 sun cream.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6391} -{name:"Menap headgear", itemDescription:"Good for keeping the sun off my neck.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6392} -{name:"Menap headgear", itemDescription:"Good for keeping the sun off my neck.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6393} -{name:"Menaphite top", itemDescription:"Colourful.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6394} -{name:"Menaphite top", itemDescription:"Colourful.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6395} -{name:"Menaphite robe", itemDescription:"A cool light Menaphite robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6396} -{name:"Menaphite robe", itemDescription:"A cool light Menaphite robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6397} -{name:"Menap action kilt", itemDescription:"Look at those nobbily knees.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6398} -{name:"Menap action kilt", itemDescription:"Look at those nobbily knees.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6399} -{name:"Menap headgear", itemDescription:"Good for keeping the sun off my neck.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6400} -{name:"Menap headgear", itemDescription:"Good for keeping the sun off my neck.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6401} -{name:"Menaphite top", itemDescription:"Colourful.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6402} -{name:"Menaphite top", itemDescription:"Colourful.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6403} -{name:"Menaphite robe", itemDescription:"A cool light Menaphite robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6404} -{name:"Menaphite robe", itemDescription:"A cool light Menaphite robe.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6405} -{name:"Menap action kilt", itemDescription:"Look at those nobbily knees.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6406} -{name:"Menap action kilt", itemDescription:"Look at those nobbily knees.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6407} -{name:"Oak blackjack (o)", itemDescription:"An offensive blackjack.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6408} -{name:"Oak blackjack (o)", itemDescription:"An offensive blackjack.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6409} -{name:"Oak blackjack (d)", itemDescription:"An defensive blackjack.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6410} -{name:"Oak blackjack (d)", itemDescription:"An defensive blackjack.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6411} -{name:"Willow blackjack (o)", itemDescription:"An offensive blackjack.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6412} -{name:"Willow blackjack (o)", itemDescription:"An offensive blackjack.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6413} -{name:"Willow blackjack (d)", itemDescription:"A defensive blackjack.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6414} -{name:"Willow blackjack (d)", itemDescription:"A defensive blackjack.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6415} -{name:"Maple blackjack", itemDescription:"A solid bit of maple.", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6416} -{name:"Maple blackjack", itemDescription:"A solid bit of maple.", shopValue:1200, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6417} -{name:"Maple blackjack (o)", itemDescription:"A offensive blackjack.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6418} -{name:"Maple blackjack (o)", itemDescription:"A offensive blackjack.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6419} -{name:"Maple blackjack (d)", itemDescription:"A defensive blackjack.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6420} -{name:"Maple blackjack (d)", itemDescription:"A defensive blackjack.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6421} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6422} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6423} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6424} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6425} -{name:"Earth rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6426} -{name:"Earth rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6427} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6428} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6429} -{name:"Chaos rune", itemDescription:"Used for low level missile spells.", shopValue:0, lowAlch:18, highAlch:28, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6430} -{name:"Chaos rune", itemDescription:"Used for low level missile spells.", shopValue:0, lowAlch:18, highAlch:28, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6431} -{name:"Death rune", itemDescription:"Used for medium level missile spells.", shopValue:0, lowAlch:41, highAlch:62, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6432} -{name:"Death rune", itemDescription:"Used for medium level missile spells.", shopValue:0, lowAlch:41, highAlch:62, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6433} -{name:"Law rune", itemDescription:"Used for teleport spells.", shopValue:0, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6434} -{name:"Law rune", itemDescription:"Used for teleport spells.", shopValue:0, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6435} -{name:"Mind rune", itemDescription:"Used for basic level missile spells.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6436} -{name:"Mind rune", itemDescription:"Used for basic level missile spells.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6437} -{name:"Body rune", itemDescription:"Used for Curse spells", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6438} -{name:"Body rune", itemDescription:"Used for Curse spells", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6439} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6440} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6441} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6442} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6443} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6444} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6445} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6446} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6447} -{name:"Spadeful of coke", itemDescription:"A spadeful of refined coal.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6448} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6449} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6450} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6451} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6452} -{name:"White rose seed", itemDescription:"A white rosebush seed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6453} -{name:"Red rose seed", itemDescription:"A red rosebush seed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6454} -{name:"Pink rose seed", itemDescription:"A pink rosebush seed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6455} -{name:"Vine seed", itemDescription:"A grapevine seed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6456} -{name:"Delphinium seed", itemDescription:"A delphinium seed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6457} -{name:"Orchid seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6458} -{name:"Orchid seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6459} -{name:"Snowdrop seed", itemDescription:"A snowdrop seed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6460} -{name:"White tree shoot", itemDescription:" This shoot from a White Tree has been watered and will soon grow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6461} -{name:"White tree shoot", itemDescription:" This shoot from a White Tree has been watered and will soon grow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6462} -{name:"White tree shoot", itemDescription:" This shoot from a White Tree has been watered and will soon grow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6463} -{name:"White tree sapling", itemDescription:"A young White Tree sapling", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6464} -{name:"Ring of charos (a)", itemDescription:" The power within this ring has been activated.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6465} -{name:"Rune shards", itemDescription:"A rune essence chip that has been broken into shards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6466} -{name:"Rune dust", itemDescription:"Crushed rune essence.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6467} -{name:"Plant cure", itemDescription:"Use this on plants to cure disease.", shopValue:0, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6468} -{name:"White tree fruit", itemDescription:"Looks delicious.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6469} -{name:"Compost potion (4)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:120, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6470} -{name:"Compost potion (4)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:120, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6471} -{name:"Compost potion (3)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:90, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6472} -{name:"Compost potion (3)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:90, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6473} -{name:"Compost potion (2)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:60, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6474} -{name:"Compost potion (2)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:60, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6475} -{name:"Compost potion (1)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:30, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6476} -{name:"Compost potion (1)", itemDescription:"Pour this onto compost to make it into super-compost.", shopValue:30, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6477} -{name:"Trolley", itemDescription:"I can use this to move heavy objects. (or) An empty trolley.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6478} -{name:"List", itemDescription:"A list of things that I must collect for Queen Ellamaria.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6479} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6480} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6481} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6482} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6483} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6484} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6485} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6486} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6487} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6488} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6489} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6490} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6491} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6492} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6493} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6494} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6495} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6496} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6497} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6498} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6499} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6500} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6501} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6502} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6503} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6504} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6505} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6506} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6507} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6508} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6509} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6510} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6511} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6512} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6513} -{name:"Agility jump", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6514} -{name:"Agility balance", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6515} -{name:"Agility contortion", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6516} -{name:"Agility climb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6517} -{name:"Agility jump", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6518} -{name:"Agility balance", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6519} -{name:"Agility contortion", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6520} -{name:"Agility climb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6521} -{name:"Toktz-xil-ul", itemDescription:"A razor sharp ring of obsidian.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6522} -{name:"Toktz-xil-ak", itemDescription:"A razor sharp sword of obsidian.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[47.0, 38.0, -2.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6523} -{name:"Toktz-ket-xil", itemDescription:"A spiked shield of Obsidian.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -12.0, -8.0, 40.0, 42.0, 38.0, 0.0, 65.0, 60.0, 5.0, 0.0, 11.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6524} -{name:"Toktz-xil-ek", itemDescription:"A large knife of Obsidian.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[16.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6525} -{name:"Toktz-mej-tal", itemDescription:"A staff of obsidian.", shopValue:35000, lowAlch:14000, highAlch:21000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[15.0, -1.0, 55.0, 15.0, 0.0, 10.0, 15.0, 5.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6526} -{name:"Tzhaar-ket-em", itemDescription:"A mace of obsidian.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6527} -{name:"Tzhaar-ket-om", itemDescription:"A maul of obsidian.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 80.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6528} -{name:"Tokkul", itemDescription:"It's a Token of some kind made from Obsidian.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6529} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6530} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6531} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6532} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6533} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6534} -{name:"Toktz-xil-ak", itemDescription:"A razor sharp sword of obsidian.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[47.0, 38.0, -2.0, 0.0, 0.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6535} -{name:"Toktz-ket-xil", itemDescription:"A spiked shield of Obsidian.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, -12.0, -8.0, 40.0, 42.0, 38.0, 0.0, 65.0, 60.0, 5.0, 0.0, 11.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6536} -{name:"Toktz-xil-ek", itemDescription:"A large knife of Obsidian.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[16.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6537} -{name:"Toktz-mej-tal", itemDescription:"A staff of obsidian.", shopValue:35000, lowAlch:14000, highAlch:21000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[15.0, -1.0, 55.0, 15.0, 0.0, 10.0, 15.0, 5.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6538} -{name:"Tzhaar-ket-em", itemDescription:"A mace of obsidian.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[-4.0, -4.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6539} -{name:"Tzhaar-ket-om", itemDescription:"A maul of obsidian.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 80.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6540} -{name:"Mouse toy", itemDescription:"An Advanced Combat Training Device.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6541} -{name:"Present", itemDescription:"Thanks for all your help! Love, Bob & Neite.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6542} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6543} -{name:"Catspeak amulet (e)", itemDescription:"It's an amulet of cat speak. It makes vague purring noises.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6544} -{name:"Chores", itemDescription:"A list of chores that Bob gave you to do.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6545} -{name:"Recipe", itemDescription:"It says on the back 'My favourite recipe.'", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6546} -{name:"Doctors hat", itemDescription:"A mirror helps reflect light on the subject.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6547} -{name:"Nurse hat", itemDescription:"A nurse's hat, but does it have healing powers?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6548} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6549} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6550} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6551} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6552} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6553} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6554} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6555} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6556} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6557} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6558} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6559} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6560} -{name:"Ahab's beer", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6561} -{name:"Mud battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6562} -{name:"Mystic mud staff", itemDescription:"It's a slightly magical stick.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6563} -{name:"Onyx ring", itemDescription:"A valuable ring.", shopValue:0, lowAlch:80400, highAlch:120600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6564} -{name:"Onyx necklace", itemDescription:"I wonder if this is valuable.", shopValue:0, lowAlch:80400, highAlch:120600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6565} -{name:"Onyx amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:0, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6566} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6567} -{name:"Obsidian cape", itemDescription:"A cape woven of obsidian plates.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6568} -{name:"Obsidian cape", itemDescription:"A cape woven of obsidian plates.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6569} -{name:"Fire cape", itemDescription:"A cape of fire.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 0.0, 0.0, 0.0, 4.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6570} -{name:"Uncut onyx", itemDescription:"An uncut onyx.", shopValue:200000, lowAlch:720000, highAlch:1080000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6571} -{name:"Uncut onyx", itemDescription:"An uncut onyx.", shopValue:200000, lowAlch:720000, highAlch:1080000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6572} -{name:"Onyx", itemDescription:"This looks valuable.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6573} -{name:"Onyx", itemDescription:"This looks valuable.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6574} -{name:"Onyx ring", itemDescription:"A valuable ring.", shopValue:201000, lowAlch:80400, highAlch:120600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6575} -{name:"Onyx ring", itemDescription:"A valuable ring.", shopValue:201000, lowAlch:80400, highAlch:120600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6576} -{name:"Onyx necklace", itemDescription:"I wonder if this is valuable.", shopValue:201000, lowAlch:80400, highAlch:120600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6577} -{name:"Onyx necklace", itemDescription:"I wonder if this is valuable.", shopValue:201000, lowAlch:80400, highAlch:120600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6578} -{name:"Onyx amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:201000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6579} -{name:"Onyx amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:201000, lowAlch:80800, highAlch:121200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6580} -{name:"Onyx amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:201000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6581} -{name:"Onyx amulet", itemDescription:"I wonder if I can get this enchanted.", shopValue:201000, lowAlch:80800, highAlch:121200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6582} -{name:"Ring of stone", itemDescription:"An enchanted ring.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6583} -{name:"Ring of stone", itemDescription:"An enchanted ring.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6584} -{name:"Amulet of fury", itemDescription:"A very powerful onyx amulet.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 0.0, 0.0, 0.0, 8.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6585} -{name:"Amulet of fury", itemDescription:"A very powerful onyx amulet.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 0.0, 0.0, 0.0, 8.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6586} -{name:"White claws", itemDescription:"A set of fighting claws.", shopValue:360, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 14.0, -4.0, 0.0, 0.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6587} -{name:"White claws", itemDescription:"A set of fighting claws.", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 14.0, -4.0, 0.0, 0.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6588} -{name:"White battleaxe", itemDescription:"A vicious looking axe.", shopValue:1248, lowAlch:499, highAlch:748, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 20.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6589} -{name:"White battleaxe", itemDescription:"A vicious looking axe.", shopValue:1248, lowAlch:499, highAlch:748, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 20.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6590} -{name:"White dagger", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6591} -{name:"White dagger", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6592} -{name:"White dagger (p)", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6593} -{name:"White dagger (p)", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6594} -{name:"White dagger (p+)", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6595} -{name:"White dagger (p+)", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6596} -{name:"White dagger (p++)", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6597} -{name:"White dagger (p++)", itemDescription:"A vicious white dagger.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 5.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6598} -{name:"White halberd", itemDescription:"A white halberd.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:31.0, bonuses:[19.0, 25.0, 0.0, -4.0, 0.0, -1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6599} -{name:"White halberd", itemDescription:"A white halberd.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:31.0, bonuses:[19.0, 25.0, 0.0, -4.0, 0.0, -1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6600} -{name:"White mace", itemDescription:"A spiky mace.", shopValue:432, lowAlch:172, highAlch:259, isStackable:false, isNoteable:false, weight:18.0, bonuses:[8.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6601} -{name:"White mace", itemDescription:"A spiky mace.", shopValue:432, lowAlch:172, highAlch:259, isStackable:true, isNoteable:true, weight:18.0, bonuses:[8.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6602} -{name:"White magic staff", itemDescription:"A Magical staff.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[2.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6603} -{name:"White magic staff", itemDescription:"A Magical staff.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:22.0, bonuses:[2.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6604} -{name:"White sword", itemDescription:"A razor sharp sword.", shopValue:624, lowAlch:249, highAlch:374, isStackable:false, isNoteable:false, weight:18.0, bonuses:[14.0, 10.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6605} -{name:"White sword", itemDescription:"A razor sharp sword.", shopValue:624, lowAlch:249, highAlch:374, isStackable:true, isNoteable:true, weight:18.0, bonuses:[14.0, 10.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6606} -{name:"White longsword", itemDescription:"A razor sharp longsword.", shopValue:960, lowAlch:384, highAlch:576, isStackable:false, isNoteable:false, weight:18.0, bonuses:[13.0, 18.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6607} -{name:"White longsword", itemDescription:"A razor sharp longsword.", shopValue:960, lowAlch:384, highAlch:576, isStackable:true, isNoteable:true, weight:18.0, bonuses:[13.0, 18.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6608} -{name:"White 2h sword", itemDescription:"A two handed sword.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 27.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6609} -{name:"White 2h sword", itemDescription:"A two handed sword.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 27.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6610} -{name:"White scimitar", itemDescription:"A vicious, curved sword.", shopValue:768, lowAlch:307, highAlch:460, isStackable:false, isNoteable:false, weight:1.0, bonuses:[4.0, 19.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6611} -{name:"White scimitar", itemDescription:"A vicious, curved sword.", shopValue:768, lowAlch:307, highAlch:460, isStackable:true, isNoteable:true, weight:1.0, bonuses:[4.0, 19.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6612} -{name:"White warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:980, lowAlch:392, highAlch:588, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 22.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6613} -{name:"White warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:980, lowAlch:392, highAlch:588, isStackable:true, isNoteable:true, weight:18.0, bonuses:[-4.0, -4.0, 22.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6614} -{name:"White chainbody", itemDescription:"A series of connected metal rings.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 22.0, 32.0, 39.0, -3.0, 24.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6615} -{name:"White chainbody", itemDescription:"A series of connected metal rings.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 22.0, 32.0, 39.0, -3.0, 24.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6616} -{name:"White platebody", itemDescription:"Provides excellent protection.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6617} -{name:"White platebody", itemDescription:"Provides excellent protection.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6618} -{name:"White boots", itemDescription:"These will protect my feet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 9.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6619} -{name:"White boots", itemDescription:"These will protect my feet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 9.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6620} -{name:"White med helm", itemDescription:"A medium sized helmet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6621} -{name:"White med helm", itemDescription:"A medium sized helmet.", shopValue:576, lowAlch:230, highAlch:345, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6622} -{name:"White full helm", itemDescription:"A full face helmet.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6623} -{name:"White full helm", itemDescription:"A full face helmet.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6624} -{name:"White platelegs", itemDescription:"Big, white and heavy looking.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6625} -{name:"White platelegs", itemDescription:"Big, white and heavy looking.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6626} -{name:"White plateskirt", itemDescription:"Big, white, and heavy looking.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6627} -{name:"White plateskirt", itemDescription:"Big, white, and heavy looking.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6628} -{name:"White gloves", itemDescription:"These will keep my hands warm!", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6629} -{name:"White gloves", itemDescription:"These will keep my hands warm!", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6630} -{name:"White sq shield", itemDescription:"A medium square shield.", shopValue:1152, lowAlch:460, highAlch:691, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 15.0, 16.0, 14.0, 0.0, 15.0, 9.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6631} -{name:"White sq shield", itemDescription:"A medium square shield.", shopValue:1152, lowAlch:460, highAlch:691, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 15.0, 16.0, 14.0, 0.0, 15.0, 9.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6632} -{name:"White kiteshield", itemDescription:"A large metal shield.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6633} -{name:"White kiteshield", itemDescription:"A large metal shield.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6634} -{name:"Commorb", itemDescription:"A Temple Knight Communication Orb. Top Secret! / Use this to stay in touch with Korasi and Jessika. (A Void Dance version) / Tyr's commorb, given to him by Sir Tiffy. (Tyr's commorb)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6635} -{name:"Solus's hat", itemDescription:"Proof that I have defeated the evil mage Solus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6636} -{name:"Dark beast", itemDescription:"From a darker dimension.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6637} -{name:"Colour wheel", itemDescription:"A key to the nature of light itself. (Mourning's Ends Part II)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6638} -{name:"Hand mirror", itemDescription:"A small hand mirror.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6639} -{name:"Red crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6640} -{name:"Yellow crystal", itemDescription:"A yellow crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6641} -{name:"Green crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6642} -{name:"Cyan crystal", itemDescription:"A cyan crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6643} -{name:"Blue crystal", itemDescription:"A blue crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6644} -{name:"Magenta crystal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6645} -{name:"Fractured crystal", itemDescription:"A fractured crystal, one of the edges is clear.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6646} -{name:"Fractured crystal", itemDescription:"A fractured crystal, one of the edges is clear.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6647} -{name:"Item list", itemDescription:"It's a list of items I need to collect.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6648} -{name:"Edern's journal", itemDescription:"The journal of Nissyen Edern.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6649} -{name:"Blackened crystal", itemDescription:"A blackened crystal sample.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6650} -{name:"Newly made crystal", itemDescription:"A newly formed crystal / A warm energy radiates from this crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6651} -{name:"Newly made crystal", itemDescription:"A newly formed crystal / A warm energy radiates from this crystal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6652} -{name:"Crystal trinket", itemDescription:"A small Crystal trinket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6653} -{name:"Camo top", itemDescription:"Examine what?", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6654} -{name:"Camo bottoms", itemDescription:"Examine what?", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6655} -{name:"Camo helmet", itemDescription:"Examine what?", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6656} -{name:"Null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6657} -{name:"Null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6658} -{name:"Null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6659} -{name:"Fishing explosive", itemDescription:"The jar keeps shaking... I'm scared.", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6660} -{name:"Mogre", itemDescription:"An angry Ogre in a funny hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6661} -{name:"Broken fishing rod", itemDescription:"This fishing rod seems to have been bitten in half.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6662} -{name:"Forlorn boot", itemDescription:"It seems someone vacated this boot in a hurry.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6663} -{name:"Fishing explosive", itemDescription:"The jar keeps shaking... I'm scared.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6664} -{name:"Mudskipper hat", itemDescription:"Fishy, damp and smelly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6665} -{name:"Flippers", itemDescription:"Strangely uncomfortable flippers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6666} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6667} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6668} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6669} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6670} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6671} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6672} -{name:"Fishbowl and net", itemDescription:"An empty fishbowl in a net.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6673} -{name:"Tiny net", itemDescription:"A tiny net for grabbing tiny fish.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6674} -{name:"An empty box", itemDescription:" Ground Guam and Ground Seaweed. '", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6675} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6676} -{name:"Guam in a box", itemDescription:" Ground Guam and Ground Seaweed.' Well, I have the Guam Leaf...", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6677} -{name:"Guam in a box?", itemDescription:" Ground Guam and Ground Seaweed.' Well, I have the Guam Leaf...", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6678} -{name:"Seaweed in a box", itemDescription:" Ground Guam and Ground Seaweed.' Well, I have the Seaweed...", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6679} -{name:"Seaweed in a box?", itemDescription:" Ground Guam and Ground Seaweed.' Well, I have the Seaweed...", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6680} -{name:"Ground guam", itemDescription:"One of the ingredients for making fish food.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6681} -{name:"Ground guam", itemDescription:"One of the ingredients for making fish food.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6682} -{name:"Ground seaweed", itemDescription:"One of the ingredients for making fish food.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6683} -{name:"Ground seaweed", itemDescription:"One of the ingredients for making fish food.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6684} -{name:"Saradomin brew (4)", itemDescription:"A Saradomin Brew.", shopValue:200, lowAlch:80, highAlch:121, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6685} -{name:"Saradomin brew (4)", itemDescription:"A Saradomin Brew.", shopValue:200, lowAlch:80, highAlch:121, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6686} -{name:"Saradomin brew (3)", itemDescription:"A Saradomin Brew.", shopValue:175, lowAlch:80, highAlch:121, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6687} -{name:"Saradomin brew (3)", itemDescription:"A Saradomin Brew.", shopValue:175, lowAlch:80, highAlch:121, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6688} -{name:"Saradomin brew (2)", itemDescription:"A Saradomin Brew.", shopValue:150, lowAlch:80, highAlch:121, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6689} -{name:"Saradomin brew (2)", itemDescription:"A Saradomin Brew.", shopValue:150, lowAlch:80, highAlch:121, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6690} -{name:"Saradomin brew (1)", itemDescription:"A Saradomin Brew.", shopValue:125, lowAlch:80, highAlch:121, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6691} -{name:"Saradomin brew (1)", itemDescription:"A Saradomin Brew.", shopValue:125, lowAlch:80, highAlch:121, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6692} -{name:"Crushed nest", itemDescription:"It's a crushed bird's nest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6693} -{name:"Crushed nest", itemDescription:"It's a crushed bird's nest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6694} -{name:"Desert lizard", itemDescription:"A cold-blooded creature, partial to warmth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6695} -{name:"Ice cooler", itemDescription:"Contains ice-cold water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6696} -{name:"Pat of butter", itemDescription:"A pat of freshly churned butter.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6697} -{name:"Pat of butter", itemDescription:"A pat of freshly churned butter.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6698} -{name:"Burnt potato", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6699} -{name:"Burnt potato", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6700} -{name:"Baked potato", itemDescription:"It'd taste even better with some toppings.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6701} -{name:"Baked potato", itemDescription:"It'd taste even better with some toppings.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6702} -{name:"Potato with butter", itemDescription:"A baked potato with butter.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6703} -{name:"Potato with butter", itemDescription:"A baked potato with butter.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6704} -{name:"Potato with cheese", itemDescription:"A baked potato with butter and cheese.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6705} -{name:"Potato with cheese", itemDescription:"A baked potato with butter and cheese.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6706} -{name:"Camulet", itemDescription:"An amulet of Camel-speak. It makes vague braying noises.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6707} -{name:"Slayer gloves", itemDescription:"Especially good against diseased arachnids.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6708} -{name:"Fever spider", itemDescription:"A bunch of legs, eyes and teeth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6709} -{name:"Blindweed seed", itemDescription:"", shopValue:166, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6710} -{name:"Blindweed", itemDescription:"An inedible, foul smelling herb.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6711} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6712} -{name:"Wrench", itemDescription:"A heavy metal wrench.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6713} -{name:"Holy wrench", itemDescription:"A shining paragon of wrenchly virtue.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6714} -{name:"Sluglings", itemDescription:"They look at you balefully. 'Feed us...'", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6715} -{name:"Karamthulhu", itemDescription:"A sinister looking squid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6716} -{name:"Karamthulhu", itemDescription:"A sinister looking squid.", shopValue:20000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6717} -{name:"Fever spider body", itemDescription:"A diseased deceased Fever Spider. Handle with care.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6718} -{name:"Unsanitary swill", itemDescription:"Sorry, I mean a bucket of 'rum'.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6719} -{name:"Slayer gloves", itemDescription:"Especially good against diseased arachnids.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6720} -{name:"Rusty scimitar", itemDescription:"A decent enough weapon gone rusty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6721} -{name:"Zombie head", itemDescription:"Alas...I hardly knew him.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6722} -{name:"Fishbowl", itemDescription:"An empty fishbowl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6723} -{name:"Seercull", itemDescription:"An ancient Fremennik bow that was once used to battle the Moon Clan.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6724} -{name:"Seercull", itemDescription:"An ancient Fremennik bow that was once used to battle the Moon Clan.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6725} -{name:"Mud battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6726} -{name:"Mystic mud staff", itemDescription:"It's a slightly magical stick.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6727} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6728} -{name:"Dagannoth bones", itemDescription:"These would feed a dogfish for months!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6729} -{name:"Dagannoth bones", itemDescription:"These would feed a dogfish for months!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6730} -{name:"Seers' ring", itemDescription:"A mysterious ring that can fill the wearer with magical power...", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6731} -{name:"Seers' ring", itemDescription:"A mysterious ring that can fill the wearer with magical power...", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6732} -{name:"Archers' ring", itemDescription:"A fabled ring that improves the wearer's skill with a bow...", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6733} -{name:"Archers' ring", itemDescription:"A fabled ring that improves the wearer's skill with a bow...", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6734} -{name:"Warrior ring", itemDescription:"A legendary ring once worn by Fremennik warriors.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6735} -{name:"Warrior ring", itemDescription:"A legendary ring once worn by Fremennik warriors.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6736} -{name:"Berserker ring", itemDescription:"A ring reputed to bring out a berserk fury in its wearer.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6737} -{name:"Berserker ring", itemDescription:"A ring reputed to bring out a berserk fury in its wearer.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6738} -{name:"Dragon hatchet", itemDescription:"A very powerful hatchet.", shopValue:55000, lowAlch:22000, highAlch:33000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 38.0, 32.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6739} -{name:"Dragon hatchet", itemDescription:"A very powerful hatchet.", shopValue:55000, lowAlch:22000, highAlch:33000, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-2.0, 38.0, 32.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6740} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6741} -{name:"Broken hatchet", itemDescription:"Bob can fix this broken (metal) axe for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6742} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6743} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6744} -{name:"Silverlight", itemDescription:"The magical sword 'Silverlight'. / The magical sword 'Silverlight', stained black with mushroom ink. (during Shadow of the Storm)", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:18.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6745} -{name:"Darklight", itemDescription:"The magical sword Silverlight, enhanced with the blood of Agrith-Naar.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:18.0, bonuses:[10.0, 16.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6746} -{name:"Demonic sigil mould", itemDescription:"Used to make the sigil of the demon Agrith-Naar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6747} -{name:"Demonic sigil", itemDescription:"A sigil used for the summoning of the demon Agrith-Naar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6748} -{name:"Demonic tome", itemDescription:"Will this book help in summoning Agrith-Naar?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6749} -{name:"Black desert shirt", itemDescription:"A desert shirt stained black with mushroom ink.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6750} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6751} -{name:"Black desert robe", itemDescription:"A desert robe stained black with mushroom ink.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6752} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6753} -{name:"Enchanted key", itemDescription:"It changes temperature as I walk. (Meeting History)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6754} -{name:"Journal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6755} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6756} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6757} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6758} -{name:"Chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6759} -{name:"Guthix mjolnir", itemDescription:"A Guthix Mjolnir.", shopValue:625, lowAlch:250, highAlch:375, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6760} -{name:"Guthix mjolnir", itemDescription:"A Guthix Mjolnir.", shopValue:625, lowAlch:250, highAlch:375, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6761} -{name:"Saradomin mjolnir", itemDescription:"A Saradomin Mjolnir.", shopValue:625, lowAlch:250, highAlch:375, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6762} -{name:"Saradomin mjolnir", itemDescription:"A Saradomin Mjolnir.", shopValue:625, lowAlch:250, highAlch:375, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6763} -{name:"Zamorak mjolnir", itemDescription:"A Zamorak mjolnir.", shopValue:625, lowAlch:250, highAlch:375, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6764} -{name:"Zamorak mjolnir", itemDescription:"A Zamorak mjolnir.", shopValue:625, lowAlch:250, highAlch:375, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6765} -{name:"Cat antipoison", itemDescription:"Antipoison for Pox.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6766} -{name:"Book", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6767} -{name:"Poisoned cheese", itemDescription:"A little more smelly than usual.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6768} -{name:"Music scroll", itemDescription:"Charming.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6769} -{name:"Directions", itemDescription:"Jimmy Dazzler's directions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6770} -{name:"Pot of weeds", itemDescription:"Contains garden weeds.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6771} -{name:"Smouldering pot", itemDescription:"Contains slowly burning garden weeds.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6772} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6773} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6774} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6775} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6776} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6777} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6778} -{name:"Rat pole", itemDescription:" A pole with (one to six) rat(s) on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6779} -{name:"Menaphite thug", itemDescription:"Menaphite thug.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6780} -{name:"Bandit", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6781} -{name:"Bandit", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6782} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6783} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6784} -{name:"Statuette", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6785} -{name:"Robe of elidinis", itemDescription:"This looks quite old.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6786} -{name:"Robe of elidinis", itemDescription:"This looks quite old.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6787} -{name:"Torn robe", itemDescription:"This robe is too torn to wear.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6788} -{name:"Torn robe", itemDescription:"This robe is too torn to wear.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6789} -{name:"Shoes", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6790} -{name:"Sole", itemDescription:"Awusah's Sole.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6791} -{name:"Ancestral key", itemDescription:"An ancient key from the shrine in Nardah. (Spirits of the Elid)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6792} -{name:"Ballad", itemDescription:"The Ballad of Jaresh.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6793} -{name:"Choc-ice", itemDescription:"A tasty treat from Nardah - better eat this before it melts.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6794} -{name:"Choc-ice", itemDescription:"A tasty treat from Nardah - better eat this before it melts.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6795} -{name:"Lamp", itemDescription:"Wonder what happens if I rub it...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6796} -{name:"Watering can", itemDescription:"See article", shopValue:0, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6797} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6798} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6799} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6800} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6801} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6802} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6803} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6804} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6805} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6806} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6807} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6808} -{name:"Granite legs", itemDescription:"These look pretty heavy.", shopValue:66000, lowAlch:26400, highAlch:39600, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, -31.0, -18.0, 43.0, 45.0, 41.0, -4.0, 68.0, 20.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6809} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6810} -{name:"Skeletal wyvern", itemDescription:"A very dangerous pile of animated Wyvern bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6811} -{name:"Wyvern bones", itemDescription:"Bones of a huge flying creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6812} -{name:"Granite legs", itemDescription:"These look pretty heavy.", shopValue:66000, lowAlch:26400, highAlch:39600, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, -31.0, -18.0, 43.0, 45.0, 41.0, -4.0, 68.0, 20.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6813} -{name:"Fur", itemDescription:"This would make warm clothing.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6814} -{name:"Fur", itemDescription:"This would make warm clothing.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6815} -{name:"Wyvern bones", itemDescription:"Bones of a huge flying creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6816} -{name:"Slender blade", itemDescription:"A slender two-handed sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6817} -{name:"Bow-sword", itemDescription:"A sharp sword that can also fire arrows.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6818} -{name:"Large pouch", itemDescription:"A large pouch used for storing essence.", shopValue:0, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6819} -{name:"Relic", itemDescription:" The assassin's plunder from the church on Entrana.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6820} -{name:"Orb", itemDescription:"This looks valuable.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6821} -{name:"Star bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6822} -{name:"Star bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6823} -{name:"Star bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6824} -{name:"Star bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6825} -{name:"Star bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6826} -{name:"Star bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6827} -{name:"Box bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6828} -{name:"Box bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6829} -{name:"Box bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6830} -{name:"Box bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6831} -{name:"Box bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6832} -{name:"Box bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6833} -{name:"Diamond bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6834} -{name:"Diamond bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6835} -{name:"Diamond bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6836} -{name:"Diamond bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6837} -{name:"Diamond bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6838} -{name:"Diamond bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6839} -{name:"Tree bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6840} -{name:"Tree bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6841} -{name:"Tree bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6842} -{name:"Tree bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6843} -{name:"Tree bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6844} -{name:"Tree bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6845} -{name:"Bell bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6846} -{name:"Bell bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6847} -{name:"Bell bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6848} -{name:"Bell bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6849} -{name:"Bell bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6850} -{name:"Bell bauble", itemDescription:"See individual articles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6851} -{name:"Puppet box", itemDescription:"A box for storing completed puppets.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6852} -{name:"Bauble box", itemDescription:"A box for storing painted baubles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6853} -{name:"Puppet box", itemDescription:"A box for storing completed puppets.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6854} -{name:"Bauble box", itemDescription:"A box for storing painted baubles.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6855} -{name:"Bobble hat", itemDescription:"A woolly bobble hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6856} -{name:"Bobble scarf", itemDescription:"A woolly scarf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6857} -{name:"Jester hat", itemDescription:"A woolly Jester hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6858} -{name:"Jester scarf", itemDescription:"A woolly jester scarf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6859} -{name:"Tri-jester hat", itemDescription:"A woolly triple bobble jester hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6860} -{name:"Tri-jester scarf", itemDescription:"A woolly jester scarf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6861} -{name:"Woolly hat", itemDescription:"A woolly tobogganing hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6862} -{name:"Woolly scarf", itemDescription:"A woolly tobogganing scarf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6863} -{name:"Marionette handle", itemDescription:"The controlling part of a marionette.", shopValue:60000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6864} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6865} -{name:"Green marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6866} -{name:"Red marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6867} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6868} -{name:"Green marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6869} -{name:"Red marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6870} -{name:"Red marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6871} -{name:"Red marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6872} -{name:"Red marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6873} -{name:"Red marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6874} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6875} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6876} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6877} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6878} -{name:"Green marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6879} -{name:"Green marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6880} -{name:"Green marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6881} -{name:"Green marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6882} -{name:"Peach", itemDescription:"A tasty fruit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6883} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6884} -{name:"Progress hat", itemDescription:"A magic training arena progress hat", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6885} -{name:"Progress hat", itemDescription:"A magic training arena progress hat", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6886} -{name:"Progress hat", itemDescription:"A magic training arena progress hat", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6887} -{name:"Guardian statue", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6888} -{name:"Mages' book", itemDescription:"The magical book of the Mage.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6889} -{name:"Mages' book", itemDescription:"The magical book of the Mage.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6890} -{name:"Arena book", itemDescription:"A book about the Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6891} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6892} -{name:"Leather boots", itemDescription:"Comfortable leather boots.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6893} -{name:"Adamant kiteshield", itemDescription:"A large metal shield.", shopValue:0, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:58.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6894} -{name:"Adamant med helm", itemDescription:"A medium sized helmet.", shopValue:0, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 14.0, 15.0, 13.0, -1.0, 14.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6895} -{name:"Emerald", itemDescription:"This looks valuable.", shopValue:0, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6896} -{name:"Rune longsword", itemDescription:"A razor sharp longsword", shopValue:0, lowAlch:12800, highAlch:19200, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 47.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6897} -{name:"Cylinder", itemDescription:"A green cylinder", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6898} -{name:"Cube", itemDescription:"A yellow cube", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6899} -{name:"Icosahedron", itemDescription:"A blue icosahedron.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6900} -{name:"Pentamid", itemDescription:"A red pentamid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6901} -{name:"Orb", itemDescription:"This looks valuable.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6902} -{name:"Dragonstone", itemDescription:"This looks valuable.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6903} -{name:"Animals' bones", itemDescription:"Various animals' bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6904} -{name:"Animals' bones", itemDescription:"Various animals' bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6905} -{name:"Animals' bones", itemDescription:"Various animals' bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6906} -{name:"Animals' bones", itemDescription:"Various animals' bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6907} -{name:"Beginner wand", itemDescription:"A beginner level wand", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6908} -{name:"Beginner wand", itemDescription:"A beginner level wand", shopValue:1200, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6909} -{name:"Apprentice wand", itemDescription:"An apprentice level wand.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6910} -{name:"Apprentice wand", itemDescription:"An apprentice level wand.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6911} -{name:"Teacher wand", itemDescription:"A teacher level wand.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6912} -{name:"Teacher wand", itemDescription:"A teacher level wand.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6913} -{name:"Master wand", itemDescription:"A master level wand.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6914} -{name:"Master wand", itemDescription:"A master level wand.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6915} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6916} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6917} -{name:"Infinity hat", itemDescription:"A mystic hat.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6918} -{name:"Infinity hat", itemDescription:"A mystic hat.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6919} -{name:"Infinity boots", itemDescription:"Mystical boots.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6920} -{name:"Infinity boots", itemDescription:"Mystical boots.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6921} -{name:"Infinity gloves", itemDescription:"Mystical gloves.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6922} -{name:"Infinity gloves", itemDescription:"Mystical gloves.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6923} -{name:"Infinity bottoms", itemDescription:"Mystical robes.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 17.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6924} -{name:"Infinity bottoms", itemDescription:"Mystical robes.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 17.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6925} -{name:"Bones to peaches", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6926} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6927} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6928} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6929} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6930} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6931} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6932} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6933} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6934} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6935} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6936} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6937} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6938} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6939} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6940} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6941} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6942} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6943} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6944} -{name:"Sandy hand", itemDescription:"A severed hand covered with sand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6945} -{name:"Beer-soaked hand", itemDescription:"A severed hand dripping with beer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6946} -{name:"Bert's rota", itemDescription:"A copy of a work rota.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6947} -{name:"Sandy's rota", itemDescription:"An original work rota.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6948} -{name:"A magic scroll", itemDescription:"Maybe I should read this...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6949} -{name:"Magical orb", itemDescription:"An ordinary looking scrying orb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6950} -{name:"Magical orb (a)", itemDescription:"This magical scrying orb pulsates as it stores information.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6951} -{name:"Truth serum", itemDescription:"Fluid sloshes innocently in this vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6952} -{name:"Bottled water", itemDescription:"A bottle of water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6953} -{name:"Redberry juice", itemDescription:"Redberry juice sloshes around in this vial, waiting for white berries to be added.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6954} -{name:"Pink dye", itemDescription:"A vial of pink dye.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6955} -{name:"Rose-tinted lens", itemDescription:"This lens has a pinkish tinge to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6956} -{name:"Wizard's head", itemDescription:"A decapitated, sand-covered head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6957} -{name:"Sand", itemDescription:"A handful of sand from Sandy's pocket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6958} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6959} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6960} -{name:"Baguette", itemDescription:"A freshly baked baguette.", shopValue:40, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6961} -{name:"Triangle sandwich", itemDescription:"A freshly made triangle sandwich.", shopValue:40, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6962} -{name:"Roll", itemDescription:"A freshly made roll.", shopValue:40, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6963} -{name:"Coins", itemDescription:" Lovely money!", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6964} -{name:"Square sandwich", itemDescription:"A freshly made square sandwich.", shopValue:40, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6965} -{name:"Prison key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6966} -{name:"Dragon med helm", itemDescription:"Makes the wearer pretty intimidating.", shopValue:40, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6967} -{name:"Triangle sandwich", itemDescription:"A freshly made triangle sandwich.", shopValue:40, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6968} -{name:"Shark", itemDescription:"I'd better be careful eating this.", shopValue:40, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6969} -{name:"Pyramid top", itemDescription:"It's a solid gold pyramid!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6970} -{name:"Sandstone (1kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6971} -{name:"Sandstone (1kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6972} -{name:"Sandstone (2kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6973} -{name:"Sandstone (2kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6974} -{name:"Sandstone (5kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6975} -{name:"Sandstone (5kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6976} -{name:"Sandstone (10kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6977} -{name:"Sandstone (10kg)", itemDescription:"A large chunk of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6978} -{name:"Granite (500g)", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6979} -{name:"Granite (500g)", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6980} -{name:"Granite (2kg)", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6981} -{name:"Granite (2kg)", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6982} -{name:"Granite (5kg)", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6983} -{name:"Granite (5kg)", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6984} -{name:"Sandstone (20kg)", itemDescription:"A huge twenty-kilo block of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6985} -{name:"Sandstone (32kg)", itemDescription:"A huge thirty-two-kilo block of sandstone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6986} -{name:"Sandstone body", itemDescription:"The body of a sandstone statue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6987} -{name:"Sandstone base", itemDescription:"The base and legs of a sandstone statue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6988} -{name:"Stone head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6989} -{name:"Stone head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6990} -{name:"Stone head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6991} -{name:"Stone head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6992} -{name:"Z sigil", itemDescription:"A metal sigil in the shape of a Z.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6993} -{name:"M sigil", itemDescription:"A metal sigil in the shape of an M.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6994} -{name:"R sigil", itemDescription:"A metal sigil in the shape of an R.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6995} -{name:"K sigil", itemDescription:"A metal sigil in the shape of a K.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6996} -{name:"Stone left arm", itemDescription:"The left arm of a large stone statue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6997} -{name:"Stone right arm", itemDescription:"The right arm of a large stone statue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6998} -{name:"Stone left leg", itemDescription:"The left leg of a large stone statue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:6999} -{name:"Stone right leg", itemDescription:"The right leg of a large stone statue.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7000} -{name:"Camel mould (p)", itemDescription:"A positive clay mould of a camel's head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7001} -{name:"Stone head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7002} -{name:"Camel mask", itemDescription:"Blend in in the desert.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7003} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:0, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7004} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7005} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7006} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7007} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7008} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7009} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7010} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7011} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7012} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7013} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7014} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7015} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7016} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7017} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7018} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7019} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7020} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7021} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7022} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7023} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7024} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7025} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7026} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7027} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7028} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7029} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7030} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7031} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7032} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7033} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7034} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7035} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7036} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7037} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7038} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7039} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7040} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7041} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7042} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7043} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7044} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7045} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7046} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7047} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7048} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7049} -{name:"Harpie bug swarm", itemDescription:"A swarm of bugs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7050} -{name:"Unlit bug lantern", itemDescription:"A lantern to aid attacking Harpie bugs.", shopValue:130, lowAlch:52, highAlch:78, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7051} -{name:"Unlit bug lantern", itemDescription:"A lantern to aid attacking Harpie bugs.", shopValue:130, lowAlch:52, highAlch:78, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7052} -{name:"Lit bug lantern", itemDescription:"A lantern to aid attacking Harpie bugs.", shopValue:130, lowAlch:52, highAlch:78, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7053} -{name:"Chilli potato", itemDescription:"A baked potato with chilli con carne", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7054} -{name:"Chilli potato", itemDescription:"A baked potato with chilli con carne", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7055} -{name:"Egg potato", itemDescription:"A baked potato with egg and tomato.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7056} -{name:"Egg potato", itemDescription:"A baked potato with egg and tomato.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7057} -{name:"Mushroom potato", itemDescription:"A baked potato with mushroom and onions.", shopValue:45, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7058} -{name:"Mushroom potato", itemDescription:"A baked potato with mushroom and onions.", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7059} -{name:"Tuna potato", itemDescription:"A baked potato with tuna and sweetcorn.", shopValue:113, lowAlch:45, highAlch:67, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7060} -{name:"Tuna potato", itemDescription:"A baked potato with tuna and sweetcorn.", shopValue:113, lowAlch:45, highAlch:67, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7061} -{name:"Chilli con carne", itemDescription:"A bowl of meat in chilli-con-carne sauce.", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7062} -{name:"Chilli con carne", itemDescription:"A bowl of meat in chilli-con-carne sauce.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7063} -{name:"Egg and tomato", itemDescription:"A bowl of scrambled eggs and tomato", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7064} -{name:"Egg and tomato", itemDescription:"A bowl of scrambled eggs and tomato", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7065} -{name:"Mushroom & onion", itemDescription:"A bowl of fried mushroom and onions.", shopValue:45, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7066} -{name:"Mushroom & onion", itemDescription:"A bowl of fried mushroom and onions.", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7067} -{name:"Tuna and corn", itemDescription:"A bowl of cooked tuna and sweetcorn.", shopValue:113, lowAlch:45, highAlch:67, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7068} -{name:"Tuna and corn", itemDescription:"A bowl of cooked tuna and sweetcorn.", shopValue:113, lowAlch:45, highAlch:67, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7069} -{name:"Minced meat", itemDescription:"A bowl of finely minced meat.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7070} -{name:"Minced meat", itemDescription:"A bowl of finely minced meat.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7071} -{name:"Spicy sauce", itemDescription:"A bowl of spicy sauce.", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7072} -{name:"Spicy sauce", itemDescription:"A bowl of spicy sauce.", shopValue:9, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7073} -{name:"Chopped garlic", itemDescription:"A bowl of chopped garlic.", shopValue:7, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7074} -{name:"Chopped garlic", itemDescription:"A bowl of chopped garlic.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7075} -{name:"Uncooked egg", itemDescription:"A bowl of uncooked egg.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7076} -{name:"Uncooked egg", itemDescription:"A bowl of uncooked egg.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7077} -{name:"Scrambled egg", itemDescription:"A bowl of scrambled egg.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7078} -{name:"Scrambled egg", itemDescription:"A bowl of scrambled egg.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7079} -{name:"Sliced mushrooms", itemDescription:"A bowl of sliced Bittercap mushrooms.", shopValue:42, lowAlch:16, highAlch:25, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7080} -{name:"Sliced mushrooms", itemDescription:"A bowl of sliced Bittercap mushrooms.", shopValue:42, lowAlch:16, highAlch:25, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7081} -{name:"Fried mushrooms", itemDescription:"A bowl of fried Bittercap mushrooms.", shopValue:42, lowAlch:16, highAlch:25, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7082} -{name:"Fried mushrooms", itemDescription:"A bowl of fried Bittercap mushrooms.", shopValue:42, lowAlch:16, highAlch:25, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7083} -{name:"Fried onions", itemDescription:"A bowl of sliced, fried onions.", shopValue:7, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7084} -{name:"Fried onions", itemDescription:"A bowl of sliced, fried onions.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7085} -{name:"Chopped tuna", itemDescription:"A bowl of finely chopped tuna.", shopValue:104, lowAlch:41, highAlch:62, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7086} -{name:"Chopped tuna", itemDescription:"A bowl of finely chopped tuna.", shopValue:104, lowAlch:41, highAlch:62, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7087} -{name:"Sweetcorn", itemDescription:"Raw sweetcorn.", shopValue:0, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7088} -{name:"Sweetcorn", itemDescription:"Raw sweetcorn.", shopValue:0, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7089} -{name:"Burnt egg", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7090} -{name:"Burnt egg", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7091} -{name:"Burnt onion", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7092} -{name:"Burnt onion", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7093} -{name:"Burnt mushroom", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7094} -{name:"Burnt mushroom", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7095} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7096} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7097} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7098} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7099} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7100} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7101} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7102} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7103} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7104} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7105} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7106} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7107} -{name:"Gunpowder", itemDescription:"Best keep this away from naked flames.", shopValue:52, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7108} -{name:"Fuse", itemDescription:"A fuse.", shopValue:52, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7109} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7110} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7111} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7112} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7113} -{name:"Pirate boots", itemDescription:"Not for land lubbers.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7114} -{name:"Pirate boots", itemDescription:"Not for land lubbers.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7115} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7116} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7117} -{name:"Canister", itemDescription:"A cannister holding shrapnel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7118} -{name:"Cannon ball", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7119} -{name:"Ramrod", itemDescription:"For cleaning and packing the cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7120} -{name:"Repair plank", itemDescription:"A plank of wood to repair the hull with.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7121} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7122} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7123} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7124} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7125} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7126} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7127} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7128} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7129} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7130} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7131} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7132} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7133} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7134} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7135} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7136} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7137} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7138} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7139} -{name:"Lucky cutlass", itemDescription:"Feels quite lucky.", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:18.0, bonuses:[5.0, 20.0, 0.0, -5.0, 0.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7140} -{name:"Harry's cutlass", itemDescription:"I hope he doesn't want it back.", shopValue:1040, lowAlch:416, highAlch:624, isStackable:false, isNoteable:false, weight:1.0, bonuses:[3.0, 14.0, 0.0, -5.0, 0.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7141} -{name:"Rapier", itemDescription:"The very butcher of a silk button.", shopValue:25600, lowAlch:10240, highAlch:15360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[45.0, 7.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7142} -{name:"Plunder", itemDescription:"Looks valuable.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7143} -{name:"Book o' piracy", itemDescription:"By Cap'n Hook-Hand Morrisane.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7144} -{name:"Cannon barrel", itemDescription:"A working cannon barrel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7145} -{name:"Broken cannon", itemDescription:"Not likely to work again.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7146} -{name:"Cannon balls", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7147} -{name:"Repair plank", itemDescription:"A plank of wood to repair the hull with.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7148} -{name:"Canister", itemDescription:"A cannister holding shrapnel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7149} -{name:"Tacks", itemDescription:"Useful for pinning up paintings", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7150} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7151} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7152} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7153} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7154} -{name:"Rope", itemDescription:"A coil of rope.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7155} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7156} -{name:"Braindeath 'rum'", itemDescription:"I think it is eating through the bottle.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7157} -{name:"Dragon 2h sword", itemDescription:"A two-handed dragon sword.", shopValue:220000, lowAlch:88000, highAlch:132000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, 92.0, 80.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7158} -{name:"Insulated boots", itemDescription:"They're heavily insulated wellies.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7159} -{name:"Killerwatt", itemDescription:" A ball of Electrical energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7160} -{name:"Insulated boots", itemDescription:"They're heavily insulated wellies.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7161} -{name:"Pie recipe book", itemDescription:"Lots of pie recipes for me to try.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7162} -{name:"Pie recipe book", itemDescription:"Lots of pie recipes for me to try.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7163} -{name:"Part mud pie", itemDescription:"All the good of the earth.", shopValue:22, lowAlch:21, highAlch:32, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7164} -{name:"Part mud pie", itemDescription:"All the good of the earth.", shopValue:22, lowAlch:21, highAlch:32, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7165} -{name:"Part mud pie", itemDescription:"All the good of the earth.", shopValue:26, lowAlch:21, highAlch:32, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7166} -{name:"Part mud pie", itemDescription:"All the good of the earth.", shopValue:26, lowAlch:21, highAlch:32, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7167} -{name:"Raw mud pie", itemDescription:"Needs to be baked before I can use it.", shopValue:27, lowAlch:10, highAlch:16, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7168} -{name:"Raw mud pie", itemDescription:"Needs to be baked before I can use it.", shopValue:27, lowAlch:10, highAlch:16, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7169} -{name:"Mud pie", itemDescription:"All the good of the earth.", shopValue:54, lowAlch:21, highAlch:32, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7170} -{name:"Mud pie", itemDescription:"All the good of the earth.", shopValue:54, lowAlch:21, highAlch:32, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7171} -{name:"Part garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:8, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7172} -{name:"Part garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7173} -{name:"Part garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:11, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7174} -{name:"Part garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:11, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7175} -{name:"Raw garden pie", itemDescription:"Needs cooking before I eat it.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7176} -{name:"Raw garden pie", itemDescription:"Needs cooking before I eat it.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7177} -{name:"Garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7178} -{name:"Garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7179} -{name:"Half a garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:12, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7180} -{name:"Half a garden pie", itemDescription:"What I wouldn't give for a good steak about now...", shopValue:12, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7181} -{name:"Part fish pie", itemDescription:"Bounty of the sea.", shopValue:24, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7182} -{name:"Part fish pie", itemDescription:"Bounty of the sea.", shopValue:24, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7183} -{name:"Part fish pie", itemDescription:"Bounty of the sea.", shopValue:49, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7184} -{name:"Part fish pie", itemDescription:"Bounty of the sea.", shopValue:49, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7185} -{name:"Raw fish pie", itemDescription:"Raw fish is risky, better cook it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7186} -{name:"Raw fish pie", itemDescription:"Raw fish is risky, better cook it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7187} -{name:"Fish pie", itemDescription:"Bounty of the sea.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7188} -{name:"Fish pie", itemDescription:"Bounty of the sea.", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7189} -{name:"Half a fish pie", itemDescription:"Bounty of the sea.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7190} -{name:"Half a fish pie", itemDescription:"Bounty of the sea.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7191} -{name:"Part admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:54, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7192} -{name:"Part admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:54, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7193} -{name:"Part admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:154, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7194} -{name:"Part admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:154, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7195} -{name:"Raw admiral pie", itemDescription:"This would taste a lot better cooked.", shopValue:155, lowAlch:62, highAlch:93, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7196} -{name:"Raw admiral pie", itemDescription:"This would taste a lot better cooked.", shopValue:155, lowAlch:62, highAlch:93, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7197} -{name:"Admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:310, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7198} -{name:"Admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:310, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7199} -{name:"Half an admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:155, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7200} -{name:"Half an admiral pie", itemDescription:"Much tastier than a normal fish pie.", shopValue:155, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7201} -{name:"Part wild pie", itemDescription:"A triumph of man over nature.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7202} -{name:"Part wild pie", itemDescription:"A triumph of man over nature.", shopValue:5, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7203} -{name:"Part wild pie", itemDescription:"A triumph of man over nature.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7204} -{name:"Part wild pie", itemDescription:"A triumph of man over nature.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7205} -{name:"Raw wild pie", itemDescription:"Good as it looks, I'd better cook it.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7206} -{name:"Raw wild pie", itemDescription:"Good as it looks, I'd better cook it.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7207} -{name:"Wild pie", itemDescription:"A triumph of man over nature.", shopValue:182, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7208} -{name:"Wild pie", itemDescription:"A triumph of man over nature.", shopValue:182, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7209} -{name:"Half a wild pie", itemDescription:"A triumph of man over nature.", shopValue:91, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7210} -{name:"Half a wild pie", itemDescription:"A triumph of man over nature.", shopValue:91, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7211} -{name:"Part summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:21, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7212} -{name:"Part summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:21, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7213} -{name:"Part summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:69, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7214} -{name:"Part summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:69, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7215} -{name:"Raw summer pie", itemDescription:"Fresh fruit may be good for you, but I should really cook this.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7216} -{name:"Raw summer pie", itemDescription:"Fresh fruit may be good for you, but I should really cook this.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7217} -{name:"Summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:140, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7218} -{name:"Summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:140, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7219} -{name:"Half a summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:70, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7220} -{name:"Half a summer pie", itemDescription:"All the fruits of a very small forest.", shopValue:70, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7221} -{name:"Burnt rabbit", itemDescription:"Mmm this looks tasty.", shopValue:0, lowAlch:7, highAlch:11, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7222} -{name:"Roast rabbit", itemDescription:"A delicious looking piece of roast rabbit.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7223} -{name:"Skewered rabbit", itemDescription:"Might taste better cooked.", shopValue:84, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7224} -{name:"Iron spit", itemDescription:"An iron spit.", shopValue:64, lowAlch:25, highAlch:38, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7225} -{name:"Burnt chompy", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7226} -{name:"Burnt chompy", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7227} -{name:"Cooked chompy", itemDescription:"It might look delicious to an ogre.Roasted chompy bird.", shopValue:0, lowAlch:52, highAlch:78, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7228} -{name:"Cooked chompy", itemDescription:"It might look delicious to an ogre.Roasted chompy bird.", shopValue:0, lowAlch:52, highAlch:78, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7229} -{name:"Skewered chompy", itemDescription:"A skewered chompy bird.", shopValue:149, lowAlch:59, highAlch:89, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7230} -{name:"Burnt rabbit", itemDescription:"Mmm this looks tasty.", shopValue:0, lowAlch:7, highAlch:11, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7231} -{name:"Roast rabbit", itemDescription:"A delicious looking piece of roast rabbit.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7232} -{name:"Skewered rabbit", itemDescription:"Might taste better cooked.", shopValue:84, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7233} -{name:"Iron spit", itemDescription:"An iron spit.", shopValue:64, lowAlch:25, highAlch:38, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7234} -{name:"Skewered chompy", itemDescription:"A skewered chompy bird.", shopValue:149, lowAlch:59, highAlch:89, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7235} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7236} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7237} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7238} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7239} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7240} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7241} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7242} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7243} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7244} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7245} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7246} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7247} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7248} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7249} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7250} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7251} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7252} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7253} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7254} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7255} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7256} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7257} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7258} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7259} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7260} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7261} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7262} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7263} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7264} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7265} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7266} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7267} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7268} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7269} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7270} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7271} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7272} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7273} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7274} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7275} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7276} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7277} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7278} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7279} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7280} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7281} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7282} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7283} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7284} -{name:"Challenge scroll", itemDescription:"I need to answer this correctly.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7285} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7286} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7287} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7288} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7289} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7290} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7291} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7292} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7293} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7294} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7295} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7296} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7297} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7298} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7299} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7300} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7301} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7302} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7303} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7304} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7305} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7306} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7307} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7308} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7309} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7310} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7311} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7312} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7313} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7314} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7315} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7316} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7317} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7318} -{name:"Red boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7319} -{name:"Red boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7320} -{name:"Orange boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7321} -{name:"Orange boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7322} -{name:"Green boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7323} -{name:"Green boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7324} -{name:"Blue boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7325} -{name:"Blue boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7326} -{name:"Black boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7327} -{name:"Black boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7328} -{name:"Red firelighter", itemDescription:"Makes firelighting a lot easier.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7329} -{name:"Green firelighter", itemDescription:"Makes firelighting a lot easier.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7330} -{name:"Blue firelighter", itemDescription:"Makes firelighting a lot easier.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7331} -{name:"Black shield (h1)", itemDescription:"A black kitesheild with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7332} -{name:"Black shield (h1)", itemDescription:"A black kitesheild with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7333} -{name:"Adamant shield (h1)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7334} -{name:"Adamant shield (h1)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7335} -{name:"Rune shield (h1)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7336} -{name:"Rune shield (h1)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7337} -{name:"Black shield (h2)", itemDescription:"A black kiteshield with a heraldic design.", shopValue:16325, lowAlch:6530, highAlch:9795, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7338} -{name:"Black shield (h2)", itemDescription:"A black kiteshield with a heraldic design.", shopValue:16325, lowAlch:6530, highAlch:9795, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7339} -{name:"Adamant shield (h2)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7340} -{name:"Adamant shield (h2)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7341} -{name:"Rune shield (h2)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7342} -{name:"Rune shield (h2)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7343} -{name:"Black shield (h3)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7344} -{name:"Black shield (h3)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7345} -{name:"Adamant shield (h3)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7346} -{name:"Adamant shield (h3)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7347} -{name:"Rune shield (h3)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7348} -{name:"Rune shield (h3)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7349} -{name:"Black shield (h4)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7350} -{name:"Black shield (h4)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7351} -{name:"Adamant shield (h4)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7352} -{name:"Adamant shield (h4)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7353} -{name:"Rune shield (h4)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7354} -{name:"Rune shield (h4)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7355} -{name:"Black shield (h5)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7356} -{name:"Black shield (h5)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7357} -{name:"Adamant shield (h5)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7358} -{name:"Adamant shield (h5)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7359} -{name:"Rune shield (h5)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7360} -{name:"Rune shield (h5)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7361} -{name:"Studded body (g)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7362} -{name:"Studded body (g)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7363} -{name:"Studded body (t)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7364} -{name:"Studded body (t)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7365} -{name:"Studded chaps (g)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 15.0, 16.0, 17.0, 6.0, 16.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7366} -{name:"Studded chaps (g)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:750, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 15.0, 16.0, 17.0, 6.0, 16.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7367} -{name:"Studded chaps (t)", itemDescription:"Those studs should provide a bit more protection. Nice trim, too!", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 15.0, 16.0, 17.0, 6.0, 16.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7368} -{name:"Studded chaps (t)", itemDescription:"Those studs should provide a bit more protection. Nice trim, too!", shopValue:750, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, -5.0, 6.0, 15.0, 16.0, 17.0, 6.0, 16.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7369} -{name:"Dragonhide body (g)", itemDescription:"", shopValue:7800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7370} -{name:"Dragonhide body (g)", itemDescription:"", shopValue:7800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7371} -{name:"Dragonhide body (t)", itemDescription:"", shopValue:7800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7372} -{name:"Dragonhide body (t)", itemDescription:"", shopValue:7800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7373} -{name:"Dragonhide body (g)", itemDescription:"", shopValue:9360, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7374} -{name:"Dragonhide body (g)", itemDescription:"", shopValue:9360, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7375} -{name:"Dragonhide body (t)", itemDescription:"", shopValue:9360, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7376} -{name:"Dragonhide body (t)", itemDescription:"", shopValue:9360, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7377} -{name:"Dragonhide chaps (g)", itemDescription:"", shopValue:3900, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7378} -{name:"Dragonhide chaps (g)", itemDescription:"", shopValue:3900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7379} -{name:"Dragonhide chaps (t)", itemDescription:"", shopValue:3900, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7380} -{name:"Dragonhide chaps (t)", itemDescription:"", shopValue:3900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7381} -{name:"Dragonhide chaps (g)", itemDescription:"", shopValue:4320, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7382} -{name:"Dragonhide chaps (g)", itemDescription:"", shopValue:4320, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7383} -{name:"Dragonhide chaps (t)", itemDescription:"", shopValue:4320, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7384} -{name:"Dragonhide chaps (t)", itemDescription:"", shopValue:4320, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7385} -{name:"Blue skirt (g)", itemDescription:"Leg covering favored by women and wizards. With a colourful trim!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7386} -{name:"Blue skirt (g)", itemDescription:"Leg covering favored by women and wizards. With a colourful trim!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7387} -{name:"Blue skirt (t)", itemDescription:"Leg covering favoured by women and wizards. With a colourful trim!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7388} -{name:"Blue skirt (t)", itemDescription:"Leg covering favoured by women and wizards. With a colourful trim!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7389} -{name:"Wizard robe (g)", itemDescription:"I can practise magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7390} -{name:"Wizard robe (g)", itemDescription:"I can practise magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7391} -{name:"Wizard robe (t)", itemDescription:"I can do magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7392} -{name:"Wizard robe (t)", itemDescription:"I can do magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7393} -{name:"Wizard hat (g)", itemDescription:"A silly pointed hat with colourful trim.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7394} -{name:"Wizard hat (g)", itemDescription:"A silly pointed hat with colourful trim.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7395} -{name:"Wizard hat (t)", itemDescription:"A silly pointed hat, with colourful trim.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7396} -{name:"Wizard hat (t)", itemDescription:"A silly pointed hat, with colourful trim.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7397} -{name:"Enchanted robe", itemDescription:"Enchanted Wizards robes.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7398} -{name:"Enchanted top", itemDescription:"Enchanted Wizards robes.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7399} -{name:"Enchanted hat", itemDescription:"A three pointed hat of magic.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7400} -{name:"Enchanted robe", itemDescription:"Enchanted Wizards robes.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7401} -{name:"Enchanted top", itemDescription:"Enchanted Wizards robes.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7402} -{name:"Enchanted hat", itemDescription:"A three pointed hat of magic.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7403} -{name:"Red logs", itemDescription:"A number of chemical covered wooden logs.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7404} -{name:"Green logs", itemDescription:"A number of chemical covered wooden logs.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7405} -{name:"Blue logs", itemDescription:"A number of chemical covered wooden logs.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7406} -{name:"Dragon 2h sword", itemDescription:"A two-handed dragon sword.", shopValue:220000, lowAlch:88000, highAlch:132000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[-4.0, 92.0, 80.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7407} -{name:"Draynor skull", itemDescription:"I shouldn't joke; this is a grave matter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7408} -{name:"Magic secateurs", itemDescription:"The only way to kill a Tanglefoot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[7.0, 9.0, -5.0, 1.0, 0.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7409} -{name:"Queen's secateurs", itemDescription:"Contains the Fairy Queen's magical essence.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7410} -{name:"Symptoms list", itemDescription:"A list of the Fairy Queen's symptoms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7411} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7412} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7413} -{name:"Paddle", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7414} -{name:"Paddle", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7415} -{name:"Mole claw", itemDescription:"A mole claw.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7416} -{name:"Mole claw", itemDescription:"A mole claw.", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7417} -{name:"Mole skin", itemDescription:"The skin of a large mole.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7418} -{name:"Mole skin", itemDescription:"The skin of a large mole.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7419} -{name:"Mutated zygomite", itemDescription:"A fun guy. No wait, that's awful. Plus it doesn't even make sense. (As Fungi) A bouncy fungus. (Level 74) A fun guy. No wait, that's awful.. (Level 86)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7420} -{name:"Fungicide spray 10", itemDescription:"Pumps fungicide.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7421} -{name:"Fungicide spray 9", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7422} -{name:"Fungicide spray 8", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7423} -{name:"Fungicide spray 7", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7424} -{name:"Fungicide spray 6", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7425} -{name:"Fungicide spray 5", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7426} -{name:"Fungicide spray 4", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7427} -{name:"Fungicide spray 3", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7428} -{name:"Fungicide spray 2", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7429} -{name:"Fungicide spray 1", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7430} -{name:"Fungicide spray 0", itemDescription:"Pumps fungicide.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7431} -{name:"Fungicide", itemDescription:"Does exactly what it says on the tin. (Kills Fungi.)", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7432} -{name:"Wooden spoon", itemDescription:"Spoooooon!", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:4.0, bonuses:[4.0, 5.0, -2.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7433} -{name:"Wooden spoon", itemDescription:"Spoooooon!", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:4.0, bonuses:[4.0, 5.0, -2.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7434} -{name:"Egg whisk", itemDescription:"A large whisk of death.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7435} -{name:"Egg whisk", itemDescription:"A large whisk of death.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7436} -{name:"Spork", itemDescription:"Use the spork.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:18.0, bonuses:[11.0, 8.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7437} -{name:"Spork", itemDescription:"Use the spork.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:18.0, bonuses:[11.0, 8.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7438} -{name:"Spatula", itemDescription:"A large spatula... of doom!", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 27.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7439} -{name:"Spatula", itemDescription:"A large spatula... of doom!", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 27.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7440} -{name:"Frying pan", itemDescription:"Looks like it's non-stick too!", shopValue:1660, lowAlch:664, highAlch:996, isStackable:false, isNoteable:false, weight:15.0, bonuses:[-4.0, -4.0, 25.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7441} -{name:"Frying pan", itemDescription:"Looks like it's non-stick too!", shopValue:1660, lowAlch:664, highAlch:996, isStackable:true, isNoteable:true, weight:15.0, bonuses:[-4.0, -4.0, 25.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7442} -{name:"Skewer", itemDescription:"Generally used for impaling fresh meat.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:2.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7443} -{name:"Skewer", itemDescription:"Generally used for impaling fresh meat.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:2.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7444} -{name:"Rolling pin", itemDescription:"That's how I roll!", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:false, isNoteable:false, weight:18.0, bonuses:[20.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7445} -{name:"Rolling pin", itemDescription:"That's how I roll!", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:true, isNoteable:true, weight:18.0, bonuses:[20.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7446} -{name:"Kitchen knife", itemDescription:"A sharp, dependable knife, for filleting meat", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7447} -{name:"Kitchen knife", itemDescription:"A sharp, dependable knife, for filleting meat", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:0.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7448} -{name:"Meat tenderiser", itemDescription:"Often used to soften tough meat up.", shopValue:41500, lowAlch:16600, highAlch:24900, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-4.0, -4.0, 53.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7449} -{name:"Meat tenderiser", itemDescription:"Often used to soften tough meat up.", shopValue:41500, lowAlch:16600, highAlch:24900, isStackable:true, isNoteable:true, weight:1.0, bonuses:[-4.0, -4.0, 53.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7450} -{name:"Cleaver", itemDescription:"An effective tool for chopping tough meat.", shopValue:25600, lowAlch:10240, highAlch:15360, isStackable:false, isNoteable:false, weight:5.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7451} -{name:"Cleaver", itemDescription:"An effective tool for chopping tough meat.", shopValue:25600, lowAlch:10240, highAlch:15360, isStackable:true, isNoteable:true, weight:5.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7452} -{name:"Gloves", itemDescription:"", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7453} -{name:"Gloves", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7454} -{name:"Gloves", itemDescription:"", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7455} -{name:"Gloves", itemDescription:"", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7456} -{name:"Gloves", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7457} -{name:"Gloves", itemDescription:"", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7458} -{name:"Gloves", itemDescription:"", shopValue:2500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7459} -{name:"Gloves", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7460} -{name:"Gloves", itemDescription:"", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7461} -{name:"Gloves", itemDescription:"", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7462} -{name:"Cornflour", itemDescription:"It's cornflour in a pot.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7463} -{name:"Book on chickens", itemDescription:"A tatty old book belonging to the Wise Old Man of Draynor Village.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7464} -{name:"Vanilla pod", itemDescription:"Surprise, it looks like a vanilla pod.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7465} -{name:"Cornflour", itemDescription:"It's cornflour in a pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7466} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7467} -{name:"Pot of cornflour", itemDescription:"It's cornflour in a pot.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7468} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7469} -{name:"Cornflour mixture", itemDescription:"A mixture of milk, cream and cornflour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7470} -{name:"Milky mixture", itemDescription:"It's a bucket of milk and cream.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7471} -{name:"Cinnamon", itemDescription:"Some cinnamon sticks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7472} -{name:"Brulee", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7473} -{name:"Brulee", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7474} -{name:"Brulee", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7475} -{name:"Brulee supreme", itemDescription:"A pot of brulee supreme.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7476} -{name:"Evil chicken's egg", itemDescription:"What came first, the chicken or...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7477} -{name:"Dragon token", itemDescription:"It's got a dragon on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7478} -{name:"Spicy stew", itemDescription:"It's a meat and potato stew with fancy seasoning.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7479} -{name:"Red spice (4)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7480} -{name:"Red spice (3)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7481} -{name:"Red spice (2)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7482} -{name:"Red spice (1)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7483} -{name:"Orange spice (4)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7484} -{name:"Orange spice (3)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7485} -{name:"Orange spice (2)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7486} -{name:"Orange spice (1)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7487} -{name:"Brown spice (4)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7488} -{name:"Brown spice (3)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7489} -{name:"Brown spice (2)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7490} -{name:"Brown spice (1)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7491} -{name:"Yellow spice (4)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7492} -{name:"Yellow spice (3)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7493} -{name:"Yellow spice (2)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7494} -{name:"Yellow spice (1)", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7495} -{name:"Empty spice shaker", itemDescription:"Allows for equal distribution of spice.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7496} -{name:"Dirty blast", itemDescription:"A cool refreshing fruit mix. With ash in for some reason.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7497} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7498} -{name:"Evil dave", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7499} -{name:"Dwarf", itemDescription:"A short angry guy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7500} -{name:"Goblins", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7501} -{name:"Lumbridge sage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7502} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7503} -{name:"Osman", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7504} -{name:"Pirate pete", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7505} -{name:"Sir amik varze", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7506} -{name:"Skrach", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7507} -{name:"Asgoldian ale", itemDescription:"There appears to be a coin in the bottom. Liked by dwarves.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7508} -{name:"Dwarven rock cake", itemDescription:" Cool and heavy as a brick. Only for dwarf consumption.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7509} -{name:"Dwarven rock cake", itemDescription:" Cool and heavy as a brick. Only for dwarf consumption.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7510} -{name:"Slop of compromise", itemDescription:"Two out of two goblin generals prefer it!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7511} -{name:"Soggy bread", itemDescription:"Previously a nice crispy loaf of bread. Now just kind of icky.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7512} -{name:"Spicy maggots", itemDescription:"They clearly taste so much better this way!", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7513} -{name:"Dyed orange", itemDescription:"Orange slices which have been dyed, but it looks more like they died.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7514} -{name:"Breadcrumbs", itemDescription:"Glad these aren't in my bed.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7515} -{name:"Kelp", itemDescription:"Those leaves look useful!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7516} -{name:"Ground kelp", itemDescription:"Kelp flakes. Smells of the sea.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7517} -{name:"Crab meat", itemDescription:"A smelly meat.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7518} -{name:"Crab meat", itemDescription:"A smelly meat.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7519} -{name:"Burnt crab meat", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7520} -{name:"Cooked crab meat", itemDescription:"Nice and Tasty!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7521} -{name:"Cooked crab meat", itemDescription:"Nice and Tasty!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7522} -{name:"Cooked crab meat", itemDescription:"Nice and Tasty!", shopValue:40, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7523} -{name:"Cooked crab meat", itemDescription:"Nice and Tasty!", shopValue:30, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7524} -{name:"Cooked crab meat", itemDescription:"Nice and Tasty!", shopValue:20, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7525} -{name:"Cooked crab meat", itemDescription:"Nice and Tasty!", shopValue:10, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7526} -{name:"Ground crab meat", itemDescription:"A smelly paste.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7527} -{name:"Ground cod", itemDescription:"A smelly paste.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7528} -{name:"Raw fishcake", itemDescription:"Would taste nicer if I cooked it.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7529} -{name:"Cooked fishcake", itemDescription:"Mmmm, reminds me of the seaside.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7530} -{name:"Burnt fishcake", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7531} -{name:"Mudskipper hide", itemDescription:"Hmmm, what can I use this for?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7532} -{name:"Rock", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7533} -{name:"Fishbowl helmet", itemDescription:"You'll look daft, but at least you won't drown!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7534} -{name:"Diving apparatus", itemDescription:"I'll need a helmet to make this work.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7535} -{name:"Fresh crab claw", itemDescription:"Fresh off the crab itself.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7536} -{name:"Crab claw", itemDescription:"If it is good enough for crabs, it's good enough for me.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7537} -{name:"Fresh crab shell", itemDescription:"Fresh off the crab itself.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7538} -{name:"Crab helmet", itemDescription:"If it's good enough for crabs, it's good enough for me!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 5.0, 4.0, 3.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7539} -{name:"Broken crab claw", itemDescription:"Darn, it's useless now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7540} -{name:"Broken crab shell", itemDescription:"Darn, it's useless now.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7541} -{name:"Cake of guidance", itemDescription:"Imbued with knowledge itself.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7542} -{name:"Raw guide cake", itemDescription:"Now all I need to do is cook it.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7543} -{name:"Enchanted egg", itemDescription:"Egg containing knowledge.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7544} -{name:"Enchanted milk", itemDescription:"Guiding milk.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7545} -{name:"Enchanted flour", itemDescription:"A pot of special flour.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7546} -{name:"Druid pouch", itemDescription:"A druid pouch.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7547} -{name:"Potato seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7548} -{name:"Potato seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7549} -{name:"Onion seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7550} -{name:"Onion seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7551} -{name:"Mithril arrow", itemDescription:"Arrows with mithril heads.", shopValue:0, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7552} -{name:"Mithril arrow", itemDescription:"Arrows with mithril heads.", shopValue:0, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7553} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7554} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7555} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7556} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7557} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7558} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7559} -{name:"Chaos rune", itemDescription:"Used for low level missile spells.", shopValue:0, lowAlch:18, highAlch:28, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7560} -{name:"Chaos rune", itemDescription:"Used for low level missile spells.", shopValue:0, lowAlch:18, highAlch:28, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7561} -{name:"Tomato seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7562} -{name:"Tomato seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7563} -{name:"Balloon toad", itemDescription:"An inflated toad tied to a rock like a balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7564} -{name:"Balloon toad", itemDescription:"An inflated toad tied to a rock like a balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7565} -{name:"Raw jubbly", itemDescription:"The uncooked meat of a Jubbly bird.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7566} -{name:"Raw jubbly", itemDescription:"The uncooked meat of a Jubbly bird.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7567} -{name:"Cooked jubbly", itemDescription:"Lovely jubbly!", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7568} -{name:"Cooked jubbly", itemDescription:"Lovely jubbly!", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7569} -{name:"Burnt jubbly", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7570} -{name:"Burnt jubbly", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7571} -{name:"Red banana", itemDescription:"Like a banana only redder.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7572} -{name:"Tchiki monkey nuts", itemDescription:"Like monkey nuts only tchikier.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7573} -{name:"Sliced red banana", itemDescription:"Perfect for stuffing snakes.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7574} -{name:"Tchiki nut paste", itemDescription:"Mixing this with jam would just be wrong.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7575} -{name:"Snake corpse", itemDescription:"Like a snake only not alive.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7576} -{name:"Raw stuffed snake", itemDescription:"This snake is stuffed right up.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7577} -{name:"Odd stuffed snake", itemDescription:"Is this really what you wanted to do?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7578} -{name:"Stuffed snake", itemDescription:"Fit for a Monkey King. (cooked)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7579} -{name:"Snake over-cooked", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7580} -{name:"Overgrown hellcat", itemDescription:" Your hellish pet cat!!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7581} -{name:"Hellcat", itemDescription:" Your hellish pet cat!!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7582} -{name:"Hell-kitten", itemDescription:" Your hellish pet cat!!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7583} -{name:"Lazy hellcat", itemDescription:" Your hellish pet cat!!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7584} -{name:"Wily hellcat", itemDescription:" Your hellish pet cat!!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7585} -{name:"Dummy", itemDescription:"I can train on this", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7586} -{name:"Coffin", itemDescription:"Filled with items. Like a bank, but spookier!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7587} -{name:"Coffin", itemDescription:"Filled with items. Like a bank, but spookier!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7588} -{name:"Coffin", itemDescription:"Filled with items. Like a bank, but spookier!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7589} -{name:"Coffin", itemDescription:"Filled with items. Like a bank, but spookier!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7590} -{name:"Coffin", itemDescription:"Filled with items. Like a bank, but spookier!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7591} -{name:"Zombie shirt", itemDescription:"Aside from the braaaains on the lapel, it's still quite good.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7592} -{name:"Zombie trousers", itemDescription:"Good for a shamble about town.", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7593} -{name:"Zombie mask", itemDescription:"I look 40,000 years old in this...", shopValue:500, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7594} -{name:"Zombie gloves", itemDescription:"Smells pretty funky.", shopValue:500, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7595} -{name:"Zombie boots", itemDescription:"Thrilling.", shopValue:500, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7596} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7597} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7598} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7599} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7600} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7601} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7602} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7603} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7604} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7605} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7606} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7607} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7608} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7609} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7610} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7611} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7612} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7613} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7614} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7615} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7616} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7617} -{name:"Item", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7618} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7619} -{name:"Silvthrill rod", itemDescription:"A silvery rod of mithril and silver with sapphire on top.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7620} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7621} -{name:"Bucket of rubble", itemDescription:"A bucket partially filled with rubble. / A bucket totally filled with rubble.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7622} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7623} -{name:"Bucket of rubble", itemDescription:"A bucket partially filled with rubble. / A bucket totally filled with rubble.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7624} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7625} -{name:"Bucket of rubble", itemDescription:"A bucket partially filled with rubble. / A bucket totally filled with rubble.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7626} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7627} -{name:"Plaster fragment", itemDescription:"A fragment of plaster with some impressions on it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7628} -{name:"Dusty scroll", itemDescription:"An ancient tattered scroll.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7629} -{name:"Crate", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7630} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7631} -{name:"Temple library key", itemDescription:"A key for the Temple Library. (In Aid of the Myreque)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7632} -{name:"Ancient tome", itemDescription:"A book about seven warrior priests, written about 200 years ago.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7633} -{name:"Battered tome", itemDescription:"An ancient history book.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7634} -{name:"Leather book", itemDescription:"An ancient leather-bound tome.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7635} -{name:"Rod dust", itemDescription:"Rod of Ivandis dust.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7636} -{name:"Silvthrill rod", itemDescription:"A silvery rod of mithril and silver with sapphire on top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7637} -{name:"Silvthrill rod", itemDescription:"A silvery rod of mithril and silver with sapphire on top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7638} -{name:"Rod of ivandis (10)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7639} -{name:"Rod of ivandis (9)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7640} -{name:"Rod of ivandis(8)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7641} -{name:"Rod of ivandis (7)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7642} -{name:"Rod of ivandis (6)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7643} -{name:"Rod of ivandis (5)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7644} -{name:"Rod of ivandis (4)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7645} -{name:"Rod of ivandis (3)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7646} -{name:"Rod of ivandis (2)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7647} -{name:"Rod of ivandis (1)", itemDescription:"A fully charged rod. (if less than 10) A partialy charged rod.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7648} -{name:"Rod clay mould", itemDescription:"Rod of Ivandis mould.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7649} -{name:"Silver dust", itemDescription:"It's ground up silver.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7650} -{name:"Silver dust", itemDescription:"It's ground up silver.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7651} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7652} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7653} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7654} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7655} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7656} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7657} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7658} -{name:"Guthix balance (unf)", itemDescription:"An unfinished potion.", shopValue:110, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7659} -{name:"Guthix balance (4)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7660} -{name:"Guthix balance (4)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7661} -{name:"Guthix balance (3)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7662} -{name:"Guthix balance (3)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7663} -{name:"Guthix balance (2)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7664} -{name:"Guthix balance (2)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7665} -{name:"Guthix balance (1)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7666} -{name:"Guthix balance (1)", itemDescription:"A potion of harralander, red spiders eggs, garlic and silver dust.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7667} -{name:"Gadderhammer", itemDescription:"A specially crafted hammer with strange markings on it.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 35.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7668} -{name:"Gadderhammer", itemDescription:"A specially crafted hammer with strange markings on it.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:18.0, bonuses:[-4.0, -4.0, 35.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7669} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7670} -{name:"Boxing gloves", itemDescription:"I think they look a bit silly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7671} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7672} -{name:"Boxing gloves", itemDescription:"I think they look a bit silly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7673} -{name:"Perfect", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7674} -{name:"Wooden sword", itemDescription:"A less-than razor sharp sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[4.0, 3.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7675} -{name:"Wooden shield", itemDescription:"A solid wooden shield.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7676} -{name:"Treasure stone", itemDescription:"It knows where the treasure is.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7677} -{name:"Prize key", itemDescription:"You can use this to open the prize chest!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7678} -{name:"Pugel", itemDescription:"A good tool for bashing someone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7679} -{name:"Pugel", itemDescription:"A good tool for bashing someone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7680} -{name:"Game book", itemDescription:"Party Pete's Bumper Book Of Games", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7681} -{name:"Hoop", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7682} -{name:"Hoop", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7683} -{name:"Dart", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7684} -{name:"Dart", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7685} -{name:"Bow and arrow", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7686} -{name:"Bow and arrow", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7687} -{name:"Kettle", itemDescription:"The kettle is empty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7688} -{name:"Kettle", itemDescription:"The kettle is empty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7689} -{name:"Full kettle", itemDescription:"It's full of cold water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7690} -{name:"Hot kettle", itemDescription:"It's full of boiling water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7691} -{name:"Pot of tea (4)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7692} -{name:"Pot of tea (4)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7693} -{name:"Pot of tea (3)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7694} -{name:"Pot of tea (3)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7695} -{name:"Pot of tea (2)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7696} -{name:"Pot of tea (2)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7697} -{name:"Pot of tea (1)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7698} -{name:"Pot of tea (1)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7699} -{name:"Teapot with leaves", itemDescription:"Add boiling water to make a tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7700} -{name:"Teapot with leaves", itemDescription:"Add boiling water to make a tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7701} -{name:"Teapot", itemDescription:"This teapot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7702} -{name:"Teapot", itemDescription:"This teapot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7703} -{name:"Pot of tea (4)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7704} -{name:"Pot of tea (4)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7705} -{name:"Pot of tea (3)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7706} -{name:"Pot of tea (3)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7707} -{name:"Pot of tea (2)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7708} -{name:"Pot of tea (2)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7709} -{name:"Pot of tea (1)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7710} -{name:"Pot of tea (1)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7711} -{name:"Teapot with leaves", itemDescription:"Add boiling water to make a tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7712} -{name:"Teapot with leaves", itemDescription:"Add boiling water to make a tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7713} -{name:"Teapot", itemDescription:"This teapot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7714} -{name:"Teapot", itemDescription:"This teapot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7715} -{name:"Pot of tea (4)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7716} -{name:"Pot of tea (4)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7717} -{name:"Pot of tea (3)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7718} -{name:"Pot of tea (3)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7719} -{name:"Pot of tea (2)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7720} -{name:"Pot of tea (2)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7721} -{name:"Pot of tea (1)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7722} -{name:"Pot of tea (1)", itemDescription:"I'd really like a nice cup of tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7723} -{name:"Teapot with leaves", itemDescription:"Add boiling water to make a tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7724} -{name:"Teapot with leaves", itemDescription:"Add boiling water to make a tea.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7725} -{name:"Teapot", itemDescription:"This teapot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7726} -{name:"Teapot", itemDescription:"This teapot is empty.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7727} -{name:"Empty cup", itemDescription:"An empty cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7728} -{name:"Empty cup", itemDescription:"An empty cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7729} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7730} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7731} -{name:"Porcelain cup", itemDescription:"A porcelain cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7732} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7733} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7734} -{name:"Porcelain cup", itemDescription:"A porcelain cup.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7735} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7736} -{name:"Cup of tea", itemDescription:"A nice cup of tea.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7737} -{name:"Tea leaves", itemDescription:"Mmm, how about a nice cup of tea?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7738} -{name:"Tea leaves", itemDescription:"Mmm, how about a nice cup of tea?", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7739} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7740} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7741} -{name:"Beer glass", itemDescription:"I need to fill this with beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7742} -{name:"Beer glass", itemDescription:"I need to fill this with beer.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7743} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7744} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7745} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7746} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7747} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7748} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7749} -{name:"Moonlight mead", itemDescription:"A foul smelling brew.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7750} -{name:"Moonlight mead", itemDescription:"A foul smelling brew.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7751} -{name:"Cider", itemDescription:"A glass of Cider", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7752} -{name:"Cider", itemDescription:"A glass of Cider", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7753} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7754} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7755} -{name:"Paintbrush", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7756} -{name:"Paintbrush", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7757} -{name:"Rusty sword", itemDescription:"A decent-enough weapon gone rusty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7758} -{name:"Toy soldier", itemDescription:"Nice bit of crafting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7759} -{name:"Toy soldier", itemDescription:"Nice bit of crafting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7760} -{name:"Toy soldier (wound)", itemDescription:"Nice bit of crafting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7761} -{name:"Toy soldier (wound)", itemDescription:"Nice bit of crafting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7762} -{name:"Toy doll", itemDescription:" Nice bit of crafting that...", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7763} -{name:"Toy doll", itemDescription:" Nice bit of crafting that...", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7764} -{name:"Toy doll (wound)", itemDescription:" Nice bit of crafting that...", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7765} -{name:"Toy doll (wound)", itemDescription:" Nice bit of crafting that...", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7766} -{name:"Toy mouse", itemDescription:"Nice bit of crafting!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7767} -{name:"Toy mouse", itemDescription:"Nice bit of crafting!", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7768} -{name:"Toy mouse (wound)", itemDescription:"Nice bit of crafting!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7769} -{name:"Toy mouse (wound)", itemDescription:"Nice bit of crafting!", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7770} -{name:"Clockwork cat", itemDescription:" An amazing piece of crafting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7771} -{name:"Clockwork cat", itemDescription:" An amazing piece of crafting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7772} -{name:"Branch", itemDescription:"I can use this to make a lyre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7773} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7774} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7775} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7776} -{name:"Long vine", itemDescription:"A long section of vine made up of lots of shorter sections.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7777} -{name:"Short vine", itemDescription:"A short section of vines.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7778} -{name:"Fishing tome", itemDescription:"A tome of learning that focuses on the Fishing skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7779} -{name:"Fishing tome", itemDescription:"A tome of learning that focuses on the Fishing skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7780} -{name:"Fishing tome", itemDescription:"A tome of learning that focuses on the Fishing skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7781} -{name:"Agility tome", itemDescription:"A tome of learning that focuses on Agility.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7782} -{name:"Agility tome", itemDescription:"A tome of learning that focuses on Agility.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7783} -{name:"Agility tome", itemDescription:"A tome of learning that focuses on Agility.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7784} -{name:"Thieving tome", itemDescription:"A tome of learning that focuses on the Thieving skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7785} -{name:"Thieving tome", itemDescription:"A tome of learning that focuses on the Thieving skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7786} -{name:"Thieving tome", itemDescription:"A tome of learning that focuses on the Thieving skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7787} -{name:"Slayer tome", itemDescription:"A tome of learning which focuses on the Slayer skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7788} -{name:"Slayer tome", itemDescription:"A tome of learning which focuses on the Slayer skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7789} -{name:"Slayer tome", itemDescription:"A tome of learning which focuses on the Slayer skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7790} -{name:"Mining tome", itemDescription:"A tome of learning that focuses on the Mining skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7791} -{name:"Mining tome", itemDescription:"A tome of learning that focuses on the Mining skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7792} -{name:"Mining tome", itemDescription:"A tome of learning that focuses on the Mining skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7793} -{name:"Firemaking tome", itemDescription:"A tome of learning that focuses on Firemaking.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7794} -{name:"Firemaking tome", itemDescription:"A tome of learning that focuses on Firemaking.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7795} -{name:"Firemaking tome", itemDescription:"A tome of learning that focuses on Firemaking.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7796} -{name:"Woodcutting tome", itemDescription:"A tome of learning that focuses on the Woodcutting skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7797} -{name:"Woodcutting tome", itemDescription:"A tome of learning that focuses on the Woodcutting skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7798} -{name:"Woodcutting tome", itemDescription:"A tome of learning that focuses on the Woodcutting skill.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7799} -{name:"Snail shell", itemDescription:"A shell from a giant snail.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7800} -{name:"Snake hide", itemDescription:"Scaly but not slimy!", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7801} -{name:"Snake hide", itemDescription:"Scaly but not slimy!", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7802} -{name:"Yin yang amulet", itemDescription:"A non-magical copy of the make-over mage's amulet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7803} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:625, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7804} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:625, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7805} -{name:"Anger sword", itemDescription:"A heavy duty sword.", shopValue:26, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[20.0, 20.0, 20.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7806} -{name:"Anger battleaxe", itemDescription:"A heavy duty axe.", shopValue:182, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[20.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7807} -{name:"Anger mace", itemDescription:"A heavy duty mace.", shopValue:18, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[20.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7808} -{name:"Anger spear", itemDescription:"A heavy duty spear.", shopValue:26, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[20.0, 20.0, 20.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7809} -{name:"Jug of vinegar", itemDescription:"This wine clearly did not age well.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7810} -{name:"Pot of vinegar", itemDescription:"Well, this pot is certainly full of vinegar and no mistake.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7811} -{name:"Goblin skull", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7812} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7813} -{name:"Polished goblin skull", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7814} -{name:"Bear ribs", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7815} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7816} -{name:"Polished bear ribs", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7817} -{name:"Ram skull", itemDescription:" This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7818} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7819} -{name:"Polished ram skull", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7820} -{name:"Unicorn bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7821} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7822} -{name:"Polished unicorn bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7823} -{name:"Giant rat bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7824} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7825} -{name:"Polished giant rat bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7826} -{name:"Giant bat wing", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7827} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7828} -{name:"Polished giant bat wing", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7829} -{name:"Wolf bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7830} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7831} -{name:"Polished wolf bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7832} -{name:"Bat wing", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7833} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7834} -{name:"Polished bat wing", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7835} -{name:"Rat bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7836} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7837} -{name:"Polished rat bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7838} -{name:"Baby blue dragon bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7839} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7840} -{name:"Polished baby blue dragon bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7841} -{name:"Ogre ribs", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7842} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7843} -{name:"Polished ogre ribs", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7844} -{name:"Jogre bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7845} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7846} -{name:"Polished jogre bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7847} -{name:"Zogre bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7848} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7849} -{name:"Polished zogre bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7850} -{name:"Mogre bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7851} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7852} -{name:"Polished mogre bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7853} -{name:"Monkey paw", itemDescription:"This needs a good polish./ This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7854} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7855} -{name:"Polished monkey paw", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7856} -{name:"Dagannoth ribs", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7857} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7858} -{name:"Polished dagannoth ribs", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7859} -{name:"Snake spine", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7860} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7861} -{name:"Polished snake spine", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7862} -{name:"Zombie bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7863} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7864} -{name:"Polished zombie bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7865} -{name:"Werewolf bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7866} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7867} -{name:"Polished werewolf bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7868} -{name:"Moss giant bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7869} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7870} -{name:"Polished moss giant bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7871} -{name:"Fire giant bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7872} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7873} -{name:"Polished fire giant bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7874} -{name:"Ice giant ribs", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7875} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7876} -{name:"Polished ice giant ribs", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7877} -{name:"Terrorbird wing", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7878} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7879} -{name:"Polished terrorbird wing", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7880} -{name:"Ghoul bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7881} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7882} -{name:"Polished ghoul bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7883} -{name:"Troll bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7884} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7885} -{name:"Polished troll bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7886} -{name:"Seagull wing", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7887} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7888} -{name:"Polished seagull wing", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7889} -{name:"Undead cow ribs", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7890} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7891} -{name:"Polished undead cow ribs", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7892} -{name:"Experiment bone", itemDescription:" This bone belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7893} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7894} -{name:"Polished experiment bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7895} -{name:"Rabbit bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7896} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7897} -{name:"Polished rabbit bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7898} -{name:"Basilisk bone", itemDescription:"This bone needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7899} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7900} -{name:"Polished basilisk bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7901} -{name:"Desert lizard bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7902} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7903} -{name:"Polished desert lizard bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7904} -{name:"Cave goblin skull", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7905} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7906} -{name:"Polished cave goblin skull", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7907} -{name:"Big frog leg", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7908} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7909} -{name:"Polished big frog leg", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7910} -{name:"Vulture wing", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7911} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7912} -{name:"Polished vulture wing", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7913} -{name:"Jackal bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7914} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7915} -{name:"Polished jackal bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7916} -{name:"Ram skull helm", itemDescription:"Makes me feel baaad to the bone.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, -2.0, 19.0, 21.0, 16.0, 0.0, 19.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7917} -{name:"Bonesack", itemDescription:"The Bonesack is a little old item that protects like leather.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7918} -{name:"Bottle of wine", itemDescription:"A very good vintage.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7919} -{name:"Bottle of wine", itemDescription:"A very good vintage.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7920} -{name:"Empty wine bottle", itemDescription:"This one has clearly been taken down and passed around.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7921} -{name:"Al kharid flyer", itemDescription:"The money off voucher has expired.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7922} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7923} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7924} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7925} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7926} -{name:"Easter ring", itemDescription:"A ring given to you by the Easter Bunny.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7927} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7928} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7929} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7930} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7931} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7932} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7933} -{name:"Field ration", itemDescription:"A field ration to help your wounds go away.", shopValue:390, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7934} -{name:"Field ration", itemDescription:"A field ration to help your wounds go away.", shopValue:390, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7935} -{name:"Pure essence", itemDescription:"An uncharged Rune Stone of extra capability.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7936} -{name:"Pure essence", itemDescription:"An uncharged Rune Stone of extra capability.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7937} -{name:"Bob", itemDescription:"", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7938} -{name:"Tortoise shell", itemDescription:"A word in your shell-like.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7939} -{name:"Tortoise shell", itemDescription:"A word in your shell-like.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7940} -{name:"Iron sheet", itemDescription:"A sturdy sheet of iron.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7941} -{name:"Fresh monkfish", itemDescription:"Perfect for storing. Not so good for eating.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7942} -{name:"Fresh monkfish", itemDescription:"Perfect for storing. Not so good for eating.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7943} -{name:"Raw monkfish", itemDescription:"I should try cooking this./Freshly caught. Needs cooking. (Fresh Monkfish)", shopValue:230, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7944} -{name:"Raw monkfish", itemDescription:"I should try cooking this./Freshly caught. Needs cooking. (Fresh Monkfish)", shopValue:230, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7945} -{name:"Monkfish", itemDescription:"A tasty fish.", shopValue:230, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7946} -{name:"Monkfish", itemDescription:"A tasty fish.", shopValue:230, lowAlch:92, highAlch:138, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7947} -{name:"Burnt monkfish", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7948} -{name:"Burnt monkfish", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7949} -{name:"Bone seeds", itemDescription:"A highly portable army of skeletal magic.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7950} -{name:"Herman's book", itemDescription:"A book taken from the desk of Herman Caranos.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7951} -{name:"Hatchet handle", itemDescription:"Useless without the head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7952} -{name:"Hatchet handle", itemDescription:"Useless without the head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7953} -{name:"Burnt shrimp", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7954} -{name:"Burnt shrimp", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7955} -{name:"Casket", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7956} -{name:"White apron", itemDescription:"A mostly clean apron.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7957} -{name:"Mining prop", itemDescription:"A prop for holding up a tunnel roof.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7958} -{name:"Heavy box", itemDescription:"A box full of stolen Etceterian items.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7959} -{name:"Empty box", itemDescription:"It says 'To the dungeons' on the side.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7960} -{name:"Burnt diary", itemDescription:"A diary with one/two/three/four/five page(s).", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7961} -{name:"Burnt diary", itemDescription:"A diary with one/two/three/four/five page(s).", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7962} -{name:"Burnt diary", itemDescription:"A diary with one/two/three/four/five page(s).", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7963} -{name:"Burnt diary", itemDescription:"A diary with one/two/three/four/five page(s).", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7964} -{name:"Burnt diary", itemDescription:"A diary with one/two/three/four/five page(s).", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7965} -{name:"Letter", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7966} -{name:"Engine", itemDescription:"A dwarf-made coal engine. It looks very sturdy.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7967} -{name:"Scroll", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7968} -{name:"Pulley beam", itemDescription:"A beam with a pulley attached.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7969} -{name:"Long pulley beam", itemDescription:"A long beam with a pulley attached.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7970} -{name:"Longer pulley beam", itemDescription:"A very long beam with a pulley attached.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7971} -{name:"Lift manual", itemDescription:"The manual for an AMCE Lift-In-A-Box.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7972} -{name:"Beam", itemDescription:"A wooden beam.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7973} -{name:"Servant bell", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7974} -{name:"Crawling hand", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7975} -{name:"Cockatrice head", itemDescription:"I should get it stuffed!", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7976} -{name:"Basilisk head", itemDescription:"I should get it stuffed!", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7977} -{name:"Kurask head", itemDescription:"I should get it stuffed!", shopValue:6000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7978} -{name:"Abyssal head", itemDescription:"I should get it stuffed!", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7979} -{name:"Kbd heads", itemDescription:"I should get it stuffed!", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7980} -{name:"Kq head", itemDescription:"I should get it stuffed!", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7981} -{name:"Crawling hand", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7982} -{name:"Cockatrice head", itemDescription:"I should get it stuffed!", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7983} -{name:"Basilisk head", itemDescription:"I should get it stuffed!", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7984} -{name:"Kurask head", itemDescription:"I should get it stuffed!", shopValue:6000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7985} -{name:"Abyssal head", itemDescription:"I should get it stuffed!", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7986} -{name:"Kbd heads", itemDescription:"I should get it stuffed!", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7987} -{name:"Kq head", itemDescription:"I should get it stuffed!", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7988} -{name:"Big bass", itemDescription:"Whopper! I should get this stuffed!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7989} -{name:"Big bass", itemDescription:"Whopper! I should get this stuffed!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7990} -{name:"Big swordfish", itemDescription:"Whopper! I should get this stuffed!", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7991} -{name:"Big swordfish", itemDescription:"Whopper! I should get this stuffed!", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7992} -{name:"Big shark", itemDescription:"Its a monster! I should get this stuffed!", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7993} -{name:"Big shark", itemDescription:"Its a monster! I should get this stuffed!", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7994} -{name:"Arthur portrait", itemDescription:"A portrait of King Arthur.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7995} -{name:"Elena portrait", itemDescription:"A portrait of Elena.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7996} -{name:"Keldagrim portrait", itemDescription:"A painting of the staute of King Alvis of Keldagrim", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7997} -{name:"Misc. portrait", itemDescription:"A portrait of Prince Brand and Princess Astrid of Miscellania.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7998} -{name:"Desert painting", itemDescription:"", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:7999} -{name:"Isafdar painting", itemDescription:"The exotic land of the Elves.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8000} -{name:"Karamja painting", itemDescription:"The tropical coast of karamja.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8001} -{name:"Lumbridge painting", itemDescription:"Oxtable's famous painting of the Lumbridge water mill.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8002} -{name:"Morytania painting", itemDescription:"A painting of the spooky forests of morytania.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8003} -{name:"Small map", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8004} -{name:"Medium map", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8005} -{name:"Large map", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8006} -{name:"Varrock teleport", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8007} -{name:"Lumbridge teleport", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8008} -{name:"Falador teleport", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8009} -{name:"Camelot teleport", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8010} -{name:"Ardougne teleport", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8011} -{name:"Watchtower t'port", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8012} -{name:"Teleport to house", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8013} -{name:"Bones to bananas", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8014} -{name:"Bones to peaches", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8015} -{name:"Enchant sapphire", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8016} -{name:"Enchant emerald", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8017} -{name:"Enchant ruby", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8018} -{name:"Enchant diamond", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8019} -{name:"Enchant dragonstn.", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8020} -{name:"Enchant onyx", itemDescription:"A tablet containing a magic spell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8021} -{name:"Telekinetic grab", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8022} -{name:"Boxing ring", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8023} -{name:"Fencing ring", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8024} -{name:"Combat ring", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8025} -{name:"Ranging pedestals", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8026} -{name:"Balance beam", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8027} -{name:"Glove rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8028} -{name:"Weapons rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8029} -{name:"Extra weapons rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8030} -{name:"Wooden bed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8031} -{name:"Oak bed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8032} -{name:"Large oak bed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8033} -{name:"Teak bed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8034} -{name:"Large teak bed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8035} -{name:"4-poster", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8036} -{name:"Gilded 4-poster", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8037} -{name:"Shoe box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8038} -{name:"Oak drawers", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8039} -{name:"Oak wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8040} -{name:"Teak drawers", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8041} -{name:"Teak wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8042} -{name:"Mahogany 'drobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8043} -{name:"Gilded wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8044} -{name:"Shaving stand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8045} -{name:"Oak shaving stand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8046} -{name:"Oak dresser", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8047} -{name:"Teak dresser", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8048} -{name:"Fancy teak dresser", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8049} -{name:"Mahogany dresser", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8050} -{name:"Gilded dresser", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8051} -{name:"Oak clock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8052} -{name:"Teak clock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8053} -{name:"Gilded clock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8054} -{name:"Saradomin symbol", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8055} -{name:"Zamorak symbol", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8056} -{name:"Guthix symbol", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8057} -{name:"Saradomin icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8058} -{name:"Zamorak icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8059} -{name:"Guthix icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8060} -{name:"Icon of bob", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8061} -{name:"Oak altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8062} -{name:"Teak altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8063} -{name:"Cloth-cover'd altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8064} -{name:"Mahogany altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8065} -{name:"Limestone altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8066} -{name:"Marble altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8067} -{name:"Gilded altar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8068} -{name:"Wooden torches", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8069} -{name:"Steel torches", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8070} -{name:"Steel candlesticks", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8071} -{name:"Gold candlesticks", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8072} -{name:"Incense burners", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8073} -{name:"Mahogany burners", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8074} -{name:"Marble burners", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8075} -{name:"Shuttered window", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8076} -{name:"Decorative window", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8077} -{name:"Stained glass", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8078} -{name:"Windchimes", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8079} -{name:"Bells", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8080} -{name:"Organ", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8081} -{name:"Small statues", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8082} -{name:"Medium statues", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8083} -{name:"Large statues", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8084} -{name:"Suit of armour", itemDescription:" Aaargh, it's alive!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8085} -{name:"Small portrait", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8086} -{name:"Minor head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8087} -{name:"Medium head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8088} -{name:"Major head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8089} -{name:"Mounted sword", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8090} -{name:"Small landscape", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8091} -{name:"Guild trophy", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8092} -{name:"Large portrait", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8093} -{name:"Large landscape", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8094} -{name:"Rune display case", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8095} -{name:"Low-level plants", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8096} -{name:"Mid-level plants", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8097} -{name:"High-level plants", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8098} -{name:"Rope bell-pull", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8099} -{name:"Bell-pull", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8100} -{name:"Posh bell-pull", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8101} -{name:"Oak decoration", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8102} -{name:"Teak decoration", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8103} -{name:"Gilded decoration", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8104} -{name:"Round shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8105} -{name:"Square shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8106} -{name:"Kite shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8107} -{name:"Wooden bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8108} -{name:"Oak bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8109} -{name:"Carved oak bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8110} -{name:"Teak dining bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8111} -{name:"Carved teak bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8112} -{name:"Mahogany bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8113} -{name:"Gilded bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8114} -{name:"Wood dining table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8115} -{name:"Oak dining table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8116} -{name:"Carved oak table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8117} -{name:"Teak table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8118} -{name:"Carved teak table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8119} -{name:"Mahogany table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8120} -{name:"Opulent table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8121} -{name:"Oak door", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8122} -{name:"Steel-plated door", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8123} -{name:"Marble door", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8124} -{name:"Decorative blood", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8125} -{name:"Decorative pipe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8126} -{name:"Hanging skeleton", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8127} -{name:"Candles", itemDescription:"A candle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8128} -{name:"Torches", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8129} -{name:"Skull torches", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8130} -{name:"Skeleton guard", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8131} -{name:"Guard dog", itemDescription:"He doesn't seem pleased to see me./Beware of the dog! (Construction)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8132} -{name:"Hobgoblin guard", itemDescription:"He doesn't look very welcoming.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8133} -{name:"Baby red dragon", itemDescription:"Young but still dangerous.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8134} -{name:"Huge spider", itemDescription:"No spider could grow that big! It's unrealistic!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8135} -{name:"Troll guard", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8136} -{name:"Hellhound", itemDescription:"(Level 122)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8137} -{name:"Demon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8138} -{name:"Kalphite soldier", itemDescription:"I don't think insect repellent will work...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8139} -{name:"Tok-xil", itemDescription:"I don't like the look of those spines...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8140} -{name:"Dagannoth", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8141} -{name:"Steel dragon", itemDescription:"Its scales seem to be made of steel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8142} -{name:"Spike trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8143} -{name:"Man trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8144} -{name:"Tangle vine", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8145} -{name:"Marble trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8146} -{name:"Teleport trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8147} -{name:"Wooden crate", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8148} -{name:"Oak chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8149} -{name:"Teak chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8150} -{name:"Mahogany chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8151} -{name:"Magic chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8152} -{name:"Clay attack stone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8153} -{name:"Attack stone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8154} -{name:"Marble att. stone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8155} -{name:"Magical balance 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8156} -{name:"Magical balance 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8157} -{name:"Magical balance 3", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8158} -{name:"Jester", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8159} -{name:"Treasure hunt", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8160} -{name:"Hangman game", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8161} -{name:"Hoop and stick", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8162} -{name:"Dartboard", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8163} -{name:"Archery target", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8164} -{name:"Oak prize chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8165} -{name:"Teak prize chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8166} -{name:"Mahogany chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8167} -{name:"Exit portal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8168} -{name:"Decorative rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8169} -{name:"Pond", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8170} -{name:"Imp statue", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8171} -{name:"Dungeon entrance", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8172} -{name:"Tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8173} -{name:"Nice tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8174} -{name:"Oak tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8175} -{name:"Willow tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8176} -{name:"Maple tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8177} -{name:"Yew tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8178} -{name:"Magic tree", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8179} -{name:"Plant", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8180} -{name:"Small fern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8181} -{name:"Fern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8182} -{name:"Dock leaf", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8183} -{name:"Thistle", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8184} -{name:"Reeds", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8185} -{name:"Fern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8186} -{name:"Bush", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8187} -{name:"Tall plant", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8188} -{name:"Short plant", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8189} -{name:"Large-leaf plant", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8190} -{name:"Huge plant", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8191} -{name:"Gazebo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8192} -{name:"Small fountain", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8193} -{name:"Large fountain", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8194} -{name:"Posh fountain", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8195} -{name:"Boundary stones", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8196} -{name:"Wooden fence", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8197} -{name:"Stone wall", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8198} -{name:"Iron railings", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8199} -{name:"Picket fence", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8200} -{name:"Garden fence", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8201} -{name:"Marble wall", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8202} -{name:"Thorny hedge", itemDescription:"You can plant this in your garden.", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8203} -{name:"Nice hedge", itemDescription:"You can plant this in your garden.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8204} -{name:"Small box hedge", itemDescription:"You can plant this in your garden.", shopValue:0, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8205} -{name:"Topiary hedge", itemDescription:"You can plant this in your garden.", shopValue:0, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8206} -{name:"Fancy hedge", itemDescription:"You can plant this in your garden.", shopValue:0, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8207} -{name:"Tall fancy hedge", itemDescription:"You can plant this in your garden.", shopValue:0, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8208} -{name:"Tall box hedge", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8209} -{name:"Rosemary", itemDescription:"Some rosemary.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8210} -{name:"Daffodils", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8211} -{name:"Bluebells", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8212} -{name:"Sunflower", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8213} -{name:"Marigolds", itemDescription:"A bunch of marigolds.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8214} -{name:"Roses", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8215} -{name:"Firepit", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8216} -{name:"Firepit with hook", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8217} -{name:"Firepit with pot", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8218} -{name:"Small oven", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8219} -{name:"Large oven", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8220} -{name:"Steel range", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8221} -{name:"Fancy range", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8222} -{name:"Wooden shelves 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8223} -{name:"Wooden shelves 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8224} -{name:"Wooden shelves 3", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8225} -{name:"Oak shelves 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8226} -{name:"Oak shelves 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8227} -{name:"Teak shelves 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8228} -{name:"Teak shelves 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8229} -{name:"Pump and drain", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8230} -{name:"Pump and tub", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8231} -{name:"Sink", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8232} -{name:"Wooden larder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8233} -{name:"Oak larder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8234} -{name:"Teak larder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8235} -{name:"Cat blanket", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8236} -{name:"Cat basket", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8237} -{name:"Cushioned basket", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8238} -{name:"Beer barrel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8239} -{name:"Cider barrel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8240} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8241} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8242} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8243} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8244} -{name:"Blank poh entity", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8245} -{name:"Wood kitchen table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8246} -{name:"Oak kitchen table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8247} -{name:"Teak kitchen table", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8248} -{name:"Oak staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8249} -{name:"Oak staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8250} -{name:"Oak staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8251} -{name:"Teak staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8252} -{name:"Teak staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8253} -{name:"Teak staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8254} -{name:"Marble staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8255} -{name:"Marble staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8256} -{name:"Marble staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8257} -{name:"Spiral staircase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8258} -{name:"Marble spiral", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8259} -{name:"Crawling hand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8260} -{name:"Cockatrice head", itemDescription:"I should get it stuffed!", shopValue:0, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8261} -{name:"Basilisk head", itemDescription:"I should get it stuffed!", shopValue:0, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8262} -{name:"Kurask head", itemDescription:"I should get it stuffed!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8263} -{name:"Abyssal head", itemDescription:"I should get it stuffed!", shopValue:0, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8264} -{name:"Kbd heads", itemDescription:"I should get it stuffed!", shopValue:0, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8265} -{name:"Kq head", itemDescription:"I should get it stuffed!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8266} -{name:"Mounted bass", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8267} -{name:"Mounted swordfish", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8268} -{name:"Mounted shark", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8269} -{name:"Mithril armour", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8270} -{name:"Adamant armour", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8271} -{name:"Rune armour", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8272} -{name:"Basic decorative armour", itemDescription:"A basic decorative <part of set you examined>.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[13.0, 18.0, -2.0, -62.0, -20.0, 69.0, 73.0, 61.0, -22.0, 68.0, 15.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8273} -{name:"Detailed decorative armour", itemDescription:"Varies between item - A(n)[item name] with finely detailed decoration", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[15.0, 20.0, -2.0, -62.0, -20.0, 98.0, 102.0, 89.0, -12.0, 96.0, 50.0, 3.0, 0.0, 6.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8274} -{name:"Intricate decorative armour", itemDescription:"N/A", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[20.0, 39.0, -2.0, -62.0, -20.0, 139.0, 143.0, 128.0, -12.0, 137.0, 76.0, 6.0, 0.0, 13.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8275} -{name:"Rune case 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8276} -{name:"Rune case 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8277} -{name:"Rune case 3", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8278} -{name:"Silverlight", itemDescription:"The magical sword 'Silverlight'. / The magical sword 'Silverlight', stained black with mushroom ink. (during Shadow of the Storm)", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:18.0, bonuses:[9.0, 14.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8279} -{name:"Excalibur", itemDescription:"This used to belong to King Arthur.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[20.0, 29.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8280} -{name:"Darklight", itemDescription:"The magical sword Silverlight, enhanced with the blood of Agrith-Naar.", shopValue:0, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:18.0, bonuses:[10.0, 16.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8281} -{name:"Anti-dragon shield", itemDescription:"This provides partial protection from dragon-breath attacks.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8282} -{name:"Amulet of glory", itemDescription:" A dragonstone amulet with X magic charges.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8283} -{name:"Cape of legends", itemDescription:"The cape worn by members of the Legends Guild.", shopValue:0, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8284} -{name:"King arthur", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8285} -{name:"Elena", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8286} -{name:"Giant dwarf", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8287} -{name:"Miscellanians", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8288} -{name:"Lumbridge", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8289} -{name:"The desert", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8290} -{name:"Morytania", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8291} -{name:"Karamja", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8292} -{name:"Isafdar", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8293} -{name:"Small map", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8294} -{name:"Medium map", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8295} -{name:"Large map", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8296} -{name:"Oak cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8297} -{name:"Oak and steel cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8298} -{name:"Steel cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8299} -{name:"Spiked cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8300} -{name:"Bone cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8301} -{name:"Spikes", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8302} -{name:"Tentacle pool", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8303} -{name:"Flame pit", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8304} -{name:"Rocnar", itemDescription:"It's full of pent-up aggression.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8305} -{name:"Oak ladder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8306} -{name:"Teak ladder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8307} -{name:"Mahogany ladder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8308} -{name:"Crude wooden chair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8309} -{name:"Wooden chair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8310} -{name:"Rocking chair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8311} -{name:"Oak chair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8312} -{name:"Oak armchair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8313} -{name:"Teak armchair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8314} -{name:"Mahogany armchair", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8315} -{name:"Brown rug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8316} -{name:"Rug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8317} -{name:"Opulent rug", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8318} -{name:"Wooden bookcase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8319} -{name:"Oak bookcase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8320} -{name:"Mahogany b'kcase", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8321} -{name:"Torn curtains", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8322} -{name:"Curtains", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8323} -{name:"Opulent curtains", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8324} -{name:"Clay fireplace", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8325} -{name:"Stone fireplace", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8326} -{name:"Marble fireplace", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8327} -{name:"Teak portal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8328} -{name:"Mahogany portal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8329} -{name:"Marble portal", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8330} -{name:"Teleport focus", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8331} -{name:"Greater focus", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8332} -{name:"Scrying pool", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8333} -{name:"Oak lectern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8334} -{name:"Eagle lectern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8335} -{name:"Demon lectern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8336} -{name:"Teak eagle lectern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8337} -{name:"Teak demon lectern", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8338} -{name:"Mahogany eagle", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8339} -{name:"Mahogany demon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8340} -{name:"Globe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8341} -{name:"Ornamental globe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8342} -{name:"Lunar globe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8343} -{name:"Celestial globe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8344} -{name:"Armillary sphere", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8345} -{name:"Small orrery", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8346} -{name:"Large orrery", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8347} -{name:"Wooden telescope", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8348} -{name:"Teak telescope", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8349} -{name:"Mahogany 'scope", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8350} -{name:"Crystal ball", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8351} -{name:"Elemental sphere", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8352} -{name:"Crystal of power", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8353} -{name:"Alchemical chart", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8354} -{name:"Astronomical chart", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8355} -{name:"Infernal chart", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8356} -{name:"Oak throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8357} -{name:"Teak throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8358} -{name:"Mahogany throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8359} -{name:"Gilded throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8360} -{name:"Skeleton throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8361} -{name:"Crystal throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8362} -{name:"Demonic throne", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8363} -{name:"Oak lever", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8364} -{name:"Teak lever", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8365} -{name:"Mahogany lever", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8366} -{name:"Trapdoor", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8367} -{name:"Trapdoor", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8368} -{name:"Trapdoor", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8369} -{name:"Floor decoration", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8370} -{name:"Steel cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8371} -{name:"Trapdoor", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8372} -{name:"Lesser magic cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8373} -{name:"Greater magic cage", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8374} -{name:"Wooden workbench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8375} -{name:"Oak workbench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8376} -{name:"Steel framed bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8377} -{name:"Bench with vice", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8378} -{name:"Bench with lathe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8379} -{name:"Crafting table 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8380} -{name:"Crafting table 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8381} -{name:"Crafting table 3", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8382} -{name:"Crafting table 4", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8383} -{name:"Tool store 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8384} -{name:"Tool store 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8385} -{name:"Tool store 3", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8386} -{name:"Tool store 4", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8387} -{name:"Tool store 5", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8388} -{name:"Repair bench", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8389} -{name:"Whetstone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8390} -{name:"Armour stand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8391} -{name:"Pluming stand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8392} -{name:"Shield easel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8393} -{name:"Banner easel", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8394} -{name:"Parlour", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8395} -{name:"Kitchen", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8396} -{name:"Dining room", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8397} -{name:"Bedroom", itemDescription:"", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8398} -{name:"Games room", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8399} -{name:"Combat room", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8400} -{name:"Hall", itemDescription:"", shopValue:15000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8401} -{name:"Hall", itemDescription:"", shopValue:15000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8402} -{name:"Hall", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8403} -{name:"Hall", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8404} -{name:"Chapel", itemDescription:"", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8405} -{name:"Workshop", itemDescription:"", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8406} -{name:"Study", itemDescription:"", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8407} -{name:"Portal chamber", itemDescription:"", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8408} -{name:"Throne room", itemDescription:"", shopValue:150000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8409} -{name:"Oubliette", itemDescription:"", shopValue:150000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8410} -{name:"Dungeon corridor", itemDescription:"", shopValue:7500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8411} -{name:"Dungeon cross", itemDescription:"", shopValue:7500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8412} -{name:"Dungeon stairs", itemDescription:"", shopValue:7500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8413} -{name:"Treasure room", itemDescription:"", shopValue:250000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8414} -{name:"Garden", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8415} -{name:"Formal garden", itemDescription:"", shopValue:75000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8416} -{name:"Bagged dead tree", itemDescription:"You can plant this in your garden.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8417} -{name:"Bagged dead tree", itemDescription:"You can plant this in your garden.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8418} -{name:"Bagged nice tree", itemDescription:"You can plant this in your garden.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8419} -{name:"Bagged nice tree", itemDescription:"You can plant this in your garden.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8420} -{name:"Bagged oak tree", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8421} -{name:"Bagged oak tree", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8422} -{name:"Bagged willow tree", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8423} -{name:"Bagged willow tree", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8424} -{name:"Bagged maple tree", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8425} -{name:"Bagged maple tree", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8426} -{name:"Bagged yew tree", itemDescription:"You can plant this in your garden.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8427} -{name:"Bagged yew tree", itemDescription:"You can plant this in your garden.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8428} -{name:"Bagged magic tree", itemDescription:"You can plant this in your garden.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8429} -{name:"Bagged magic tree", itemDescription:"You can plant this in your garden.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8430} -{name:"Bagged plant 1", itemDescription:"You can plant this in your garden.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8431} -{name:"Bagged plant 1", itemDescription:"You can plant this in your garden.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8432} -{name:"Bagged plant 2", itemDescription:"You can plant this in your garden.", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8433} -{name:"Bagged plant 2", itemDescription:"You can plant this in your garden.", shopValue:5000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8434} -{name:"Bagged plant 3", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8435} -{name:"Bagged plant 3", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8436} -{name:"Thorny hedge", itemDescription:"You can plant this in your garden.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8437} -{name:"Thorny hedge", itemDescription:"You can plant this in your garden.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8438} -{name:"Nice hedge", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8439} -{name:"Nice hedge", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8440} -{name:"Small box hedge", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8441} -{name:"Small box hedge", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8442} -{name:"Topiary hedge", itemDescription:"You can plant this in your garden.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8443} -{name:"Topiary hedge", itemDescription:"You can plant this in your garden.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8444} -{name:"Fancy hedge", itemDescription:"You can plant this in your garden.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8445} -{name:"Fancy hedge", itemDescription:"You can plant this in your garden.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:true, isNoteable:true, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8446} -{name:"Tall fancy hedge", itemDescription:"You can plant this in your garden.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8447} -{name:"Tall fancy hedge", itemDescription:"You can plant this in your garden.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8448} -{name:"Tall box hedge", itemDescription:"", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8449} -{name:"Tall box hedge", itemDescription:"", shopValue:100000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8450} -{name:"Bagged rosemary", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8451} -{name:"Bagged rosemary", itemDescription:"", shopValue:5000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8452} -{name:"Bagged daffodils", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8453} -{name:"Bagged daffodils", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8454} -{name:"Bagged bluebells", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8455} -{name:"Bagged bluebells", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8456} -{name:"Bagged sunflower", itemDescription:"You can plant this in your garden.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8457} -{name:"Bagged sunflower", itemDescription:"You can plant this in your garden.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8458} -{name:"Bagged marigolds", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8459} -{name:"Bagged marigolds", itemDescription:"You can plant this in your garden.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8460} -{name:"Bagged roses", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8461} -{name:"Bagged roses", itemDescription:"You can plant this in your garden.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8462} -{name:"Construction guide", itemDescription:"How to build a house.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8463} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8464} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8465} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8466} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8467} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8468} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8469} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8470} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8471} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8472} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8473} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8474} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8475} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8476} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8477} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8478} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8479} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8480} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8481} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8482} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8483} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8484} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8485} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8486} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8487} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8488} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8489} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8490} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8491} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8492} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8493} -{name:"Rune heraldic helm", itemDescription:"The colours represent crest.", shopValue:35200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8494} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8495} -{name:"Crude wooden chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8496} -{name:"Crude wooden chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8497} -{name:"Wooden chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8498} -{name:"Wooden chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8499} -{name:"Rocking chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8500} -{name:"Rocking chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8501} -{name:"Oak chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8502} -{name:"Oak chair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8503} -{name:"Oak armchair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8504} -{name:"Oak armchair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8505} -{name:"Teak armchair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8506} -{name:"Teak armchair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8507} -{name:"Mahogany armchair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8508} -{name:"Mahogany armchair", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8509} -{name:"Wooden bookcase", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8510} -{name:"Wooden bookcase", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8511} -{name:"Oak bookcase", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8512} -{name:"Oak bookcase", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8513} -{name:"Mahogany b'kcase", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8514} -{name:"Mahogany b'kcase", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8515} -{name:"Beer barrel", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8516} -{name:"Beer barrel", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8517} -{name:"Cider barrel", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8518} -{name:"Cider barrel", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8519} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8520} -{name:"Asgarnian ale", itemDescription:"Probably the finest readily-available ale in Asgarnia.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8521} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8522} -{name:"Greenman's ale", itemDescription:"A glass of frothy ale.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8523} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8524} -{name:"Dragon bitter", itemDescription:"A glass of bitter.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8525} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8526} -{name:"Chef's delight", itemDescription:"A fruity, full-bodied ale.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8527} -{name:"Wood kitchen table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8528} -{name:"Wood kitchen table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8529} -{name:"Oak kitchen table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8530} -{name:"Oak kitchen table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8531} -{name:"Teak kitchen table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8532} -{name:"Teak kitchen table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8533} -{name:"Oak lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8534} -{name:"Oak lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8535} -{name:"Eagle lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8536} -{name:"Eagle lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8537} -{name:"Demon lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8538} -{name:"Demon lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8539} -{name:"Teak eagle lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8540} -{name:"Teak eagle lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8541} -{name:"Teak demon lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8542} -{name:"Teak demon lectern", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8543} -{name:"Mahogany eagle", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8544} -{name:"Mahogany eagle", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8545} -{name:"Mahogany demon", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8546} -{name:"Mahogany demon", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8547} -{name:"Wood dining table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8548} -{name:"Wood dining table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8549} -{name:"Oak dining table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8550} -{name:"Oak dining table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8551} -{name:"Carved oak table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8552} -{name:"Carved oak table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8553} -{name:"Teak table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8554} -{name:"Teak table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8555} -{name:"Carved teak table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8556} -{name:"Carved teak table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8557} -{name:"Mahogany table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8558} -{name:"Mahogany table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8559} -{name:"Opulent table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8560} -{name:"Opulent table", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8561} -{name:"Wooden bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8562} -{name:"Wooden bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8563} -{name:"Oak bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8564} -{name:"Oak bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8565} -{name:"Carved oak bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8566} -{name:"Carved oak bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8567} -{name:"Teak dining bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8568} -{name:"Teak dining bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8569} -{name:"Carved teak bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8570} -{name:"Carved teak bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8571} -{name:"Mahogany bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8572} -{name:"Mahogany bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8573} -{name:"Gilded bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8574} -{name:"Gilded bench", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8575} -{name:"Wooden bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8576} -{name:"Wooden bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8577} -{name:"Oak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8578} -{name:"Oak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8579} -{name:"Large oak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8580} -{name:"Large oak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8581} -{name:"Teak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8582} -{name:"Teak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8583} -{name:"Large teak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8584} -{name:"Large teak bed", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8585} -{name:"4-poster", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8586} -{name:"4-poster", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8587} -{name:"Gilded 4-poster", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8588} -{name:"Gilded 4-poster", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8589} -{name:"Oak clock", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8590} -{name:"Oak clock", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8591} -{name:"Teak clock", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8592} -{name:"Teak clock", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8593} -{name:"Gilded clock", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8594} -{name:"Gilded clock", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8595} -{name:"Shaving stand", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8596} -{name:"Shaving stand", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8597} -{name:"Oak shaving stand", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8598} -{name:"Oak shaving stand", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8599} -{name:"Oak dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8600} -{name:"Oak dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8601} -{name:"Teak dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8602} -{name:"Teak dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8603} -{name:"Fancy teak dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8604} -{name:"Fancy teak dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8605} -{name:"Mahogany dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8606} -{name:"Mahogany dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8607} -{name:"Gilded dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8608} -{name:"Gilded dresser", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8609} -{name:"Shoe box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8610} -{name:"Shoe box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8611} -{name:"Oak drawers", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8612} -{name:"Oak drawers", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8613} -{name:"Oak wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8614} -{name:"Oak wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8615} -{name:"Teak drawers", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8616} -{name:"Teak drawers", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8617} -{name:"Teak wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8618} -{name:"Teak wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8619} -{name:"Mahogany 'drobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8620} -{name:"Mahogany 'drobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8621} -{name:"Gilded wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8622} -{name:"Gilded wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8623} -{name:"Crystal ball", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8624} -{name:"Crystal ball", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8625} -{name:"Elemental sphere", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8626} -{name:"Elemental sphere", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8627} -{name:"Crystal of power", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8628} -{name:"Crystal of power", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8629} -{name:"Globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8630} -{name:"Globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8631} -{name:"Ornamental globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8632} -{name:"Ornamental globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8633} -{name:"Lunar globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8634} -{name:"Lunar globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8635} -{name:"Celestial globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8636} -{name:"Celestial globe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8637} -{name:"Armillary sphere", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8638} -{name:"Armillary sphere", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8639} -{name:"Small orrery", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8640} -{name:"Small orrery", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8641} -{name:"Large orrery", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8642} -{name:"Large orrery", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8643} -{name:"Wooden telescope", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8644} -{name:"Wooden telescope", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8645} -{name:"Teak telescope", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8646} -{name:"Teak telescope", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8647} -{name:"Mahogany 'scope", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8648} -{name:"Mahogany 'scope", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8649} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8650} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8651} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8652} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8653} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8654} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8655} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8656} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8657} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8658} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8659} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8660} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8661} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8662} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8663} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8664} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8665} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8666} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8667} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8668} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8669} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8670} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8671} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8672} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8673} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8674} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8675} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8676} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8677} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8678} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8679} -{name:"Banner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8680} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8681} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8682} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8683} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8684} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8685} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8686} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8687} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8688} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8689} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8690} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8691} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8692} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8693} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8694} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8695} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8696} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8697} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8698} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8699} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8700} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8701} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8702} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8703} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8704} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8705} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8706} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8707} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8708} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8709} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8710} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8711} -{name:"Steel heraldic helm", itemDescription:"The colours represent crest.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8712} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8713} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8714} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8715} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8716} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8717} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8718} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8719} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8720} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8721} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8722} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8723} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8724} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8725} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8726} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8727} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8728} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8729} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8730} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8731} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8732} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8733} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8734} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8735} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8736} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8737} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8738} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8739} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8740} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8741} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8742} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8743} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8744} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8745} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8746} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8747} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8748} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8749} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8750} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8751} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8752} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8753} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8754} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8755} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8756} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8757} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8758} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8759} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8760} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8761} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8762} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8763} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8764} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8765} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8766} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8767} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8768} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8769} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8770} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8771} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8772} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8773} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:900, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8774} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8775} -{name:"Steel kiteshield", itemDescription:"A large metal shield", shopValue:90, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 13.0, 15.0, 14.0, -1.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8776} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8777} -{name:"Oak plank", itemDescription:"A plank of sturdy oak.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8778} -{name:"Oak plank", itemDescription:"A plank of sturdy oak.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8779} -{name:"Teak plank", itemDescription:"A plank of fine teak.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8780} -{name:"Teak plank", itemDescription:"A plank of fine teak.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8781} -{name:"Mahogany plank", itemDescription:"A plank of expensive mahogany.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8782} -{name:"Mahogany plank", itemDescription:"A plank of expensive mahogany.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8783} -{name:"Gold leaf", itemDescription:"A very delicate sheet of gold.", shopValue:130000, lowAlch:52000, highAlch:78000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8784} -{name:"Gold leaf", itemDescription:"A very delicate sheet of gold.", shopValue:130000, lowAlch:52000, highAlch:78000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8785} -{name:"Marble block", itemDescription:"A beautifully carved marble block.", shopValue:325000, lowAlch:130000, highAlch:195000, isStackable:false, isNoteable:false, weight:136.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8786} -{name:"Marble block", itemDescription:"A beautifully carved marble block.", shopValue:325000, lowAlch:130000, highAlch:195000, isStackable:true, isNoteable:true, weight:136.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8787} -{name:"Magic stone", itemDescription:"A magic stone to make high-level furniture.", shopValue:975000, lowAlch:390000, highAlch:585000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8788} -{name:"Magic stone", itemDescription:"A magic stone to make high-level furniture.", shopValue:975000, lowAlch:390000, highAlch:585000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8789} -{name:"Bolt of cloth", itemDescription:"A bolt of ordinary cloth.", shopValue:650, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8790} -{name:"Bolt of cloth", itemDescription:"A bolt of ordinary cloth.", shopValue:650, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8791} -{name:"Clockwork", itemDescription:"A clockwork mechanism.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8792} -{name:"Clockwork", itemDescription:"A clockwork mechanism.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8793} -{name:"Saw", itemDescription:"Good for cutting wood.", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8794} -{name:"Saw", itemDescription:"Good for cutting wood.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8795} -{name:"Thing", itemDescription:"", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8796} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8797} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8798} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8799} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8800} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8801} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8802} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8803} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8804} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8805} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8806} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8807} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8808} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8809} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8810} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8811} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8812} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8813} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8814} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8815} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8816} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8817} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8818} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8819} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8820} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8821} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8822} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8823} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8824} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8825} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8826} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8827} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8828} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8829} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8830} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8831} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8832} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8833} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8834} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8835} -{name:"Mahogany logs", itemDescription:"Some well-cut mahogany logs.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:133.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8836} -{name:"Timber beam", itemDescription:"A hefty beam of timber, perfect for building temples.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8837} -{name:"Timber beam", itemDescription:"A hefty beam of timber, perfect for building temples.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8838} -{name:"Void knight top", itemDescription:"Torso armour from the order of the Void Knights.", shopValue:48000, lowAlch:19200, highAlch:28800, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 45.0, 45.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8839} -{name:"Void knight robe", itemDescription:"Leg armour of the order of the Void Knights.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8840} -{name:"Void knight mace", itemDescription:"A mace used by the order of the Void Knights.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[22.0, 0.0, 41.0, 8.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 6.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8841} -{name:"Void knight gloves", itemDescription:"Gloves as used by the order of the Void Knights.", shopValue:6052, lowAlch:2420, highAlch:3631, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 4.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8842} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8843} -{name:"Bronze defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[3.0, 2.0, 1.0, -3.0, -2.0, 3.0, 2.0, 1.0, -3.0, -2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8844} -{name:"Iron defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 4.0, 3.0, -3.0, -3.0, 5.0, 4.0, 3.0, -3.0, -2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8845} -{name:"Steel defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[7.0, 6.0, 5.0, -3.0, -2.0, 7.0, 6.0, 5.0, -3.0, -2.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8846} -{name:"Black defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[9.0, 8.0, 7.0, -3.0, -2.0, 9.0, 8.0, 7.0, -3.0, -2.0, 4.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8847} -{name:"Mithril defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 9.0, 8.0, -3.0, -2.0, 10.0, 9.0, 8.0, -3.0, -2.0, 5.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8848} -{name:"Adamant defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[13.0, 12.0, 11.0, -3.0, -2.0, 13.0, 12.0, 11.0, -3.0, -2.0, 6.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8849} -{name:"Rune defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[20.0, 19.0, 18.0, -3.0, -2.0, 20.0, 19.0, 18.0, -3.0, -2.0, 8.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8850} -{name:"Warrior guild token", itemDescription:"Warrior Guild Token.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8851} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8852} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8853} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8854} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8855} -{name:"Defensive shield", itemDescription:"Large, round, heavy shield.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 8.0, 9.0, 7.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8856} -{name:"Shot", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8857} -{name:"18lb shot", itemDescription:"Just landed 18lb shot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8858} -{name:"22lb shot", itemDescription:"Just landed 22lb shot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8859} -{name:"One barrel", itemDescription:"To put on your head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8860} -{name:"Two barrels", itemDescription:"To put on your head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8861} -{name:"Three barrels", itemDescription:"To put on your head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8862} -{name:"Four barrels", itemDescription:"To put on your head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8863} -{name:"Five barrels", itemDescription:"To put on your head.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8864} -{name:"Ground ashes", itemDescription:"A heap of finely ground ashes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8865} -{name:"Steel key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8866} -{name:"Bronze key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8867} -{name:"Silver key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8868} -{name:"Iron key", itemDescription:"A key made of solid iron.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8869} -{name:"Zanik", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8870} -{name:"Crate with zanik", itemDescription:"It's got Zanik in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8871} -{name:"Bone dagger", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8872} -{name:"Bone dagger", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8873} -{name:"Bone dagger (p)", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8874} -{name:"Bone dagger (p)", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8875} -{name:"Bone dagger (p+)", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8876} -{name:"Bone dagger (p+)", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8877} -{name:"Bone dagger (p++)", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8878} -{name:"Bone dagger (p++)", itemDescription:"A powerful dagger.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 3.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8879} -{name:"Dorgeshuun c'bow", itemDescription:"This fires crossbow bolts.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8880} -{name:"Dorgeshuun c'bow", itemDescription:"This fires crossbow bolts.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8881} -{name:"Bone bolts", itemDescription:"Good if you have a bone crossbow!", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8882} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8883} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8884} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8885} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8886} -{name:"Zanik", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8887} -{name:"Zanik (ham)", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8888} -{name:"Zanik (showdown)", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8889} -{name:"Coins", itemDescription:" Lovely money!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8890} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8891} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8892} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8893} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8894} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8895} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8896} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8897} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8898} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8899} -{name:"Cave horror", itemDescription:"A horrible, emaciated ape like creature with beady red eyes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8900} -{name:"Black mask (10)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8901} -{name:"Black mask (10)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8902} -{name:"Black mask (9)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8903} -{name:"Black mask (9)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8904} -{name:"Black mask (8)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8905} -{name:"Black mask (8)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8906} -{name:"Black mask (7)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8907} -{name:"Black mask (7)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8908} -{name:"Black mask (6)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8909} -{name:"Black mask (6)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8910} -{name:"Black mask (5)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8911} -{name:"Black mask (5)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8912} -{name:"Black mask (4)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8913} -{name:"Black mask (4)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8914} -{name:"Black mask (3)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8915} -{name:"Black mask (3)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8916} -{name:"Black mask (2)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8917} -{name:"Black mask (2)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8918} -{name:"Black mask (1)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8919} -{name:"Black mask (1)", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8920} -{name:"Black mask", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8921} -{name:"Black mask", itemDescription:" An inert-seeming cave horror mask.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 8.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8922} -{name:"Witchwood icon", itemDescription:"A stick on a string... pure style.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8923} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8924} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8925} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8926} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8927} -{name:"Hat and eyepatch", itemDescription:"A pirate hat and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8928} -{name:"Crabclaw and hook", itemDescription:"Tied together so they don't come apart.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8929} -{name:"Pipe section", itemDescription:"Crude wooden pipe section.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8930} -{name:"Pipe section", itemDescription:"Crude wooden pipe section.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8931} -{name:"Lumber patch", itemDescription:"Repairs made with this will be patchy at best.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8932} -{name:"Lumber patch", itemDescription:"Repairs made with this will be patchy at best.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8933} -{name:"Scrapey tree logs", itemDescription:"Slimy logs from the scrapey tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8934} -{name:"Scrapey tree logs", itemDescription:"Slimy logs from the scrapey tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8935} -{name:"Blue flowers", itemDescription:"Very blue.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8936} -{name:"Blue flowers", itemDescription:"Very blue.", shopValue:0, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8937} -{name:"Red flowers", itemDescription:"Very red.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8938} -{name:"Red flowers", itemDescription:"Very red.", shopValue:0, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8939} -{name:"Rum", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8940} -{name:"Rum", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8941} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8942} -{name:"Blue monkey", itemDescription:"Bluuuuuuuue Monkeeeeeeey!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8943} -{name:"Blue monkey", itemDescription:"Bluuuuuuuue Monkeeeeeeey!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8944} -{name:"Blue monkey", itemDescription:"Bluuuuuuuue Monkeeeeeeey!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8945} -{name:"Red monkey", itemDescription:"A well red monkey.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8946} -{name:"Red monkey", itemDescription:"A well red monkey.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8947} -{name:"Red monkey", itemDescription:"A well red monkey.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8948} -{name:"Pirate bandana", itemDescription:"Essential pirate wear.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8949} -{name:"Pirate hat", itemDescription:"Shiver me timbers!", shopValue:0, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8950} -{name:"Pieces of eight", itemDescription:"Piratical currency.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8951} -{name:"Blue naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8952} -{name:"Green naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8953} -{name:"Red naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8954} -{name:"Brown naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8955} -{name:"Black naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8956} -{name:"Purple naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8957} -{name:"Grey naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8958} -{name:"Blue tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8959} -{name:"Green tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8960} -{name:"Red tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8961} -{name:"Brown tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8962} -{name:"Black tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8963} -{name:"Purple tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8964} -{name:"Grey tricorn hat", itemDescription:"I could never look square in this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8965} -{name:"Cutthroat flag", itemDescription:"The flag of The Cutthroat.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8966} -{name:"Guilded smile flag", itemDescription:"The flag of The Guilded Smile.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8967} -{name:"Bronze fist flag", itemDescription:"The flag of The Bronze Fist.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8968} -{name:"Lucky shot flag", itemDescription:"The flag of The Lucky Shot.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8969} -{name:"Treasure flag", itemDescription:"The flag of The Treasure Trove.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8970} -{name:"Phasmatys flag", itemDescription:"The flag of The Phasmatys Pride.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8971} -{name:"Bowl of red water", itemDescription:"A Bowl of red water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8972} -{name:"Bowl of red water", itemDescription:"A Bowl of red water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8973} -{name:"Bowl of blue water", itemDescription:"A Bowl of blue water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8974} -{name:"Bowl of blue water", itemDescription:"A Bowl of blue water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8975} -{name:"Bitternut", itemDescription:"Monkeys seem to like throwing these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8976} -{name:"Scrapey bark", itemDescription:"Greasy bark from the scrapey tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8977} -{name:"Scrapey bark", itemDescription:"Greasy bark from the scrapey tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8978} -{name:"Bridge section", itemDescription:"Caution; not for use over troubled water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8979} -{name:"Bridge section", itemDescription:"Caution; not for use over troubled water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8980} -{name:"Sweetgrubs", itemDescription:"Better than sea slugs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8981} -{name:"Sweetgrubs", itemDescription:"Better than sea slugs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8982} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8983} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8984} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8985} -{name:"Bucket", itemDescription:"It's an empty bucket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8986} -{name:"Torch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8987} -{name:"The stuff", itemDescription:"Apparently good for brewing.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8988} -{name:"Brewin' guide", itemDescription:"A how-to of brewing and arson.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8989} -{name:"Brewin' guide", itemDescription:"A how-to of brewing and arson.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8990} -{name:"Blue navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8991} -{name:"Green navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8992} -{name:"Red navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8993} -{name:"Brown navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8994} -{name:"Black navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8995} -{name:"Purple navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8996} -{name:"Grey navy slacks", itemDescription:"Not for slackers", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8997} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8998} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:8999} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9000} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9001} -{name:"Hat and eyepatch", itemDescription:"A pirate hat and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9002} -{name:"Security book", itemDescription:" Contains information which could make your account secure!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9003} -{name:"Stronghold notes", itemDescription:"Information regarding the Stronghold of Security.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9004} -{name:"Fancy boots", itemDescription:"Very nice boots from the Stronghold of Security.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9005} -{name:"Fighting boots", itemDescription:"Very nice boots from the Stronghold of Security.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 1.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9006} -{name:"Right skull half", itemDescription:"Ooooh spooky!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9007} -{name:"Left skull half", itemDescription:"Ooooh spooky!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9008} -{name:"Strange skull", itemDescription:"Seems to be for use with a staff or sceptre of some sort.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9009} -{name:"Top of sceptre", itemDescription:"Top half of a broken sceptre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9010} -{name:"Bottom of sceptre", itemDescription:"Bottom half of a broken sceptre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9011} -{name:"Runed sceptre", itemDescription:"Sceptre with runes on it, seems to be missing something.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:35.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9012} -{name:"Skull sceptre", itemDescription:"A fragile magical Sceptre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 2.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9013} -{name:"Security book", itemDescription:" Contains information which could make your account secure!", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9014} -{name:"Stronghold notes", itemDescription:"Information regarding the Stronghold of Security.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9015} -{name:"Gorak claws", itemDescription:"Oversized nail clippings.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9016} -{name:"Star flower", itemDescription:"A flower with magical properties.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9017} -{name:"Gorak claw powder", itemDescription:"Ground-down gorak claws.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9018} -{name:"Magic essence (unf)", itemDescription:"(1-4) dose(s) of Magic essence potion.", shopValue:75, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9019} -{name:"Queen's secateurs", itemDescription:"Contains the Fairy Queen's magical essence.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9020} -{name:"Magic essence (4)", itemDescription:"(1-4) dose(s) of Magic essence potion.", shopValue:280, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9021} -{name:"Magic essence (3)", itemDescription:"(1-4) dose(s) of Magic essence potion.", shopValue:230, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9022} -{name:"Magic essence (2)", itemDescription:"(1-4) dose(s) of Magic essence potion.", shopValue:180, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9023} -{name:"Magic essence (1)", itemDescription:"(1-4) dose(s) of Magic essence potion.", shopValue:130, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9024} -{name:"Nuff's certificate", itemDescription:"A scroll that says she's a healer, that's Fairy Nuff.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9025} -{name:"Ivory comb", itemDescription:"Simon Templeton at the Agility Pyramid will give me 50 coins for this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9026} -{name:"Ivory comb", itemDescription:"Simon Templeton at the Agility Pyramid will give me 50 coins for this.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9027} -{name:"Golden scarab", itemDescription:"Simon Templeton at the Agility Pyramid will give me 1000 coins for this.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9028} -{name:"Golden scarab", itemDescription:"Simon Templeton at the Agility Pyramid will give me 1000 coins for this.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9029} -{name:"Stone scarab", itemDescription:"Little ornament in the shape of a scarab.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9030} -{name:"Stone scarab", itemDescription:"Little ornament in the shape of a scarab.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9031} -{name:"Pottery scarab", itemDescription:"A small pottery scarab.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9032} -{name:"Pottery scarab", itemDescription:"A small pottery scarab.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9033} -{name:"Golden statuette", itemDescription:"A small golden statuette.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9034} -{name:"Golden statuette", itemDescription:"A small golden statuette.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9035} -{name:"Pottery statuette", itemDescription:"A small pottery statuette.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9036} -{name:"Pottery statuette", itemDescription:"A small pottery statuette.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9037} -{name:"Stone statuette", itemDescription:"A small stone statuette.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9038} -{name:"Stone statuette", itemDescription:"A small stone statuette.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9039} -{name:"Gold seal", itemDescription:"Simon Templeton at the Agility Arena will give me 750 coins for this.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9040} -{name:"Gold seal", itemDescription:"Simon Templeton at the Agility Arena will give me 750 coins for this.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9041} -{name:"Stone seal", itemDescription:"Simon Templeton at the Agility Pyramid will give me 150 coins for this.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9042} -{name:"Stone seal", itemDescription:"Simon Templeton at the Agility Pyramid will give me 150 coins for this.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9043} -{name:"Pharaoh's sceptre (3)", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9044} -{name:"Pharaoh's sceptre (3)", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9045} -{name:"Pharaoh's sceptre (2)", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9046} -{name:"Pharaoh's sceptre (2)", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9047} -{name:"Pharaoh's sceptre (1)", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9048} -{name:"Pharaoh's sceptre (1)", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9049} -{name:"Pharaoh's sceptre", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9050} -{name:"Pharaoh's sceptre", itemDescription:" This sceptre is fully charged.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9051} -{name:"Locust meat", itemDescription:"Delicious and nutritious. Well, nutritious anyway.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9052} -{name:"Locust meat", itemDescription:"Delicious and nutritious. Well, nutritious anyway.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9053} -{name:"Red goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9054} -{name:"Black goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9055} -{name:"Yellow goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9056} -{name:"Green goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9057} -{name:"Purple goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9058} -{name:"Pink goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9059} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9060} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9061} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9062} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9063} -{name:"Emerald lantern", itemDescription:"A mystical lantern casting a green beam.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9064} -{name:"Emerald lantern", itemDescription:"A mystical lantern casting a green beam.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9065} -{name:"Emerald lens", itemDescription:"A roughly circular disc of glass.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9066} -{name:"Dream log", itemDescription:"A log of my thoughts...", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9067} -{name:"Moonclan helm", itemDescription:"Mystical headgear.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, -5.0, 3.0, 3.0, 3.0, 3.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9068} -{name:"Moonclan hat", itemDescription:"A mystical hat.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, -5.0, 3.0, 3.0, 3.0, 3.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9069} -{name:"Moonclan armour", itemDescription:"Provides good protection.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:40.0, bonuses:[0.0, 0.0, 0.0, 5.0, -10.0, 5.0, 5.0, 5.0, 5.0, -10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9070} -{name:"Moonclan skirt", itemDescription:"This should protect my legs.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 5.0, -7.0, 5.0, 5.0, 5.0, 5.0, -7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9071} -{name:"Moonclan gloves", itemDescription:"These should keep my hands safe.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, -5.0, 2.0, 2.0, 2.0, 2.0, -5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9072} -{name:"Moonclan boots", itemDescription:"Groovy foot protection.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, -5.0, 2.0, 2.0, 2.0, 2.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9073} -{name:"Moonclan cape", itemDescription:"A mystical cape.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, -2.0, 0.0, 1.0, 1.0, 2.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9074} -{name:"Astral rune", itemDescription:"Used for Lunar Spells", shopValue:220, lowAlch:29, highAlch:44, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9075} -{name:"Lunar ore", itemDescription:"This needs refining", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9076} -{name:"Lunar bar", itemDescription:"It's a bar of magic metal.", shopValue:8, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9077} -{name:"Moonclan manual", itemDescription:"A book of Moonclan history.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9078} -{name:"Suqah tooth", itemDescription:"The tooth, the whole tooth, and nothing but the tooth.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9079} -{name:"Suqah hide", itemDescription:"An untanned piece of suqah hide.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9080} -{name:"Suqah leather", itemDescription:"A piece of Suqah hide that has been expertly tanned into leather.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9081} -{name:"Ground tooth", itemDescription:"A ground Suqah tooth.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9082} -{name:"Seal of passage", itemDescription:"A seal of passage issued by Brundt the Chieftain of the Fremennik.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9083} -{name:"Lunar staff", itemDescription:"A Moonclan staff.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[3.0, 2.0, 16.0, 13.0, 0.0, 2.0, 3.0, 2.0, 13.0, 1.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9084} -{name:"Empty vial", itemDescription:"A vessel for holding liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9085} -{name:"Vial of water", itemDescription:"A glass vial containing water.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9086} -{name:"Waking sleep vial", itemDescription:"A vessel for dreaming while awake!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9087} -{name:"Guam vial", itemDescription:"A vessel with water and Guam inside.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9088} -{name:"Marr vial", itemDescription:"A vessel with water and Marrentill inside.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9089} -{name:"Guam-marr vial", itemDescription:"A vessel with water, guam and marrentill inside.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9090} -{name:"Lunar staff - pt1", itemDescription:"A staff enchanted by air.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-1.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9091} -{name:"Lunar staff - pt2", itemDescription:"A staff enchanted by air and fire.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-1.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9092} -{name:"Lunar staff - pt3", itemDescription:"A staff enchanted by air, fire and water.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-1.0, -1.0, 10.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9093} -{name:"Kindling", itemDescription:"Small bits of wood from the first magic tree!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9094} -{name:"Soaked kindling", itemDescription:"Magic wood soaked with a potion of waking sleep. Groovy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9095} -{name:"Lunar helm", itemDescription:"A mystical helmet.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 8.0, 7.0, 10.0, 2.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9096} -{name:"Lunar torso", itemDescription:"Provides good protection.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 10.0, -10.0, 34.0, 22.0, 40.0, 12.0, 0.0, 35.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9097} -{name:"Lunar legs", itemDescription:"These should protect my legs.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:365.0, bonuses:[0.0, 0.0, 0.0, 7.0, -7.0, 20.0, 19.0, 23.0, 9.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9098} -{name:"Lunar gloves", itemDescription:"These should keep my hands safe.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 4.0, -1.0, 2.0, 1.0, 1.0, 2.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9099} -{name:"Lunar boots", itemDescription:"Mystical foot protection.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 1.0, 2.0, 2.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9100} -{name:"Lunar cape", itemDescription:"Oooo pretty!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9101} -{name:"Lunar amulet", itemDescription:"Awesome.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9102} -{name:"A special tiara", itemDescription:"I'll be the talk of the town with this... maybe.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9103} -{name:"Lunar ring", itemDescription:"A mysterious ring that can fill the wearer with magical power.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9104} -{name:"Suqah monster", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9105} -{name:"Astral tiara", itemDescription:"", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9106} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9107} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9108} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9109} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9110} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9111} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9112} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9113} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9114} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9115} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9116} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9117} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9118} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9119} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9120} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9121} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9122} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9123} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9124} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9125} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9126} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9127} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9128} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9129} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9130} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9131} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9132} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9133} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9134} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9135} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9136} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9137} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9138} -{name:"Blurite bolts", itemDescription:"Blurite crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9139} -{name:"Iron bolts", itemDescription:"Iron crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9140} -{name:"Steel bolts", itemDescription:"Steel crossbow bolts.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9141} -{name:"Mithril bolts", itemDescription:"Mithril crossbow bolts.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9142} -{name:"Adamant bolts", itemDescription:"Adamantite crossbow bolts.", shopValue:58, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9143} -{name:"Runite bolts", itemDescription:"Runite crossbow bolts.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9144} -{name:"Silver bolts", itemDescription:"Silver crossbow bolts.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9145} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9146} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9147} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9148} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9149} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9150} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9151} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9152} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9153} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9154} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9155} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9156} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9157} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9158} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9159} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9160} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9161} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9162} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9163} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9164} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9165} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9166} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9167} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9168} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9169} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9170} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9171} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9172} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9173} -{name:"Bronze crossbow", itemDescription:"A bronze crossbow.", shopValue:73, lowAlch:29, highAlch:43, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9174} -{name:"Bronze crossbow", itemDescription:"A bronze crossbow.", shopValue:73, lowAlch:29, highAlch:43, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9175} -{name:"Blurite crossbow", itemDescription:"A blurite crossbow.", shopValue:93, lowAlch:37, highAlch:55, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9176} -{name:"Iron crossbow", itemDescription:"An iron crossbow.", shopValue:157, lowAlch:62, highAlch:94, isStackable:false, isNoteable:false, weight:40.0, bonuses:[0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9177} -{name:"Iron crossbow", itemDescription:"An iron crossbow.", shopValue:157, lowAlch:62, highAlch:94, isStackable:true, isNoteable:true, weight:40.0, bonuses:[0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9178} -{name:"Steel crossbow", itemDescription:"A steel crossbow.", shopValue:360, lowAlch:144, highAlch:216, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 54.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9179} -{name:"Steel crossbow", itemDescription:"A steel crossbow.", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 54.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9180} -{name:"Mith crossbow", itemDescription:"A mithril crossbow.", shopValue:783, lowAlch:313, highAlch:469, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9181} -{name:"Mith crossbow", itemDescription:"A mithril crossbow.", shopValue:783, lowAlch:313, highAlch:469, isStackable:true, isNoteable:true, weight:50.0, bonuses:[0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9182} -{name:"Adamant crossbow", itemDescription:"An adamantite crossbow.", shopValue:1767, lowAlch:706, highAlch:1060, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9183} -{name:"Adamant crossbow", itemDescription:"An adamantite crossbow.", shopValue:1767, lowAlch:706, highAlch:1060, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9184} -{name:"Rune crossbow", itemDescription:"A runite crossbow.", shopValue:16200, lowAlch:6480, highAlch:9720, isStackable:false, isNoteable:false, weight:60.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9185} -{name:"Rune crossbow", itemDescription:"A runite crossbow.", shopValue:16200, lowAlch:6480, highAlch:9720, isStackable:true, isNoteable:true, weight:60.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9186} -{name:"Jade bolt tips", itemDescription:"Jade bolt tips.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9187} -{name:"Topaz bolt tips", itemDescription:"Red Topaz bolt tips.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9188} -{name:"Sapphire bolt tips", itemDescription:"Sapphire bolt tips.", shopValue:17, lowAlch:6, highAlch:10, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9189} -{name:"Emerald bolt tips", itemDescription:"Emerald bolt tips.", shopValue:33, lowAlch:13, highAlch:19, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9190} -{name:"Ruby bolt tips", itemDescription:"Ruby bolt tips.", shopValue:67, lowAlch:26, highAlch:40, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9191} -{name:"Diamond bolt tips", itemDescription:"Diamond bolt tips.", shopValue:133, lowAlch:53, highAlch:79, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9192} -{name:"Dragon bolt tips", itemDescription:"Dragonstone bolt tips.", shopValue:667, lowAlch:24, highAlch:36, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9193} -{name:"Onyx bolt tips", itemDescription:"Onyx bolt tips.", shopValue:9000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9194} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9195} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9196} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9197} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9198} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9199} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9200} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9201} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9202} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9203} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9204} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9205} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9206} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9207} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9208} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9209} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9210} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9211} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9212} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9213} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9214} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9215} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9216} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9217} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9218} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9219} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9220} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9221} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9222} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9223} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9224} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9225} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9226} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9227} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9228} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9229} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9230} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9231} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9232} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9233} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9234} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9235} -{name:"Opal bolts (e)", itemDescription:"Enchanted Opal tipped Bronze Crossbow Bolts.", shopValue:7, lowAlch:2, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9236} -{name:"Jade bolts (e)", itemDescription:"Enchanted Jade tipped Blurite Crossbow Bolts.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9237} -{name:"Pearl bolts (e)", itemDescription:"Enchanted Pearl tipped Iron Crossbow Bolts.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9238} -{name:"Topaz bolts (e)", itemDescription:"Enchanted Red Topaz tipped Steel Crossbow Bolts.", shopValue:24, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9239} -{name:"Sapphire bolts (e)", itemDescription:"Enchanted Sapphire tipped Mithril Crossbow Bolts.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9240} -{name:"Emerald bolts (e)", itemDescription:"Enchanted Emerald tipped Mithril Crossbow Bolts.", shopValue:59, lowAlch:23, highAlch:35, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9241} -{name:"Ruby bolts (e)", itemDescription:"Enchanted Ruby tipped Adamantite Crossbow Bolts.", shopValue:138, lowAlch:55, highAlch:82, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 103.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9242} -{name:"Diamond bolts (e)", itemDescription:"Enchanted Diamond tipped Adamantite Crossbow Bolts.", shopValue:211, lowAlch:84, highAlch:126, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9243} -{name:"Dragon bolts (e)", itemDescription:"Enchanted Dragonstone tipped Runite Crossbow Bolts.", shopValue:1063, lowAlch:425, highAlch:637, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 117.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9244} -{name:"Onyx bolts (e)", itemDescription:"Enchanted Onyx tipped runite Crossbow Bolts.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9245} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9246} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9247} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9248} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9249} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9250} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9251} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9252} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9253} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9254} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9255} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9256} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9257} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9258} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9259} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9260} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9261} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9262} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9263} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9264} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9265} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9266} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9267} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9268} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9269} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9270} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9271} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9272} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9273} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9274} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9275} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9276} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9277} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9278} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9279} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9280} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9281} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9282} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9283} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9284} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9285} -{name:"Blurite bolts (p)", itemDescription:"Blurite crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9286} -{name:"Iron bolts (p)", itemDescription:"Iron crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9287} -{name:"Steel bolts (p)", itemDescription:"Steel crossbow bolts.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9288} -{name:"Mithril bolts (p)", itemDescription:"Mithril crossbow bolts.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9289} -{name:"Adamant bolts (p)", itemDescription:"Adamantite crossbow bolts.", shopValue:58, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9290} -{name:"Runite bolts (p)", itemDescription:"Runite crossbow bolts.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9291} -{name:"Silver bolts (p)", itemDescription:"Silver crossbow bolts.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9292} -{name:"Blurite bolts (p+)", itemDescription:"Blurite crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9293} -{name:"Iron bolts (p+)", itemDescription:"Iron crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9294} -{name:"Steel bolts (p+)", itemDescription:"Steel crossbow bolts.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9295} -{name:"Mithril bolts (p+)", itemDescription:"Mithril crossbow bolts.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9296} -{name:"Adamant bolts (p+)", itemDescription:"Adamantite crossbow bolts.", shopValue:58, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9297} -{name:"Runite bolts (p+)", itemDescription:"Runite crossbow bolts.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9298} -{name:"Silver bolts (p+)", itemDescription:"Silver crossbow bolts.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9299} -{name:"Blurite bolts (p++)", itemDescription:"Blurite crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9300} -{name:"Iron bolts (p++)", itemDescription:"Iron crossbow bolts.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9301} -{name:"Steel bolts (p++)", itemDescription:"Steel crossbow bolts.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9302} -{name:"Mithril bolts (p++)", itemDescription:"Mithril crossbow bolts.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9303} -{name:"Adamant bolts (p++)", itemDescription:"Adamantite crossbow bolts.", shopValue:58, lowAlch:23, highAlch:34, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9304} -{name:"Runite bolts (p++)", itemDescription:"Runite crossbow bolts.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9305} -{name:"Silver bolts (p++)", itemDescription:"Silver crossbow bolts.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9306} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9307} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9308} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9309} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9310} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9311} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9312} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9313} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9314} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9315} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9316} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9317} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9318} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9319} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9320} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9321} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9322} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9323} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9324} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9325} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9326} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9327} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9328} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9329} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9330} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9331} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9332} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9333} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9334} -{name:"Jade bolts", itemDescription:"Jade tipped blurite bolts.", shopValue:12, lowAlch:5, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9335} -{name:"Topaz bolts", itemDescription:"Red Topaz tipped Steel Crossbow Bolts.", shopValue:22, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9336} -{name:"Sapphire bolts", itemDescription:"Sapphire tipped Mithril crossbow bolts.", shopValue:37, lowAlch:14, highAlch:22, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9337} -{name:"Emerald bolts", itemDescription:"Emerald tipped Mithril crossbow bolts.", shopValue:53, lowAlch:21, highAlch:31, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9338} -{name:"Ruby bolts", itemDescription:"Ruby tipped Adamantite crossbow bolts.", shopValue:125, lowAlch:50, highAlch:75, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 103.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9339} -{name:"Diamond bolts", itemDescription:"Diamond tipped Adamantite crossbow bolts.", shopValue:192, lowAlch:76, highAlch:115, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9340} -{name:"Dragon bolts", itemDescription:"Dragonstone tipped Runite crossbow bolts.", shopValue:967, lowAlch:386, highAlch:580, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 117.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9341} -{name:"Onyx bolts", itemDescription:"Onyx tipped Runite crossbow bolts.", shopValue:13633, lowAlch:5453, highAlch:8179, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9342} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9343} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9344} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9345} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9346} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9347} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9348} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9349} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9350} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9351} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9352} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9353} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9354} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9355} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9356} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9357} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9358} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9359} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9360} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9361} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9362} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9363} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9364} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9365} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9366} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9367} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9368} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9369} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9370} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9371} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9372} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9373} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9374} -{name:"Bronze bolts (unf)", itemDescription:"Unfeathered bronze crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9375} -{name:"Blurite bolts (unf)", itemDescription:"Unfeathered blurite crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9376} -{name:"Iron bolts (unf)", itemDescription:"Unfeathered iron crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9377} -{name:"Steel bolts (unf)", itemDescription:"Unfeathered steel crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9378} -{name:"Mithril bolts (unf)", itemDescription:"Unfeathered mithril crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9379} -{name:"Adamant bolts (unf)", itemDescription:"Unfeathered adamantite crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9380} -{name:"Runite bolts (unf)", itemDescription:"Unfeathered runite crossbow bolts", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9381} -{name:"Silver bolts (unf)", itemDescription:"Unfeathered silver crossbow bolts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9382} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9383} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9384} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9385} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9386} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9387} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9388} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9389} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9390} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9391} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9392} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9393} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9394} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9395} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9396} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9397} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9398} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9399} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9400} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9401} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9402} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9403} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9404} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9405} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9406} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9407} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9408} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9409} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9410} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9411} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9412} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9413} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9414} -{name:"Grapple", itemDescription:"A mithril grapple tipped bolt with a rope.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9415} -{name:"Mith grapple tip", itemDescription:"A mithril grapple tip.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9416} -{name:"Mith grapple tip", itemDescription:"A mithril grapple tip.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9417} -{name:"Mith grapple", itemDescription:"A mithril grapple tipped bolt with a rope.", shopValue:48, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9418} -{name:"Mith grapple", itemDescription:"A mithril grapple tipped bolt with a rope.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9419} -{name:"Bronze limbs", itemDescription:"A pair of bronze crossbow limbs.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9420} -{name:"Bronze limbs", itemDescription:"A pair of bronze crossbow limbs.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9421} -{name:"Blurite limbs", itemDescription:"A pair of blurite crossbow limbs.", shopValue:33, lowAlch:13, highAlch:19, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9422} -{name:"Iron limbs", itemDescription:"A pair of iron crossbow limbs.", shopValue:70, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9423} -{name:"Iron limbs", itemDescription:"A pair of iron crossbow limbs.", shopValue:70, lowAlch:28, highAlch:42, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9424} -{name:"Steel limbs", itemDescription:"A pair of steel crossbow limbs.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9425} -{name:"Steel limbs", itemDescription:"A pair of steel crossbow limbs.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9426} -{name:"Mithril limbs", itemDescription:"A pair of mithril crossbow limbs.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9427} -{name:"Mithril limbs", itemDescription:"A pair of mithril crossbow limbs.", shopValue:650, lowAlch:260, highAlch:390, isStackable:true, isNoteable:true, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9428} -{name:"Adamantite limbs", itemDescription:"A pair of adamantite crossbow limbs.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9429} -{name:"Adamantite limbs", itemDescription:"A pair of adamantite crossbow limbs.", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9430} -{name:"Runite limbs", itemDescription:"A pair of runite crossbow limbs.", shopValue:16000, lowAlch:6400, highAlch:9600, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9431} -{name:"Runite limbs", itemDescription:"A pair of runite crossbow limbs.", shopValue:16000, lowAlch:6400, highAlch:9600, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9432} -{name:"Bolt pouch", itemDescription:"A pouch for storing crossbow bolts.", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9433} -{name:"Bolt mould", itemDescription:"A mould for creating silver crossbow bolts.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9434} -{name:"Bolt mould", itemDescription:"A mould for creating silver crossbow bolts.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9435} -{name:"Sinew", itemDescription:"I can use this to make a crossbow string.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9436} -{name:"Sinew", itemDescription:"I can use this to make a crossbow string.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9437} -{name:"Crossbow string", itemDescription:"A string for a crossbow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9438} -{name:"Crossbow string", itemDescription:"A string for a crossbow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9439} -{name:"Wooden stock", itemDescription:"A wooden crossbow stock", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9440} -{name:"Wooden stock", itemDescription:"A wooden crossbow stock", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9441} -{name:"Oak stock", itemDescription:"An oak crossbow stock.", shopValue:27, lowAlch:10, highAlch:16, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9442} -{name:"Oak stock", itemDescription:"An oak crossbow stock.", shopValue:27, lowAlch:10, highAlch:16, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9443} -{name:"Willow stock", itemDescription:"A willow crossbow stock.", shopValue:53, lowAlch:21, highAlch:31, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9444} -{name:"Willow stock", itemDescription:"A willow crossbow stock.", shopValue:53, lowAlch:21, highAlch:31, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9445} -{name:"Teak stock", itemDescription:"A teak crossbow stock.", shopValue:77, lowAlch:30, highAlch:46, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9446} -{name:"Teak stock", itemDescription:"A teak crossbow stock.", shopValue:77, lowAlch:30, highAlch:46, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9447} -{name:"Maple stock", itemDescription:"A maple crossbow stock.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9448} -{name:"Maple stock", itemDescription:"A maple crossbow stock.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9449} -{name:"Mahogany stock", itemDescription:"A Mahogany crossbow stock.", shopValue:133, lowAlch:53, highAlch:79, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9450} -{name:"Mahogany stock", itemDescription:"A Mahogany crossbow stock.", shopValue:133, lowAlch:53, highAlch:79, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9451} -{name:"Yew stock", itemDescription:"A yew crossbow stock.", shopValue:167, lowAlch:66, highAlch:100, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9452} -{name:"Yew stock", itemDescription:"A yew crossbow stock.", shopValue:167, lowAlch:66, highAlch:100, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9453} -{name:"Bronze c'bow (u)", itemDescription:"An unstrung bronze crossbow.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9454} -{name:"Bronze c'bow (u)", itemDescription:"An unstrung bronze crossbow.", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9455} -{name:"Blurite c'bow (u)", itemDescription:"An unstrung blurite crossbow.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9456} -{name:"Iron c'bow (u)", itemDescription:"An unstrung iron crossbow.", shopValue:123, lowAlch:49, highAlch:73, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9457} -{name:"Iron c'bow (u)", itemDescription:"An unstrung iron crossbow.", shopValue:123, lowAlch:49, highAlch:73, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9458} -{name:"Steel c'bow (u)", itemDescription:"An unstrung steel crossbow.", shopValue:327, lowAlch:130, highAlch:196, isStackable:false, isNoteable:false, weight:80.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9459} -{name:"Steel c'bow (u)", itemDescription:"An unstrung steel crossbow.", shopValue:327, lowAlch:130, highAlch:196, isStackable:true, isNoteable:true, weight:80.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9460} -{name:"Mithril c'bow (u)", itemDescription:"An unstrung mithril crossbow.", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9461} -{name:"Mithril c'bow (u)", itemDescription:"An unstrung mithril crossbow.", shopValue:750, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9462} -{name:"Adamant c'bow (u)", itemDescription:"An unstrung adamantite crossbow.", shopValue:1733, lowAlch:693, highAlch:1039, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9463} -{name:"Adamant c'bow (u)", itemDescription:"An unstrung adamantite crossbow.", shopValue:1733, lowAlch:693, highAlch:1039, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9464} -{name:"Runite c'bow (u)", itemDescription:"An unstrung runite crossbow.", shopValue:16167, lowAlch:6466, highAlch:9700, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9465} -{name:"Runite c'bow (u)", itemDescription:"An unstrung runite crossbow.", shopValue:16167, lowAlch:6466, highAlch:9700, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9466} -{name:"Blurite bar", itemDescription:"It's a bar of blurite.", shopValue:18, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9467} -{name:"Sawdust", itemDescription:"What is left over when a log is made into a plank.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9468} -{name:"Grand seed pod", itemDescription:"A seed pod of the Grand Tree.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9469} -{name:"Gnome scarf", itemDescription:"A scarf. You feel your upper lip stiffening.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9470} -{name:"Gnome scarf", itemDescription:"A scarf. You feel your upper lip stiffening.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9471} -{name:"Gnome goggles", itemDescription:"Tally Ho!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9472} -{name:"Gnome goggles", itemDescription:"Tally Ho!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9473} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9474} -{name:"Mint cake", itemDescription:"It looks very minty.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9475} -{name:"Mint cake", itemDescription:"It looks very minty.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9476} -{name:"Aluft aloft box", itemDescription:"You can check on your delivery details here", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9477} -{name:"Half made batta", itemDescription:"This XX batta needs baking (and garnishing with YY).", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9478} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9479} -{name:"Half made batta", itemDescription:"This XX batta needs baking (and garnishing with YY).", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9480} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9481} -{name:"Half made batta", itemDescription:"This XX batta needs baking (and garnishing with YY).", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9482} -{name:"Half made batta", itemDescription:"This XX batta needs baking (and garnishing with YY).", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9483} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9484} -{name:"Half made batta", itemDescription:"This XX batta needs baking (and garnishing with YY).", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9485} -{name:"Unfinished batta", itemDescription:"This XX batta needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9486} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9487} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9488} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9489} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9490} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9491} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9492} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9493} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9494} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9495} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9496} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9497} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9498} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9499} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9500} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9501} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9502} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9503} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9504} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9505} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9506} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9507} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9508} -{name:"Wizard blizzard", itemDescription:"This looks like a strange mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9509} -{name:"Short green guy", itemDescription:"A Short Green Guy... looks good.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9510} -{name:"Short green guy", itemDescription:"A Short Green Guy... looks good.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9511} -{name:"Pineapple punch", itemDescription:"A fresh healthy fruit mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9512} -{name:"Pineapple punch", itemDescription:"A fresh healthy fruit mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9513} -{name:"Fruit blast", itemDescription:"A cool refreshing fruit mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9514} -{name:"Fruit blast", itemDescription:"A cool refreshing fruit mix.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9515} -{name:"Drunk dragon", itemDescription:"A warm creamy alcoholic beverage", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9516} -{name:"Drunk dragon", itemDescription:"A warm creamy alcoholic beverage", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9517} -{name:"Choc saturday", itemDescription:"A warm creamy alcoholic beverage", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9518} -{name:"Choc saturday", itemDescription:"A warm creamy alcoholic beverage", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9519} -{name:"Blurberry special", itemDescription:"Looks good... smells strong.", shopValue:0, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9520} -{name:"Blurberry special", itemDescription:"Looks good... smells strong.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9521} -{name:"Batta tin", itemDescription:"A deep tin used to make gnome battas in.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9522} -{name:"Batta tin", itemDescription:"A deep tin used to make gnome battas in.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9523} -{name:"Batta tin", itemDescription:"A deep tin used to make gnome battas in.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9524} -{name:"Batta tin", itemDescription:"A deep tin used to make gnome battas in.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9525} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9526} -{name:"Fruit batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9527} -{name:"Fruit batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9528} -{name:"Toad batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9529} -{name:"Toad batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9530} -{name:"Worm batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9531} -{name:"Worm batta", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9532} -{name:"Vegetable batta", itemDescription:"Well... It looks healthy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9533} -{name:"Vegetable batta", itemDescription:"Well... It looks healthy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9534} -{name:"Cheese+tom batta", itemDescription:"This smells really good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9535} -{name:"Cheese+tom batta", itemDescription:"This smells really good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9536} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9537} -{name:"Toad crunchies", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9538} -{name:"Toad crunchies", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9539} -{name:"Spicy crunchies", itemDescription:"Yum...smells spicy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9540} -{name:"Spicy crunchies", itemDescription:"Yum...smells spicy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9541} -{name:"Worm crunchies", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9542} -{name:"Worm crunchies", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9543} -{name:"Chocchip crunchies", itemDescription:"Yum... smells good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9544} -{name:"Chocchip crunchies", itemDescription:"Yum... smells good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9545} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9546} -{name:"Worm hole", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9547} -{name:"Worm hole", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9548} -{name:"Veg ball", itemDescription:"This looks pretty healthy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9549} -{name:"Veg ball", itemDescription:"This looks pretty healthy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9550} -{name:"Tangled toads' legs", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9551} -{name:"Tangled toads' legs", itemDescription:"It actually smells quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9552} -{name:"Chocolate bomb", itemDescription:"Full of creamy, chocolately goodness.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9553} -{name:"Chocolate bomb", itemDescription:"Full of creamy, chocolately goodness.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9554} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9555} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9556} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9557} -{name:"Half made bowl", itemDescription:"This unfinished xxx needs baking, and final ingredients", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9558} -{name:"Half made bowl", itemDescription:"This unfinished xxx needs baking, and final ingredients", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9559} -{name:"Unfinished bowl", itemDescription:"This unfinished XX needs YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9560} -{name:"Half made bowl", itemDescription:"This unfinished xxx needs baking, and final ingredients", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9561} -{name:"Unfinished bowl", itemDescription:"This unfinished XX needs YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9562} -{name:"Half made bowl", itemDescription:"This unfinished xxx needs baking, and final ingredients", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9563} -{name:"Unfinished bowl", itemDescription:"This unfinished XX needs YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9564} -{name:"Cocktail shaker", itemDescription:"Used for mixing cocktails.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9565} -{name:"Mixed blizzard", itemDescription:"This wizzard blizzard needs pouring, a lime slice, and pineapple chunks.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9566} -{name:"Mixed sgg", itemDescription:"This short green guy cocktail needs pouring, a lime slice and equa leaves.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9567} -{name:"Mixed blast", itemDescription:"This fruit blast cocktail needs pouring and a lemon slice.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9568} -{name:"Mixed punch", itemDescription:"This pineapple punch needs pouring, lime and pineapple chunks, and a orange slice.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9569} -{name:"Mixed blurberry special", itemDescription:"This blurberry special needs pouring, orange and lemon chunks, a lime slice and equa leaves.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9570} -{name:"Mixed saturday", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9571} -{name:"Mixed saturday", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9572} -{name:"Mixed saturday", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9573} -{name:"Mixed dragon", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9574} -{name:"Mixed dragon", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9575} -{name:"Mixed dragon", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9576} -{name:"Half made crunchy", itemDescription:"This XX crunchy needs baking and garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9577} -{name:"Unfinished crunchy", itemDescription:"This XX crunchy needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9578} -{name:"Half made crunchy", itemDescription:"This XX crunchy needs baking and garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9579} -{name:"Unfinished crunchy", itemDescription:"This XX crunchy needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9580} -{name:"Half made crunchy", itemDescription:"This XX crunchy needs baking and garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9581} -{name:"Unfinished crunchy", itemDescription:"This XX crunchy needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9582} -{name:"Half made crunchy", itemDescription:"This XX crunchy needs baking and garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9583} -{name:"Unfinished crunchy", itemDescription:"This XX crunchy needs garnishing with YY.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9584} -{name:"Batta tin", itemDescription:"A deep tin used to make gnome battas in.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9585} -{name:"Crunchy tray", itemDescription:"A shallow tray used to make crunchies in.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9586} -{name:"Gnomebowl mould", itemDescription:"A large ovenproof bowl.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9587} -{name:"Raw crunchies", itemDescription:"These crunchies need cooking.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9588} -{name:"Dossier", itemDescription:"A dossier containing info on the Black Knight plot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9589} -{name:"Dossier", itemDescription:"A dossier containing info on the Black Knight plot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9590} -{name:"Broken cauldron", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9591} -{name:"Magic glue", itemDescription:"Glue made from tree sap and ground mud runes.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9592} -{name:"Weird gloop", itemDescription:"This doesn't look like it will do anything interesting.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9593} -{name:"Ground mud runes", itemDescription:"Mud runes ground into a powder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9594} -{name:"Hazelmere's book", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9595} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9596} -{name:"Red circle", itemDescription:"A red circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9597} -{name:"Red triangle", itemDescription:"A red triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9598} -{name:"Red square", itemDescription:"A red square-shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9599} -{name:"Red pentagon", itemDescription:"A red pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9600} -{name:"Orange circle", itemDescription:"An orange circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9601} -{name:"Orange triangle", itemDescription:"An orange triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9602} -{name:"Orange square", itemDescription:"An orange square-shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9603} -{name:"Orange pentagon", itemDescription:"An orange pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9604} -{name:"Yellow circle", itemDescription:"A yellow circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9605} -{name:"Yellow triangle", itemDescription:"A yellow triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9606} -{name:"Yellow square", itemDescription:"A yellow square-shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9607} -{name:"Yellow pentagon", itemDescription:"A yellow pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9608} -{name:"Green circle", itemDescription:"A green circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9609} -{name:"Green triangle", itemDescription:"A green triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9610} -{name:"Green square", itemDescription:"A green square shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9611} -{name:"Green pentagon", itemDescription:"A green pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9612} -{name:"Blue circle", itemDescription:"A blue circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9613} -{name:"Blue triangle", itemDescription:"A blue triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9614} -{name:"Blue square", itemDescription:"A blue square shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9615} -{name:"Blue pentagon", itemDescription:"A blue pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9616} -{name:"Indigo circle", itemDescription:"An indigo circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9617} -{name:"Indigo triangle", itemDescription:"An indigo triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9618} -{name:"Indigo square", itemDescription:"An indigo square shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9619} -{name:"Indigo pentagon", itemDescription:"An indigo pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9620} -{name:"Violet circle", itemDescription:"A violet circular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9621} -{name:"Violet triangle", itemDescription:"A violet triangular crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9622} -{name:"Violet square", itemDescription:"A violet square-shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9623} -{name:"Violet pentagon", itemDescription:"A violet pentagon shaped crystalline disc.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9624} -{name:"Crystal saw", itemDescription:"A magical saw.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9625} -{name:"Small crystal seed", itemDescription:"This small crystal seed looks grey and dead.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9626} -{name:"A handwritten book", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9627} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9628} -{name:"Tyras helm", itemDescription:"As used by King Tyras personal guard.", shopValue:1265, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9629} -{name:"Tyras helm", itemDescription:"As used by King Tyras personal guard.", shopValue:1265, lowAlch:220, highAlch:330, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9630} -{name:"null", itemDescription:"It's a null.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9631} -{name:"Daeyalt ore", itemDescription:"This needs refining.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9632} -{name:"Message", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9633} -{name:"Vyrewatch top", itemDescription:"Dressing like the Vyrewatch could be a useful disguise in the ghetto of Meiyerditch.", shopValue:650, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9634} -{name:"Vyrewatch top", itemDescription:"Dressing like the Vyrewatch could be a useful disguise in the ghetto of Meiyerditch.", shopValue:650, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9635} -{name:"Vyrewatch legs", itemDescription:"Dress like a powerful Vyrewatch!", shopValue:650, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9636} -{name:"Vyrewatch legs", itemDescription:"Dress like a powerful Vyrewatch!", shopValue:650, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9637} -{name:"Vyrewatch shoes", itemDescription:"Dress like a powerful Vyrewatch!", shopValue:650, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9638} -{name:"Vyrewatch shoes", itemDescription:"Dress like a powerful Vyrewatch!", shopValue:650, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9639} -{name:"Citizen top", itemDescription:"Could be used as a disguise in the ghetto of Meiyerditch.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9640} -{name:"Citizen top", itemDescription:"Could be used as a disguise in the ghetto of Meiyerditch.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9641} -{name:"Citizen trousers", itemDescription:"Could be used as a disguise in the ghetto of Meiyerditch.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9642} -{name:"Citizen trousers", itemDescription:"Could be used as a disguise in the ghetto of Meiyerditch.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9643} -{name:"Citizen shoes", itemDescription:"Could be used as a disguise in the ghetto of Meiyerditch.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9644} -{name:"Citizen shoes", itemDescription:"Could be used as a disguise in the ghetto of Meiyerditch.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9645} -{name:"Castle sketch 1", itemDescription:"Northern approach of the castle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9646} -{name:"Castle sketch 2", itemDescription:"Western approach of the castle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9647} -{name:"Castle sketch 3", itemDescription:"Southern approach of the castle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9648} -{name:"Message", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9649} -{name:"Blood tithe pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9650} -{name:"Large ornate key", itemDescription:"A key to some large, strange door.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9651} -{name:"Haemalchemy", itemDescription:"A book called Haemalchemy Volume 1.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9652} -{name:"Sealed message", itemDescription:"A sealed message from Safalaan to Valiaf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9653} -{name:"Door key", itemDescription:"A key to the Witch's house's front door. (Witch's House)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9654} -{name:"Ladder top", itemDescription:"The top part of a ladder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9655} -{name:"Tome of xp (3)", itemDescription:"A tome of experience that awards 2000 XP per chapter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9656} -{name:"Tome of xp (2)", itemDescription:"A tome of experience that awards 2000 XP per chapter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9657} -{name:"Tome of xp (1)", itemDescription:"A tome of experience that awards 2000 XP per chapter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9658} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:1, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9659} -{name:"Bucket", itemDescription:"It's an empty bucket.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9660} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9661} -{name:"Shortcut key", itemDescription:"A key allowing a shortcut into the Sanguinesti region. (Darkness of Hallowvale)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9662} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9663} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9664} -{name:"Torch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9665} -{name:"Pros'yte harness m", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9666} -{name:"Pros'yte harness m", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9667} -{name:"Initiate harness m", itemDescription:"", shopValue:20000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9668} -{name:"Initiate harness m", itemDescription:"", shopValue:20000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9669} -{name:"Pros'yte harness f", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9670} -{name:"Pros'yte harness f", itemDescription:"", shopValue:25000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9671} -{name:"Proselyte sallet", itemDescription:"A Proselyte Temple Knight's helm.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9672} -{name:"Proselyte sallet", itemDescription:"A Proselyte Temple Knight's helm.", shopValue:8000, lowAlch:3200, highAlch:4800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9673} -{name:"Proselyte hauberk", itemDescription:"A Proselyte Temple Knight's armour.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9674} -{name:"Proselyte hauberk", itemDescription:"A Proselyte Temple Knight's armour.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:true, isNoteable:true, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9675} -{name:"Proselyte cuisse", itemDescription:"A Proselyte Temple Knight's leg armour", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:77.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9676} -{name:"Proselyte cuisse", itemDescription:"A Proselyte Temple Knight's leg armour", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:77.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9677} -{name:"Proselyte tasset", itemDescription:"A Proselyte Temple Knight's leg armour.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9678} -{name:"Proselyte tasset", itemDescription:"A Proselyte Temple Knight's leg armour.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9679} -{name:"Sea slug glue", itemDescription:"A rendered down baby sea slug.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9680} -{name:"Commorb v2", itemDescription:"A Temple Knight Communication Orb. Top Secret!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9681} -{name:"Door transcription", itemDescription:"A copy of the mysterious glyphs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9682} -{name:"Dead sea slug", itemDescription:"Dead sea slug, very sticky.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9683} -{name:"Page 1", itemDescription:"A page from Maledict's holy book.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9684} -{name:"Page 2", itemDescription:"A page from Maledict's holy book.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9685} -{name:"Page 3", itemDescription:"A page from Maledict's holy book.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9686} -{name:"Fragment 1", itemDescription:"A piece of torn page.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9687} -{name:"Fragment 2", itemDescription:"A piece of torn page.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9688} -{name:"Fragment 3", itemDescription:"A piece of torn page.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9689} -{name:"Blank water rune", itemDescription:"A blank water rune.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9690} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9691} -{name:"Blank air rune", itemDescription:"A blank air rune.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9692} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9693} -{name:"Blank earth rune", itemDescription:"A blank earth rune.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9694} -{name:"Earth rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9695} -{name:"Blank mind rune", itemDescription:"A blank mind rune.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9696} -{name:"Mind rune", itemDescription:"Used for basic level missile spells.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9697} -{name:"Blank fire rune", itemDescription:"A blank fire rune.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9698} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9699} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9700} -{name:"Torch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9701} -{name:"Stick", itemDescription:"A big, bad troll.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9702} -{name:"Training sword", itemDescription:"Basic training sword.", shopValue:35, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[4.0, 5.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9703} -{name:"Training shield", itemDescription:"Made of flimsy painted wood.", shopValue:55, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 5.0, 3.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9704} -{name:"Training bow", itemDescription:"Light and flexible, good for a beginner.", shopValue:55, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9705} -{name:"Training arrows", itemDescription:"Standard training arrows.", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9706} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9707} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9708} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9709} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9710} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9711} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9712} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9713} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9714} -{name:"Slashed book", itemDescription:"Book of the elemental shield.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9715} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9716} -{name:"Beaten book", itemDescription:"Book of the elemental helm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9717} -{name:"Crane schematic", itemDescription:"On the subject of lava dippers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9718} -{name:"Lever schematic", itemDescription:"A scroll with a lever schematic drawn on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9719} -{name:"Crane claw", itemDescription:"A crane claw.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9720} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9721} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9722} -{name:"Pipe", itemDescription:"A pipe that belongs in a cannon stand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9723} -{name:"Large cog", itemDescription:"A large cog.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9724} -{name:"Medium cog", itemDescription:"A medium cog.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9725} -{name:"Small cog", itemDescription:"A small cog.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9726} -{name:"Primed bar", itemDescription:"A primed elemental ingot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9727} -{name:"Mind bar", itemDescription:"An elemental mind ingot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9728} -{name:"Elemental helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9729} -{name:"Elemental helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9730} -{name:"Mind shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9731} -{name:"Mind shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9732} -{name:"Mind helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9733} -{name:"Mind helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9734} -{name:"Desert goat horn", itemDescription:"Not much good for blowing.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9735} -{name:"Goat horn dust", itemDescription:"Finely ground desert goat horn.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9736} -{name:"Goat horn dust", itemDescription:"Finely ground desert goat horn.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9737} -{name:"Desert goat horn", itemDescription:"Not much good for blowing.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9738} -{name:"Combat potion (4)", itemDescription:"X dose(s) of combat potion.", shopValue:215, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9739} -{name:"Combat potion (4)", itemDescription:"X dose(s) of combat potion.", shopValue:215, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9740} -{name:"Combat potion (3)", itemDescription:"X dose(s) of combat potion.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9741} -{name:"Combat potion (3)", itemDescription:"X dose(s) of combat potion.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9742} -{name:"Combat potion (2)", itemDescription:"X dose(s) of combat potion.", shopValue:105, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9743} -{name:"Combat potion (2)", itemDescription:"X dose(s) of combat potion.", shopValue:105, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9744} -{name:"Combat potion (1)", itemDescription:"X dose(s) of combat potion.", shopValue:52, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9745} -{name:"Combat potion (1)", itemDescription:"X dose(s) of combat potion.", shopValue:52, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9746} -{name:"Attack cape", itemDescription:"The cape worn by masters of attack.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9747} -{name:"Attack cape (t)", itemDescription:"The cape worn by masters of attack.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9748} -{name:"Attack hood", itemDescription:"Attack skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9749} -{name:"Strength cape", itemDescription:"The cape only worn by the strongest people.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9750} -{name:"Strength cape (t)", itemDescription:"The cape only worn by the strongest people.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9751} -{name:"Strength hood", itemDescription:"Strength skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9752} -{name:"Defence cape", itemDescription:"The cape worn by masters of the art of Defence.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9753} -{name:"Defence cape (t)", itemDescription:"The cape worn by masters of the art of Defence.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9754} -{name:"Defence hood", itemDescription:"Defence skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9755} -{name:"Ranging cape", itemDescription:"The cape worn by master archers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9756} -{name:"Ranging cape (t)", itemDescription:"The cape worn by master archers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9757} -{name:"Ranging hood", itemDescription:"Range skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9758} -{name:"Prayer cape", itemDescription:"The cape worn by the most pious of heroes.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9759} -{name:"Prayer cape (t)", itemDescription:"The cape worn by the most pious of heroes.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9760} -{name:"Prayer hood", itemDescription:"Prayer skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9761} -{name:"Magic cape", itemDescription:"The cape worn by the most powerful mages.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9762} -{name:"Magic cape (t)", itemDescription:"The cape worn by the most powerful mages.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9763} -{name:"Magic hood", itemDescription:"Magic skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9764} -{name:"Runecraft cape", itemDescription:"The cape worn by master runecrafters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9765} -{name:"Runecraft cape (t)", itemDescription:"The cape worn by master runecrafters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9766} -{name:"Runecrafting hood", itemDescription:"Runecrafting skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9767} -{name:"Constitution cape", itemDescription:"The cape worn by well-constituted adventurers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9768} -{name:"Constitution cape (t)", itemDescription:"The cape worn by well-constituted adventurers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9769} -{name:"Constitution hood", itemDescription:"Constitution skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9770} -{name:"Agility cape", itemDescription:"The cape worn by the most agile of heroes.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9771} -{name:"Agility cape (t)", itemDescription:"The cape worn by the most agile of heroes.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9772} -{name:"Agility hood", itemDescription:"Agility skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9773} -{name:"Herblore cape", itemDescription:"The cape worn by the most skilled at the art of herblore.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9774} -{name:"Herblore cape (t)", itemDescription:"The cape worn by the most skilled at the art of herblore.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9775} -{name:"Herblore hood", itemDescription:"Herblore skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9776} -{name:"Thieving cape", itemDescription:"The cape worn by master thieves.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9777} -{name:"Thieving cape (t)", itemDescription:"The cape worn by master thieves.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9778} -{name:"Thieving hood", itemDescription:"Thieving skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9779} -{name:"Crafting cape", itemDescription:"The cape worn by master craftworkers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9780} -{name:"Crafting cape (t)", itemDescription:"The cape worn by master craftworkers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9781} -{name:"Crafting hood", itemDescription:"Crafting skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9782} -{name:"Fletching cape", itemDescription:"The cape worn by the best of fletchers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9783} -{name:"Fletching cape (t)", itemDescription:"The cape worn by the best of fletchers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9784} -{name:"Fletching hood", itemDescription:"Fletching skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9785} -{name:"Slayer cape", itemDescription:"The cape worn by slayer masters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9786} -{name:"Slayer cape (t)", itemDescription:"The cape worn by slayer masters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9787} -{name:"Slayer hood", itemDescription:"Slayer skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9788} -{name:"Construct. cape", itemDescription:"The cape worn by master builders.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9789} -{name:"Construct. cape (t)", itemDescription:"The cape worn by master builders.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9790} -{name:"Construct. hood", itemDescription:"Construction skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9791} -{name:"Mining cape", itemDescription:"The cape worn by the most skilled miners.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9792} -{name:"Mining cape (t)", itemDescription:"The cape worn by the most skilled miners.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9793} -{name:"Mining hood", itemDescription:"Mining skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9794} -{name:"Smithing cape", itemDescription:"The cape worn by master smiths.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9795} -{name:"Smithing cape (t)", itemDescription:"The cape worn by master smiths.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9796} -{name:"Smithing hood", itemDescription:"Smithing skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9797} -{name:"Fishing cape", itemDescription:"The cape worn by the best fishermen.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9798} -{name:"Fishing cape (t)", itemDescription:"The cape worn by the best fishermen.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9799} -{name:"Fishing hood", itemDescription:"Fishing skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9800} -{name:"Cooking cape", itemDescription:"The cape worn by the world's best chefs.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9801} -{name:"Cooking cape (t)", itemDescription:"The cape worn by the world's best chefs.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9802} -{name:"Cooking hood", itemDescription:"Cooking skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9803} -{name:"Firemaking cape", itemDescription:"The cape worn by master firelighters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9804} -{name:"Firemaking cape (t)", itemDescription:"The cape worn by master firelighters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9805} -{name:"Firemaking hood", itemDescription:"Firemaking skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9806} -{name:"Woodcutting cape", itemDescription:"The cape worn by master woodcutters (Obtaining level 99 skill)", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9807} -{name:"Woodcut. cape (t)", itemDescription:"The cape worn by master woodcutters (Obtaining level 99 skill)", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9808} -{name:"Woodcutting hood", itemDescription:"Woodcutting skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9809} -{name:"Farming cape", itemDescription:"The cape worn by master farmers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9810} -{name:"Farming cape (t)", itemDescription:"The cape worn by master farmers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9811} -{name:"Farming hood", itemDescription:"Farming skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9812} -{name:"Quest point cape", itemDescription:"The cape worn by only the most experienced adventurers.", shopValue:99000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9813} -{name:"Quest point hood", itemDescription:"Quest skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9814} -{name:"Bobble hat", itemDescription:"A woolly bobble hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9815} -{name:"Bobble scarf", itemDescription:"A woolly scarf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9816} -{name:"Oak cape rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9817} -{name:"Teak cape rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9818} -{name:"M'gany cape rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9819} -{name:"Gilded cape rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9820} -{name:"Marble cape rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9821} -{name:"Magical cape rack", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9822} -{name:"Oak costume box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9823} -{name:"Teak costume box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9824} -{name:"Mahogany cos box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9825} -{name:"Oak armour case", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9826} -{name:"Teak armour case", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9827} -{name:"M'gany arm'r case", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9828} -{name:"Oak magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9829} -{name:"Carved oak magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9830} -{name:"Teak magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9831} -{name:"Carved teak magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9832} -{name:"Mahogany magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9833} -{name:"Gilded magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9834} -{name:"Marble magic wardrobe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9835} -{name:"Oak toy box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9836} -{name:"Teak toy box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9837} -{name:"Mahogany toy box", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9838} -{name:"Oak treasure chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9839} -{name:"Teak treas' chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9840} -{name:"M'gany treas' chest", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9841} -{name:"Costume room", itemDescription:"", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9842} -{name:"Oak cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9843} -{name:"Teak cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9844} -{name:"M'gany cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9845} -{name:"Gilded cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9846} -{name:"Marble cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9847} -{name:"Magical cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9848} -{name:"Oak toy box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9849} -{name:"Teak toy box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9850} -{name:"Mahogany toy box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9851} -{name:"Oak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9852} -{name:"Carved oak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9853} -{name:"Teak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9854} -{name:"Carved teak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9855} -{name:"Mahogany magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9856} -{name:"Gilded magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9857} -{name:"Marble magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9858} -{name:"Oak armour case", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9859} -{name:"Teak armour case", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9860} -{name:"M'gany arm'r case", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9861} -{name:"Oak treasure chest", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9862} -{name:"Teak treas' chest", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9863} -{name:"M'gany treas' chest", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9864} -{name:"Oak costume box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9865} -{name:"Teak costume box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9866} -{name:"Mahogany cos box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9867} -{name:"Oak cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9868} -{name:"Teak cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9869} -{name:"M'gany cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9870} -{name:"Gilded cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9871} -{name:"Marble cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9872} -{name:"Magical cape rack", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9873} -{name:"Oak toy box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9874} -{name:"Teak toy box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9875} -{name:"Mahogany toy box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9876} -{name:"Oak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9877} -{name:"Carved oak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9878} -{name:"Teak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9879} -{name:"Carved teak magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9880} -{name:"Mahogany magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9881} -{name:"Gilded magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9882} -{name:"Marble magic wardrobe", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9883} -{name:"Oak armour case", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9884} -{name:"Teak armour case", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9885} -{name:"M'gany arm'r case", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9886} -{name:"Oak treasure chest", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9887} -{name:"Teak treas' chest", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9888} -{name:"M'gany treas' chest", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9889} -{name:"Oak costume box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9890} -{name:"Teak costume box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9891} -{name:"Mahogany cos box", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9892} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9893} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9894} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9895} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9896} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9897} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9898} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9899} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9900} -{name:"Goutweedy lump", itemDescription:"A lump that at some point might have been a gout tuber.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9901} -{name:"Hardy gout tubers", itemDescription:"A pile of gout tubers suitable for use in mountainous terrain.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9902} -{name:"Farming manual", itemDescription:"Farmer Gricoller's Farming Manual.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9903} -{name:"Sailing book", itemDescription:"A book for sailors.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9904} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9905} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9906} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9907} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9908} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9909} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9910} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9911} -{name:"Ghost buster 500", itemDescription:"See article", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9912} -{name:"White destabiliser", itemDescription:"A white destabiliser for use in a ghost buster.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9913} -{name:"Red destabiliser", itemDescription:"A red destabiliser for use in a ghost buster.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9914} -{name:"Blue destabiliser", itemDescription:"A blue destabiliser for use in a ghost buster.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9915} -{name:"Green destabiliser", itemDescription:"A green destabiliser for use in a ghost buster.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9916} -{name:"Yellow destabiliser", itemDescription:"A yellow destabiliser for use in a ghost buster.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9917} -{name:"Black destabiliser", itemDescription:"A black destabiliser for use in a ghost buster.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9918} -{name:"Evil root", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9919} -{name:"Jack lantern mask", itemDescription:"Better not light it!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9920} -{name:"Skeleton boots", itemDescription:"Skeleton feet.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9921} -{name:"Skeleton gloves", itemDescription:"Some skeletal gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9922} -{name:"Skeleton leggings", itemDescription:"Does my pelvis look big in this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9923} -{name:"Skeleton shirt", itemDescription:"The shirt of a fully body skeleton costume.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9924} -{name:"Skeleton mask", itemDescription:"A scary skeleton mask.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9925} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9926} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9927} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9928} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9929} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9930} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9931} -{name:"Auguste's sapling", itemDescription:"This sapling is ready to be replanted in a tree patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9932} -{name:"Balloon structure", itemDescription:"An incomplete origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9933} -{name:"Origami balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9934} -{name:"Yellow balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9935} -{name:"Blue balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9936} -{name:"Red balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9937} -{name:"Orange balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9938} -{name:"Green balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9939} -{name:"Purple balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9940} -{name:"Pink balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9941} -{name:"Black balloon", itemDescription:"An origami balloon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9942} -{name:"Sandbag", itemDescription:"A bag full of sand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9943} -{name:"Bomber jacket", itemDescription:"For all your flying needs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9944} -{name:"Bomber cap", itemDescription:"The red baron would be jealous.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9945} -{name:"Cap and goggles", itemDescription:"For better flying vision.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9946} -{name:"Old red disk", itemDescription:"A red coloured disk that's seen better days.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9947} -{name:"Hunter cape", itemDescription:"The cape worn by master hunters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9948} -{name:"Hunter cape (t)", itemDescription:"The cape worn by master hunters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9949} -{name:"Hunter hood", itemDescription:"Hunter skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9950} -{name:"Footprint", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9951} -{name:"Imp", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9952} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9953} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9954} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9955} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9956} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9957} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9958} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9959} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9960} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9961} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9962} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9963} -{name:"Kebbit", itemDescription:"A little bigger than usual...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9964} -{name:"Crimson swift", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9965} -{name:"Copper longtail", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9966} -{name:"Cerulean twitch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9967} -{name:"Golden warbler", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9968} -{name:"Tropical wagtail", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9969} -{name:"Butterfly", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9970} -{name:"Butterfly", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9971} -{name:"Butterfly", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9972} -{name:"Butterfly", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9973} -{name:"Giant eagle", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9974} -{name:"Rabbit", itemDescription:"Aww, how cute. ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9975} -{name:"Chinchompa", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9976} -{name:"Red chinchompa", itemDescription:"Even more volatile than its vegetarian counterpart.", shopValue:0, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9977} -{name:"Raw bird meat", itemDescription:"This certainly needs cooking!", shopValue:63, lowAlch:25, highAlch:37, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9978} -{name:"Raw bird meat", itemDescription:"This certainly needs cooking!", shopValue:63, lowAlch:25, highAlch:37, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9979} -{name:"Roast bird meat", itemDescription:"A nicely roasted bird.", shopValue:17, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9980} -{name:"Roast bird meat", itemDescription:"A nicely roasted bird.", shopValue:17, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9981} -{name:"Burnt bird meat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9982} -{name:"Burnt bird meat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9983} -{name:"Skewered bird meat", itemDescription:"This certainly needs cooking!", shopValue:81, lowAlch:25, highAlch:37, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9984} -{name:"Skewered bird meat", itemDescription:"This certainly needs cooking!", shopValue:81, lowAlch:25, highAlch:37, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9985} -{name:"Raw beast meat", itemDescription:"A slab of raw beast meat.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9986} -{name:"Raw beast meat", itemDescription:"A slab of raw beast meat.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9987} -{name:"Roast beast meat", itemDescription:"A delicious looking slab of roast beast.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9988} -{name:"Roast beast meat", itemDescription:"A delicious looking slab of roast beast.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9989} -{name:"Burnt beast meat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9990} -{name:"Burnt beast meat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9991} -{name:"Skewered beast", itemDescription:"Beast meat on a spit.", shopValue:89, lowAlch:35, highAlch:53, isStackable:false, isNoteable:false, weight:35.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9992} -{name:"Skewered beast", itemDescription:"Beast meat on a spit.", shopValue:89, lowAlch:35, highAlch:53, isStackable:true, isNoteable:true, weight:35.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9993} -{name:"Spicy tomato", itemDescription:"A bowl of chopped tomatoes with an extra kick.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9994} -{name:"Spicy tomato", itemDescription:"A bowl of chopped tomatoes with an extra kick.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9995} -{name:"Spicy minced meat", itemDescription:"A bowl of chopped beef with an extra kick.", shopValue:8, lowAlch:3, highAlch:4, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9996} -{name:"Spicy minced meat", itemDescription:"A bowl of chopped beef with an extra kick.", shopValue:8, lowAlch:3, highAlch:4, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9997} -{name:"Hunter potion (4)", itemDescription:"X doses of hunter potion.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9998} -{name:"Hunter potion (4)", itemDescription:"X doses of hunter potion.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:9999} -{name:"Hunter potion (3)", itemDescription:"X doses of hunter potion.", shopValue:12, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10000} -{name:"Hunter potion (3)", itemDescription:"X doses of hunter potion.", shopValue:12, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10001} -{name:"Hunter potion (2)", itemDescription:"X doses of hunter potion.", shopValue:9, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10002} -{name:"Hunter potion (2)", itemDescription:"X doses of hunter potion.", shopValue:9, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10003} -{name:"Hunter potion (1)", itemDescription:"X doses of hunter potion.", shopValue:6, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10004} -{name:"Hunter potion (1)", itemDescription:"X doses of hunter potion.", shopValue:6, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10005} -{name:"Bird snare", itemDescription:"A simple bird catcher./There's something caught in it.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10006} -{name:"Bird snare", itemDescription:"A simple bird catcher./There's something caught in it.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10007} -{name:"Box trap", itemDescription:"If a creature goes inside, then the box should slam shut.", shopValue:38, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10008} -{name:"Box trap", itemDescription:"If a creature goes inside, then the box should slam shut.", shopValue:38, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10009} -{name:"Butterfly net", itemDescription:"For catching butterflies...", shopValue:24, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10010} -{name:"Butterfly net", itemDescription:"For catching butterflies...", shopValue:24, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10011} -{name:"Butterfly jar", itemDescription:"It's got little holes at the top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10012} -{name:"Butterfly jar", itemDescription:"It's got little holes at the top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10013} -{name:"Black warlock", itemDescription:"", shopValue:70, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10014} -{name:"Black warlock", itemDescription:"", shopValue:70, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10015} -{name:"Snowy knight", itemDescription:"", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10016} -{name:"Snowy knight", itemDescription:"", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10017} -{name:"Sapphire glacialis", itemDescription:"", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10018} -{name:"Sapphire glacialis", itemDescription:"", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10019} -{name:"Ruby harvest", itemDescription:"", shopValue:18, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10020} -{name:"Ruby harvest", itemDescription:"", shopValue:18, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10021} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10022} -{name:"Falconer's glove", itemDescription:"A very large, single leather glove", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10023} -{name:"Falconer's glove", itemDescription:"A very large, single leather glove", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10024} -{name:"Magic box", itemDescription:"A magical catching box.", shopValue:720, lowAlch:288, highAlch:432, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10025} -{name:"Magic box", itemDescription:"A magical catching box.", shopValue:720, lowAlch:288, highAlch:432, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10026} -{name:"Imp-in-a-box (2)", itemDescription:"1 kg", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10027} -{name:"Imp-in-a-box (1)", itemDescription:"1 kg", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10028} -{name:"Teasing stick", itemDescription:"Reduces the risk of hand severage when poking large, vicious carnivores.", shopValue:1, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10029} -{name:"Teasing stick", itemDescription:"Reduces the risk of hand severage when poking large, vicious carnivores.", shopValue:1, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10030} -{name:"Rabbit snare", itemDescription:"The snare will tighten around animals passing through.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10031} -{name:"Rabbit snare", itemDescription:"The snare will tighten around animals passing through.", shopValue:18, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10032} -{name:"Chinchompa", itemDescription:"", shopValue:140, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10033} -{name:"Red chinchompa", itemDescription:"Even more volatile than its vegetarian counterpart.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10034} -{name:"Kyatt legs", itemDescription:"These should make me harder to spot in polar areas.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10035} -{name:"Kyatt legs", itemDescription:"These should make me harder to spot in polar areas.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10036} -{name:"Kyatt top", itemDescription:"This should make me harder to spot in polar areas.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10037} -{name:"Kyatt top", itemDescription:"This should make me harder to spot in polar areas.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10038} -{name:"Kyatt hat", itemDescription:"This should make me harder to spot in polar areas.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10039} -{name:"Kyatt hat", itemDescription:"This should make me harder to spot in polar areas.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10040} -{name:"Larupia legs", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10041} -{name:"Larupia legs", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10042} -{name:"Larupia top", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10043} -{name:"Larupia top", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10044} -{name:"Larupia hat", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10045} -{name:"Larupia hat", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10046} -{name:"Graahk legs", itemDescription:"These should make me harder to spot in desert areas.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10047} -{name:"Graahk legs", itemDescription:"These should make me harder to spot in desert areas.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10048} -{name:"Graahk top", itemDescription:"This should make me harder to spot in desert areas.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10049} -{name:"Graahk top", itemDescription:"This should make me harder to spot in desert areas.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10050} -{name:"Graahk headdress", itemDescription:"This should make me harder to spot in desert areas.", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10051} -{name:"Graahk headdress", itemDescription:"This should make me harder to spot in desert areas.", shopValue:750, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10052} -{name:"Wood camo top", itemDescription:"This should make me harder to spot in wooded areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10053} -{name:"Wood camo top", itemDescription:"This should make me harder to spot in wooded areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10054} -{name:"Wood camo legs", itemDescription:"These should make me harder to spot in wooded areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10055} -{name:"Wood camo legs", itemDescription:"These should make me harder to spot in wooded areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10056} -{name:"Jungle camo top", itemDescription:"This should make me harder to spot in jungle areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10057} -{name:"Jungle camo top", itemDescription:"This should make me harder to spot in jungle areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10058} -{name:"Jungle camo legs", itemDescription:"These should make me harder to spot in jungle areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10059} -{name:"Jungle camo legs", itemDescription:"These should make me harder to spot in jungle areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10060} -{name:"Desert camo top", itemDescription:"This should make me harder to spot in desert areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10061} -{name:"Desert camo top", itemDescription:"This should make me harder to spot in desert areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10062} -{name:"Desert camo legs", itemDescription:"These should make me harder to spot in desert areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10063} -{name:"Desert camo legs", itemDescription:"These should make me harder to spot in desert areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10064} -{name:"Polar camo top", itemDescription:"This should make me harder to spot in polar areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10065} -{name:"Polar camo top", itemDescription:"This should make me harder to spot in polar areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10066} -{name:"Polar camo legs", itemDescription:"These should make me harder to spot in polar areas", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10067} -{name:"Polar camo legs", itemDescription:"These should make me harder to spot in polar areas", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10068} -{name:"Spotted cape", itemDescription:"A surprisingly aerodynamic cape.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10069} -{name:"Spotted cape", itemDescription:"A surprisingly aerodynamic cape.", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10070} -{name:"Spottier cape", itemDescription:"A really surprisingly aerodynamic cape.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10071} -{name:"Spottier cape", itemDescription:"A really surprisingly aerodynamic cape.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10072} -{name:"Spotted cape", itemDescription:"A surprisingly aerodynamic cape.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10073} -{name:"Spottier cape", itemDescription:"A really surprisingly aerodynamic cape.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10074} -{name:"Gloves of silence", itemDescription:"Made from dark kebbit fur, these are perfect for tasks of a stealthier nature.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10075} -{name:"Gloves of silence", itemDescription:"Made from dark kebbit fur, these are perfect for tasks of a stealthier nature.", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10076} -{name:"Spiky vambraces", itemDescription:"Attack at your own risk.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10077} -{name:"Spiky vambraces", itemDescription:"Attack at your own risk.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 2.0, 2.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10078} -{name:"Green spiky vambraces", itemDescription:"Made from 100% real dragonhide. Now with added spikiness.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10079} -{name:"Green spiky vambraces", itemDescription:"Made from 100% real dragonhide. Now with added spikiness.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10080} -{name:"Blue spiky vambraces", itemDescription:"Made from 100% real dragonhide. Now with added spikiness.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 9.0, 4.0, 3.0, 5.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10081} -{name:"Blue spiky vambraces", itemDescription:"Made from 100% real dragonhide. Now with added spikiness.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 9.0, 4.0, 3.0, 5.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10082} -{name:"Red spiky vambraces", itemDescription:"Vambraces made from 100% real dragonhide. Now with added spikes.", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 10.0, 5.0, 4.0, 6.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10083} -{name:"Red spiky vambraces", itemDescription:"Vambraces made from 100% real dragonhide. Now with added spikes.", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 10.0, 5.0, 4.0, 6.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10084} -{name:"Black spiky vambraces", itemDescription:"Vambraces made from 100% real dragonhide. Now with added spikiness.", shopValue:4320, lowAlch:1728, highAlch:2592, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10085} -{name:"Black spiky vambraces", itemDescription:"Vambraces made from 100% real dragonhide. Now with added spikiness.", shopValue:4320, lowAlch:1728, highAlch:2592, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10086} -{name:"Stripy feather", itemDescription:"Attractive to other birds and hunters alike.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10087} -{name:"Red feather", itemDescription:"A vivid red feather.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10088} -{name:"Blue feather", itemDescription:"A cool blue feather.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10089} -{name:"Yellow feather", itemDescription:"A bright yellow feather.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10090} -{name:"Orange feather", itemDescription:"A fairly plain feather.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10091} -{name:"Ferret", itemDescription:"", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10092} -{name:"Tatty larupia fur", itemDescription:"It's a shabby-looking larupia fur.", shopValue:72, lowAlch:28, highAlch:43, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10093} -{name:"Tatty larupia fur", itemDescription:"It's a shabby-looking larupia fur.", shopValue:72, lowAlch:28, highAlch:43, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10094} -{name:"Larupia fur", itemDescription:"It's a perfect-looking larupia fur.", shopValue:96, lowAlch:38, highAlch:57, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10095} -{name:"Larupia fur", itemDescription:"It's a perfect-looking larupia fur.", shopValue:96, lowAlch:38, highAlch:57, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10096} -{name:"Tatty graahk fur", itemDescription:"It's a shabby-looking graahk fur.", shopValue:108, lowAlch:43, highAlch:64, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10097} -{name:"Tatty graahk fur", itemDescription:"It's a shabby-looking graahk fur.", shopValue:108, lowAlch:43, highAlch:64, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10098} -{name:"Graahk fur", itemDescription:"It's a perfect-looking graahk fur.", shopValue:144, lowAlch:57, highAlch:86, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10099} -{name:"Graahk fur", itemDescription:"It's a perfect-looking graahk fur.", shopValue:144, lowAlch:57, highAlch:86, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10100} -{name:"Tatty kyatt fur", itemDescription:"It's a shabby-looking kyatt fur.", shopValue:144, lowAlch:57, highAlch:86, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10101} -{name:"Tatty kyatt fur", itemDescription:"It's a shabby-looking kyatt fur.", shopValue:144, lowAlch:57, highAlch:86, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10102} -{name:"Kyatt fur", itemDescription:"It's a perfect-looking kyatt fur.", shopValue:192, lowAlch:76, highAlch:115, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10103} -{name:"Kyatt fur", itemDescription:"It's a perfect-looking kyatt fur.", shopValue:192, lowAlch:76, highAlch:115, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10104} -{name:"Kebbit spike", itemDescription:"These bone spikes are both very tough and very sharp.", shopValue:90, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10105} -{name:"Kebbit spike", itemDescription:"These bone spikes are both very tough and very sharp.", shopValue:90, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10106} -{name:"Long kebbit spike", itemDescription:"These bone spikes are both very tough and very sharp.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10107} -{name:"Long kebbit spike", itemDescription:"These bone spikes are both very tough and very sharp.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10108} -{name:"Kebbit teeth", itemDescription:"A kebbit-sized set of dentures.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10109} -{name:"Kebbit teeth", itemDescription:"A kebbit-sized set of dentures.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10110} -{name:"Kebbit teeth dust", itemDescription:"Previously a kebbit-sized set of dentures.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10111} -{name:"Kebbit teeth dust", itemDescription:"Previously a kebbit-sized set of dentures.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10112} -{name:"Kebbit claws", itemDescription:"More menacing when attached to the owner.", shopValue:43, lowAlch:17, highAlch:25, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10113} -{name:"Kebbit claws", itemDescription:"More menacing when attached to the owner.", shopValue:43, lowAlch:17, highAlch:25, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10114} -{name:"Dark kebbit fur", itemDescription:"Sleek, silent, and furry.", shopValue:210, lowAlch:84, highAlch:126, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10115} -{name:"Dark kebbit fur", itemDescription:"Sleek, silent, and furry.", shopValue:210, lowAlch:84, highAlch:126, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10116} -{name:"Polar kebbit fur", itemDescription:"A thick fur for a cold climate.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10117} -{name:"Polar kebbit fur", itemDescription:"A thick fur for a cold climate.", shopValue:12, lowAlch:4, highAlch:7, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10118} -{name:"Feldip weasel fur", itemDescription:"Not actually from a weasel, but it is, at least, furry.", shopValue:16, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10119} -{name:"Feldip weasel fur", itemDescription:"Not actually from a weasel, but it is, at least, furry.", shopValue:16, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10120} -{name:"Common kebbit fur", itemDescription:"Common fur from a common kebbit.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10121} -{name:"Common kebbit fur", itemDescription:"Common fur from a common kebbit.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10122} -{name:"Desert devil fur", itemDescription:"Sandy coloured kebbit fur.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10123} -{name:"Desert devil fur", itemDescription:"Sandy coloured kebbit fur.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10124} -{name:"Spotted kebbit fur", itemDescription:"Maybe this is why people think furry dice make you go faster.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10125} -{name:"Spotted kebbit fur", itemDescription:"Maybe this is why people think furry dice make you go faster.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10126} -{name:"Dashing kebbit fur", itemDescription:"Nature's equivalent of go-faster stripes.", shopValue:270, lowAlch:108, highAlch:162, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10127} -{name:"Dashing kebbit fur", itemDescription:"Nature's equivalent of go-faster stripes.", shopValue:270, lowAlch:108, highAlch:162, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10128} -{name:"Barb-tail harpoon", itemDescription:"A mighty Hunter weapon. One previous owner.", shopValue:36, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:13.0, bonuses:[9.0, 4.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10129} -{name:"Barb-tail harpoon", itemDescription:"A mighty Hunter weapon. One previous owner.", shopValue:36, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:13.0, bonuses:[9.0, 4.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10130} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10131} -{name:"Strung rabbit foot", itemDescription:"Not so lucky for the rabbit.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10132} -{name:"Strung rabbit foot", itemDescription:"Not so lucky for the rabbit.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10133} -{name:"Rabbit foot", itemDescription:"This could be put on a string and worn for luck.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10134} -{name:"Rabbit foot", itemDescription:"This could be put on a string and worn for luck.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10135} -{name:"Rainbow fish", itemDescription:"Well, this would certainly add some colour to a meal.", shopValue:120, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10136} -{name:"Rainbow fish", itemDescription:"Well, this would certainly add some colour to a meal.", shopValue:120, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10137} -{name:"Raw rainbow fish", itemDescription:"A colourful fish, attracted to colourful flies.", shopValue:120, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10138} -{name:"Raw rainbow fish", itemDescription:"A colourful fish, attracted to colourful flies.", shopValue:120, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10139} -{name:"Burnt rainbow fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10140} -{name:"Burnt rainbow fish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10141} -{name:"Guam tar", itemDescription:"A thick, foul-smelling, tar-like substance with a green tinge", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10142} -{name:"Marrentill tar", itemDescription:"A thick, foul-smelling, tar-like substance with an orange tinge.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10143} -{name:"Tarromin tar", itemDescription:"A thick, foul-smelling, tar-like substance with a red tinge.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10144} -{name:"Harralander tar", itemDescription:"A dark, thick, foul-smelling, tar-like substance.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10145} -{name:"Orange salamander", itemDescription:"Slightly slimy, but kind of cute.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 19.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10146} -{name:"Red salamander", itemDescription:"Slightly slimy but certainly striking.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 37.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10147} -{name:"Black salamander", itemDescription:"Slightly slimy and somewhat menacing.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 59.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10148} -{name:"Swamp lizard", itemDescription:"A very slimy and generally disgusting green lizard.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 10.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10149} -{name:"Noose wand", itemDescription:"A noose on a stick.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10150} -{name:"Noose wand", itemDescription:"A noose on a stick.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10151} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10152} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10153} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10154} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10155} -{name:"Hunters' crossbow", itemDescription:"A weapon made of bone and wood.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10156} -{name:"Hunters' crossbow", itemDescription:"A weapon made of bone and wood.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10157} -{name:"Kebbit bolts", itemDescription:"Bolts made from the spikes of a prickly kebbit.", shopValue:18, lowAlch:6, highAlch:10, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10158} -{name:"Long kebbit bolts", itemDescription:"Bolts made from the spikes of a razor-backed kebbit.", shopValue:31, lowAlch:12, highAlch:18, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10159} -{name:"Orange salamander", itemDescription:"Slightly slimy, but kind of cute.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 19.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 22.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10160} -{name:"Red salamander", itemDescription:"Slightly slimy but certainly striking.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 37.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 31.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10161} -{name:"Black salamander", itemDescription:"Slightly slimy and somewhat menacing.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 59.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 49.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10162} -{name:"Swamp lizard", itemDescription:"A very slimy and generally disgusting green lizard.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 10.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 16.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10163} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10164} -{name:"More...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10165} -{name:"Back...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10166} -{name:"Eagle feather", itemDescription:"Probably a bit too big for fly fishing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10167} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10168} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10169} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10170} -{name:"Eagle cape", itemDescription:"A cape made from giant eagle feathers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10171} -{name:"Fake beak", itemDescription:"A cheaply made fake beak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10172} -{name:"Bird book", itemDescription:"The title reads 'William Oddity's Guide to the Avian.'", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10173} -{name:"Metal feather", itemDescription:"A small feather made out of some sort of metal. The detail is exquisite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10174} -{name:"Golden feather", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10175} -{name:"Silver feather", itemDescription:"An intricate feather crafted from a silver-coloured metal of some sort.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10176} -{name:"Bronze feather", itemDescription:"An intricate feather crafted from a bronze-coloured metal of some sort.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10177} -{name:"Odd bird seed", itemDescription:"It looks like bird seed, but it's not quite right somehow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10178} -{name:"Feathered journal", itemDescription:"There's a feather glued to the front. Property of Arthur Artimus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10179} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10180} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10181} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10182} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10183} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10184} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10185} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10186} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10187} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10188} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10189} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10190} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10191} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10192} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10193} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10194} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10195} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10196} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10197} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10198} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10199} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10200} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10201} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10202} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10203} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10204} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10205} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10206} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10207} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10208} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10209} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10210} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10211} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10212} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10213} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10214} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10215} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10216} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10217} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10218} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10219} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10220} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10221} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10222} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10223} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10224} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10225} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10226} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10227} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10228} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10229} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10230} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10231} -{name:"Clue scroll (easy)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10232} -{name:"Casket (easy)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10233} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10234} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10235} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10236} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10237} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10238} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10239} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10240} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10241} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10242} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10243} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10244} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10245} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10246} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10247} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10248} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10249} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10250} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10251} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10252} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10253} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10254} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10255} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10256} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10257} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10258} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10259} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10260} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10261} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10262} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10263} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10264} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10265} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10266} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10267} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10268} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10269} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10270} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10271} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10272} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10273} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10274} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10275} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10276} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10277} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10278} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10279} -{name:"Willow composite bow", itemDescription:"A powerful bow made from willow.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10280} -{name:"Willow composite bow", itemDescription:"A powerful bow made from willow.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10281} -{name:"Yew composite bow", itemDescription:"A powerful bow made from yew wood.", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10282} -{name:"Yew composite bow", itemDescription:"A powerful bow made from yew wood.", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10283} -{name:"Magic composite bow", itemDescription:"A powerful bow made from magic wood.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10284} -{name:"Magic composite bow", itemDescription:"A powerful bow made from magic wood.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10285} -{name:"Rune helm (h1)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10286} -{name:"Rune helm (h1)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10287} -{name:"Rune helm (h2)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10288} -{name:"Rune helm (h2)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10289} -{name:"Rune helm (h3)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10290} -{name:"Rune helm (h3)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10291} -{name:"Rune helm (h4)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10292} -{name:"Rune helm (h4)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10293} -{name:"Rune helm (h5)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10294} -{name:"Rune helm (h5)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10295} -{name:"Adamant helm (h1)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10296} -{name:"Adamant helm (h1)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10297} -{name:"Adamant helm (h2)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10298} -{name:"Adamant helm (h2)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10299} -{name:"Adamant helm (h3)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10300} -{name:"Adamant helm (h3)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10301} -{name:"Adamant helm (h4)", itemDescription:"An Adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10302} -{name:"Adamant helm (h4)", itemDescription:"An Adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10303} -{name:"Adamant helm (h5)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10304} -{name:"Adamant helm (h5)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10305} -{name:"Black helm (h1)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10306} -{name:"Black helm (h1)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10307} -{name:"Black helm (h2)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10308} -{name:"Black helm (h2)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10309} -{name:"Black helm (h3)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10310} -{name:"Black helm (h3)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10311} -{name:"Black helm (h4)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10312} -{name:"Black helm (h4)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10313} -{name:"Black helm (h5)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10314} -{name:"Black helm (h5)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10315} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10316} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10317} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10318} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10319} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10320} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10321} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10322} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10323} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10324} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10325} -{name:"Purple firelighter", itemDescription:"Makes firelighting a lot easier.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10326} -{name:"White firelighter", itemDescription:"Makes firelighting a lot easier.", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10327} -{name:"White logs", itemDescription:"A number of chemical covered wooden logs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10328} -{name:"Purple logs", itemDescription:"A number of chemical covered wooden logs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10329} -{name:"Third-age range top", itemDescription:"Ancient range protection crafted from white dragonhide.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 60.0, 55.0, 52.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10330} -{name:"Third-age range top", itemDescription:"Ancient range protection crafted from white dragonhide.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 60.0, 55.0, 52.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10331} -{name:"Third-age range legs", itemDescription:"Fabulously ancient range protection crafted from white dragonhide.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 30.0, 31.0, 25.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10332} -{name:"Third-age range legs", itemDescription:"Fabulously ancient range protection crafted from white dragonhide.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 30.0, 31.0, 25.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10333} -{name:"Third-age range coif", itemDescription:"Ancient range protection crafted from white dragonhide.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -2.0, 9.0, 4.0, 7.0, 10.0, 5.0, 8.0, 12.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10334} -{name:"Third-age range coif", itemDescription:"Ancient range protection crafted from white dragonhide.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -2.0, 9.0, 4.0, 7.0, 10.0, 5.0, 8.0, 12.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10335} -{name:"Third-age vambraces", itemDescription:"Fabulously ancient range protection crafted from white dragonhide.", shopValue:15000, lowAlch:86000, highAlch:129000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -11.0, 11.0, 6.0, 5.0, 7.0, 9.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10336} -{name:"Third-age vambraces", itemDescription:"Fabulously ancient range protection crafted from white dragonhide.", shopValue:15000, lowAlch:86000, highAlch:129000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -11.0, 11.0, 6.0, 5.0, 7.0, 9.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10337} -{name:"Third-age robe top", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 24.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10338} -{name:"Third-age robe top", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 24.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10339} -{name:"Third-age robe", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10340} -{name:"Third-age robe", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10341} -{name:"Third-age mage hat", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 12.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10342} -{name:"Third-age mage hat", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 12.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10343} -{name:"Third-age amulet", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10344} -{name:"Third-age amulet", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10345} -{name:"Third-age platelegs", itemDescription:"Ancient armour beaten from magical silver.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -25.0, -2.0, 78.0, 76.0, 83.0, -5.0, 75.0, 25.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10346} -{name:"Third-age platelegs", itemDescription:"Ancient armour beaten from magical silver.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -25.0, -2.0, 78.0, 76.0, 83.0, -5.0, 75.0, 25.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10347} -{name:"Third-age platebody", itemDescription:"Ancient armour beaten from magical silver.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -20.0, 0.0, 96.0, 108.0, 113.0, -4.0, 97.0, 52.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10348} -{name:"Third-age platebody", itemDescription:"Ancient armour beaten from magical silver.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -20.0, 0.0, 96.0, 108.0, 113.0, -4.0, 97.0, 52.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10349} -{name:"Third-age full helmet", itemDescription:"Ancient armour beaten from magical silver.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, -2.0, 47.0, 49.0, 43.0, -3.0, 48.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10350} -{name:"Third-age full helmet", itemDescription:"Ancient armour beaten from magical silver.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, -2.0, 47.0, 49.0, 43.0, -3.0, 48.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10351} -{name:"Third-age kiteshield", itemDescription:"Ancient armour beaten from magical silver.", shopValue:180000, lowAlch:72000, highAlch:108000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -4.0, 63.0, 65.0, 61.0, -3.0, 63.0, 60.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10352} -{name:"Third-age kiteshield", itemDescription:"Ancient armour beaten from magical silver.", shopValue:180000, lowAlch:72000, highAlch:108000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -4.0, 63.0, 65.0, 61.0, -3.0, 63.0, 60.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10353} -{name:"Amulet of glory (t4)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10354} -{name:"Amulet of glory (t4)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10355} -{name:"Amulet of glory (t3)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10356} -{name:"Amulet of glory (t3)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10357} -{name:"Amulet of glory (t2)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10358} -{name:"Amulet of glory (t2)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10359} -{name:"Amulet of glory (t1)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10360} -{name:"Amulet of glory (t1)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10361} -{name:"Amulet of glory (t)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10362} -{name:"Amulet of glory (t)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10363} -{name:"Strength amulet (t)", itemDescription:"An enchanted ruby amulet with a nice trim.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10364} -{name:"Strength amulet (t)", itemDescription:"An enchanted ruby amulet with a nice trim.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10365} -{name:"Amulet of magic (t)", itemDescription:"An enchanted sapphire amulet of magic.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10366} -{name:"Amulet of magic (t)", itemDescription:"An enchanted sapphire amulet of magic.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10367} -{name:"Zamorak vambraces", itemDescription:"Zamorak blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10368} -{name:"Zamorak vambraces", itemDescription:"Zamorak blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10369} -{name:"Zamorak body", itemDescription:"Zamorak blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10370} -{name:"Zamorak body", itemDescription:"Zamorak blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10371} -{name:"Zamorak chaps", itemDescription:"Zamorak blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10372} -{name:"Zamorak chaps", itemDescription:"Zamorak blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10373} -{name:"Zamorak coif", itemDescription:"Zamorak blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10374} -{name:"Zamorak coif", itemDescription:"Zamorak blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10375} -{name:"Guthix vambraces", itemDescription:"Guthix blessed dragonhide vambraces.", shopValue:6000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10376} -{name:"Guthix vambraces", itemDescription:"Guthix blessed dragonhide vambraces.", shopValue:6000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10377} -{name:"Guthix body", itemDescription:"Guthix blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10378} -{name:"Guthix body", itemDescription:"Guthix blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10379} -{name:"Guthix chaps", itemDescription:"Guthix blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10380} -{name:"Guthix chaps", itemDescription:"Guthix blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10381} -{name:"Guthix coif", itemDescription:"Guthix blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:85.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10382} -{name:"Guthix coif", itemDescription:"Guthix blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:85.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10383} -{name:"Saradomin vambraces", itemDescription:"Saradomin blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10384} -{name:"Saradomin vambraces", itemDescription:"Saradomin blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10385} -{name:"Saradomin body", itemDescription:"Saradomin blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10386} -{name:"Saradomin body", itemDescription:"Saradomin blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10387} -{name:"Saradomin chaps", itemDescription:"Saradomin blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10388} -{name:"Saradomin chaps", itemDescription:"Saradomin blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10389} -{name:"Saradomin coif", itemDescription:"Saradomin blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10390} -{name:"Saradomin coif", itemDescription:"Saradomin blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10391} -{name:"A powdered wig", itemDescription:"A big do about nothing.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10392} -{name:"A powdered wig", itemDescription:"A big do about nothing.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10393} -{name:"Flared trousers", itemDescription:"These'll help me stay alive.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10394} -{name:"Flared trousers", itemDescription:"These'll help me stay alive.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10395} -{name:"Pantaloons", itemDescription:"Alas, someone has slashed my pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10396} -{name:"Pantaloons", itemDescription:"Alas, someone has slashed my pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10397} -{name:"Sleeping cap", itemDescription:"A cap for wearing whil...zzzzzzzzz", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10398} -{name:"Sleeping cap", itemDescription:"A cap for wearing whil...zzzzzzzzz", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10399} -{name:"Black elegant shirt", itemDescription:"A well made elegant mans' black shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10400} -{name:"Black elegant shirt", itemDescription:"A well made elegant mans' black shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10401} -{name:"Black elegant legs", itemDescription:"A rather elegant black pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10402} -{name:"Black elegant legs", itemDescription:"A rather elegant black pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10403} -{name:"Red elegant shirt", itemDescription:"A well made elegant men's red shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10404} -{name:"Red elegant shirt", itemDescription:"A well made elegant men's red shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10405} -{name:"Red elegant legs", itemDescription:"A rather elegant red pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10406} -{name:"Red elegant legs", itemDescription:"A rather elegant red pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10407} -{name:"Blue elegant shirt", itemDescription:"A well made elegant mans' blue shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10408} -{name:"Blue elegant shirt", itemDescription:"A well made elegant mans' blue shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10409} -{name:"Blue elegant legs", itemDescription:"A rather elegant pair of men's blue pantaloons", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10410} -{name:"Blue elegant legs", itemDescription:"A rather elegant pair of men's blue pantaloons", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10411} -{name:"Green elegant shirt", itemDescription:"A well made elegant men's green shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10412} -{name:"Green elegant shirt", itemDescription:"A well made elegant men's green shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10413} -{name:"Green elegant legs", itemDescription:"A rather elegant green pair of men's pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10414} -{name:"Green elegant legs", itemDescription:"A rather elegant green pair of men's pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10415} -{name:"Purple elegant shirt", itemDescription:"A well made elegant men's purple shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10416} -{name:"Purple elegant shirt", itemDescription:"A well made elegant men's purple shirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10417} -{name:"Purple elegant legs", itemDescription:"A rather elegant purple pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10418} -{name:"Purple elegant legs", itemDescription:"A rather elegant purple pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10419} -{name:"White elegant blouse", itemDescription:"A well made ladies' elegant white blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10420} -{name:"White elegant blouse", itemDescription:"A well made ladies' elegant white blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10421} -{name:"White elegant skirt", itemDescription:"A rather elegant white skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10422} -{name:"White elegant skirt", itemDescription:"A rather elegant white skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10423} -{name:"Red elegant blouse", itemDescription:"A well made elegant ladies' red blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10424} -{name:"Red elegant blouse", itemDescription:"A well made elegant ladies' red blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10425} -{name:"Red elegant skirt", itemDescription:"A rather elegant Red skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10426} -{name:"Red elegant skirt", itemDescription:"A rather elegant Red skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10427} -{name:"Blue elegant blouse", itemDescription:"A well made ladies' elegant blue blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10428} -{name:"Blue elegant blouse", itemDescription:"A well made ladies' elegant blue blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10429} -{name:"Blue elegant skirt", itemDescription:"A rather elegant blue skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10430} -{name:"Blue elegant skirt", itemDescription:"A rather elegant blue skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10431} -{name:"Green elegant blouse", itemDescription:"A well made ladies' elegant green blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10432} -{name:"Green elegant blouse", itemDescription:"A well made ladies' elegant green blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10433} -{name:"Green elegant skirt", itemDescription:"A rather elegant green skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10434} -{name:"Green elegant skirt", itemDescription:"A rather elegant green skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10435} -{name:"Purple elegant blouse", itemDescription:"A well made elegant ladies' purple blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10436} -{name:"Purple elegant blouse", itemDescription:"A well made elegant ladies' purple blouse.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10437} -{name:"Purple elegant skirt", itemDescription:"A rather elegant purple skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10438} -{name:"Purple elegant skirt", itemDescription:"A rather elegant purple skirt.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10439} -{name:"Saradomin crozier", itemDescription:"A Saradomin crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:20.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10440} -{name:"Saradomin crozier", itemDescription:"A Saradomin crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:20.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10441} -{name:"Guthix crozier", itemDescription:"A Guthix crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10442} -{name:"Guthix crozier", itemDescription:"A Guthix crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10443} -{name:"Zamorak crozier", itemDescription:"A Zamorak crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:20.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10444} -{name:"Zamorak crozier", itemDescription:"A Zamorak crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:20.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10445} -{name:"Saradomin cloak", itemDescription:"A Saradomin cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10446} -{name:"Saradomin cloak", itemDescription:"A Saradomin cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10447} -{name:"Guthix cloak", itemDescription:"A Guthix cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10448} -{name:"Guthix cloak", itemDescription:"A Guthix cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10449} -{name:"Zamorak cloak", itemDescription:"A Zamorak cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10450} -{name:"Zamorak cloak", itemDescription:"A Zamorak cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10451} -{name:"Saradomin mitre", itemDescription:"A Saradomin mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10452} -{name:"Saradomin mitre", itemDescription:"A Saradomin mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10453} -{name:"Guthix mitre", itemDescription:"A Guthix mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10454} -{name:"Guthix mitre", itemDescription:"A Guthix mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10455} -{name:"Zamorak mitre", itemDescription:"A Zamorak mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10456} -{name:"Zamorak mitre", itemDescription:"A Zamorak mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10457} -{name:"Saradomin robe top", itemDescription:"Blessed vestments of Saradomin.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10458} -{name:"Saradomin robe top", itemDescription:"Blessed vestments of Saradomin.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10459} -{name:"Zamorak robe top", itemDescription:"Zamorak Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10460} -{name:"Zamorak robe top", itemDescription:"Zamorak Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10461} -{name:"Guthix robe top", itemDescription:"Blessed vestments of Guthix.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10462} -{name:"Guthix robe top", itemDescription:"Blessed vestments of Guthix.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10463} -{name:"Saradomin robe legs", itemDescription:"Leggings from the Saradomin Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10464} -{name:"Saradomin robe legs", itemDescription:"Leggings from the Saradomin Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10465} -{name:"Guthix robe legs", itemDescription:"Leggings from the Guthix Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10466} -{name:"Guthix robe legs", itemDescription:"Leggings from the Guthix Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10467} -{name:"Zamorak robe legs", itemDescription:"Legs of the Zamorak Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10468} -{name:"Zamorak robe legs", itemDescription:"Legs of the Zamorak Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10469} -{name:"Saradomin stole", itemDescription:"A Saradomin stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10470} -{name:"Saradomin stole", itemDescription:"A Saradomin stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10471} -{name:"Guthix stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10472} -{name:"Guthix stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10473} -{name:"Zamorak stole", itemDescription:"A Zamorak stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10474} -{name:"Zamorak stole", itemDescription:"A Zamorak stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10475} -{name:"Purple sweets", itemDescription:"Remember to brush after eating!", shopValue:15, lowAlch:6, highAlch:9, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10476} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10477} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10478} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10479} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10480} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10481} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10482} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10483} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10484} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10485} -{name:"Empty sack", itemDescription:"An empty sack.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10486} -{name:"Undead chicken", itemDescription:"Yup, definitely a chicken...an undead chicken.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10487} -{name:"Selected iron", itemDescription:"An iron bar supplied by an insane old crone.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10488} -{name:"Bar magnet", itemDescription:"A magnet designed for undead chicken use.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10489} -{name:"Undead twigs", itemDescription:"Were they trying to escape just then?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10490} -{name:"Blessed hatchet", itemDescription:"It radiates purity but can still lop off heads.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:11.0, bonuses:[-2.0, 12.0, 10.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10491} -{name:"Research notes", itemDescription:"These make no sense at all.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10492} -{name:"Translated notes", itemDescription:"They still make no sense, but look more meaningful now.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10493} -{name:"A pattern", itemDescription:"Attach tab A to button B then fold along line C...", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10494} -{name:"A container", itemDescription:"A desirable residence for discerning, undead chickens.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10495} -{name:"Polished buttons", itemDescription:"Shiny!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10496} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10497} -{name:"Ava's attractor", itemDescription:"A bagged chicken ready to serve you, magnet in claw.", shopValue:769, lowAlch:307, highAlch:461, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10498} -{name:"Ava's accumulator", itemDescription:"A superior bagged chicken ready to serve you, magnet in claw.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 1.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10499} -{name:"Crone-made amulet", itemDescription:"Allows the ghost farmer to talk to Alice - a breakthrough!", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10500} -{name:"Snowball", itemDescription:"Made from snow. / It's a ball of snow! Uncanny. / How did this not melt in the box?", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10501} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10502} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10503} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10504} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10505} -{name:"Gublinch shards", itemDescription:"A gublinch frozen and crumbled into shards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10506} -{name:"Reindeer hat", itemDescription:"A reindeer hat and a matching flashing nose.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10507} -{name:"Wintumber tree", itemDescription:"A wintumber tree for your player-owned house.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10508} -{name:"Snowball", itemDescription:"Made from snow. / It's a ball of snow! Uncanny. / How did this not melt in the box?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10509} -{name:"Snowball", itemDescription:"Made from snow. / It's a ball of snow! Uncanny. / How did this not melt in the box?", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10510} -{name:"Zanaris choir", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10511} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10512} -{name:"Crackers", itemDescription:"Some dry crackers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10513} -{name:"Tofu", itemDescription:"A block of tofu.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10514} -{name:"Worms", itemDescription:"Some meaty worms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10515} -{name:"Attacker horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10516} -{name:"Attacker horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10517} -{name:"Attacker horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10518} -{name:"Attacker horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10519} -{name:"Attacker horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10520} -{name:"Collection bag", itemDescription:"A very small/small/medium-sized/large/very large collection bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10521} -{name:"Collection bag", itemDescription:"A very small/small/medium-sized/large/very large collection bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10522} -{name:"Collection bag", itemDescription:"A very small/small/medium-sized/large/very large collection bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10523} -{name:"Collection bag", itemDescription:"A very small/small/medium-sized/large/very large collection bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10524} -{name:"Collection bag", itemDescription:"A very small/small/medium-sized/large/very large collection bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10525} -{name:"Healer horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10526} -{name:"Healer horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10527} -{name:"Healer horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10528} -{name:"Healer horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10529} -{name:"Healer horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10530} -{name:"Green egg", itemDescription:"Used to poison your enemies!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10531} -{name:"Red egg", itemDescription:"Will explode when fired.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10532} -{name:"Blue egg", itemDescription:"Stun your foes!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10533} -{name:"Yellow egg", itemDescription:"A yellow egg; it needs passing to the Healer to be poisoned!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10534} -{name:"Poisoned egg", itemDescription:"A poisoned yellow egg; pass it to the Attacker for spikes to be added!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10535} -{name:"Spiked/pois. egg", itemDescription:"A poisoned, spiky egg; pass to the defender for heating!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10536} -{name:"Omega egg", itemDescription:"A heated, poisoned, spiky egg; pass to the Collector for loading.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10537} -{name:"Defender horn", itemDescription:"A horn to call others.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10538} -{name:"Poisoned tofu", itemDescription:"Some poisoned tofu.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10539} -{name:"Poisoned worms", itemDescription:"Some poisoned worms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10540} -{name:"Poisoned meat", itemDescription:"A poisoned leg of meat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10541} -{name:"Healing vial (4)", itemDescription:"A full healing vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10542} -{name:"Healing vial (3)", itemDescription:"A full healing vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10543} -{name:"Healing vial (2)", itemDescription:"A full healing vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10544} -{name:"Healing vial (1)", itemDescription:"A full healing vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10545} -{name:"Healing vial", itemDescription:"A full healing vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10546} -{name:"Healer hat", itemDescription:"A Penance Healer hat.", shopValue:19200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-5.0, -5.0, -5.0, 7.0, -5.0, 6.0, 8.0, 10.0, 8.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10547} -{name:"Fighter hat", itemDescription:"A Penance Fighter hat.", shopValue:19200, lowAlch:7680, highAlch:11520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[5.0, 5.0, 5.0, -7.0, -7.0, 30.0, 32.0, 28.0, -3.0, 28.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10548} -{name:"Runner hat", itemDescription:"A Penance Runner hat.", shopValue:19200, lowAlch:7680, highAlch:11520, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 32.0, 27.0, 1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10549} -{name:"Ranger hat", itemDescription:"A Penance ranger hat.", shopValue:19200, lowAlch:7680, highAlch:11520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 7.0, 7.0, 10.0, 11.0, 5.0, 9.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10550} -{name:"Fighter torso", itemDescription:"Penance Fighter torso armour.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:40.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 66.0, 85.0, 62.0, -6.0, 67.0, 40.0, 3.0, 0.0, 6.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10551} -{name:"Runner boots", itemDescription:"Boots made from a Penance Runner.", shopValue:12500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 12.0, 13.0, 14.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10552} -{name:"Penance gloves", itemDescription:"These gloves seem unbelievably light!", shopValue:9500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10553} -{name:"Penance gloves", itemDescription:"These gloves seem unbelievably light!", shopValue:9500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10554} -{name:"Penance skirt", itemDescription:"A skirt made from the skin of a Penance Ranger.", shopValue:64000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -10.0, 16.0, 26.0, 21.0, 28.0, 19.0, 27.0, 15.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10555} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10556} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10557} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10558} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10559} -{name:"Collector horn", itemDescription:"A horn for communication with your team members.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10560} -{name:"Spikes", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10561} -{name:"Queen help book", itemDescription:"A book about the Barbarian Assault Queen.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10562} -{name:"No eggs", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10563} -{name:"Granite body", itemDescription:"Provides excellent protection.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:226.0, bonuses:[0.0, 0.0, 0.0, -22.0, -5.0, 87.0, 84.0, 79.0, -6.0, 97.0, 45.0, 4.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10564} -{name:"Granite body", itemDescription:"Provides excellent protection.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:226.0, bonuses:[0.0, 0.0, 0.0, -22.0, -5.0, 87.0, 84.0, 79.0, -6.0, 97.0, 45.0, 4.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10565} -{name:"Fire cape", itemDescription:"A cape of fire.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 0.0, 0.0, 0.0, 4.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10566} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10567} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10568} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10569} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10570} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10571} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10572} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10573} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10574} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10575} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10576} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10577} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10578} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10579} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10580} -{name:"Keris", itemDescription:"(Normal) A mystical-feeling dagger. (Poisoned) The twisted blade is covered with a nasty poison.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 20.0, -10.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10581} -{name:"Keris (p)", itemDescription:"(Normal) A mystical-feeling dagger. (Poisoned) The twisted blade is covered with a nasty poison.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 20.0, -10.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10582} -{name:"Keris (p+)", itemDescription:"(Normal) A mystical-feeling dagger. (Poisoned) The twisted blade is covered with a nasty poison.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 20.0, -10.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10583} -{name:"Keris (p++)", itemDescription:"(Normal) A mystical-feeling dagger. (Poisoned) The twisted blade is covered with a nasty poison.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 20.0, -10.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10584} -{name:"Parchment", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10585} -{name:"Combat lamp", itemDescription:"A mystical lamp, engraved with scenes of carnage.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10586} -{name:"Tarn's diary", itemDescription:"Tarn Razorlor's diary.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10587} -{name:"Salve amulet (e)", itemDescription:"Increases the wearer's Strength and Attack by 20% when fighting the undead.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 3.0, 3.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10588} -{name:"Granite helm", itemDescription:"A stone helmet.", shopValue:46000, lowAlch:18400, highAlch:27600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -9.0, -7.0, 31.0, 33.0, 29.0, -1.0, 39.0, 9.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10589} -{name:"Granite helm", itemDescription:"A stone helmet.", shopValue:46000, lowAlch:18400, highAlch:27600, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -9.0, -7.0, 31.0, 33.0, 29.0, -1.0, 39.0, 9.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10590} -{name:"Terror dog", itemDescription:"A terrifying dog beast.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10591} -{name:"Penguin bongos", itemDescription:"Small drums.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cowbells", itemDescription:"Every song needs a cowbell.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10593} -{name:"Clockwork book", itemDescription:"A book about clockwork mechanisms.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10594} -{name:"Clockwork suit", itemDescription:"A clockwork penguin suit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10595} -{name:"Clockwork suit", itemDescription:"A clockwork penguin suit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10596} -{name:"Mission report", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10597} -{name:"Mission report", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10598} -{name:"Mission report", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10599} -{name:"Kgp id card", itemDescription:"So you can be a penguin too!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10600} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10601} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10602} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10603} -{name:"Skeletal helm", itemDescription:"Make your foes cower by wearing a skull as a helmet!", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 2.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10604} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10605} -{name:"Splitbark helm", itemDescription:"A wooden helmet.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10606} -{name:"Ghostly boots", itemDescription:"They seem to be not quite of this world...", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10607} -{name:"Moonclan hat", itemDescription:"A mystical hat.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, -5.0, 3.0, 3.0, 3.0, 3.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10608} -{name:"Lunar helm", itemDescription:"A mystical helmet.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 8.0, 7.0, 10.0, 2.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10609} -{name:"Basic decorative platebody", itemDescription:"A platebody with simple and basic decoration.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 32.0, 31.0, 24.0, -6.0, 31.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10610} -{name:"Void knight top", itemDescription:"Torso armour from the order of the Void Knights.", shopValue:0, lowAlch:19200, highAlch:28800, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 45.0, 45.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10611} -{name:"Rogue mask", itemDescription:"Black banded leather armour, a rogue's dream!", shopValue:375, lowAlch:150, highAlch:225, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10612} -{name:"Rock-shell helm", itemDescription:"Protective headwear made from crabs. Better than it sounds.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 6.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10613} -{name:"Spined helm", itemDescription:"A helm fit for any Fremennik ranger.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, -6.0, -6.0, -6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10614} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10615} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10616} -{name:"Tribal mask", itemDescription:"A ceremonial wooden mask.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10617} -{name:"White platebody", itemDescription:"Provides excellent protection.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10618} -{name:"Initiate hauberk", itemDescription:"An initiate Temple Knight's Armour.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 46.0, 44.0, 38.0, -6.0, 44.0, 20.0, 1.0, 0.0, 3.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10619} -{name:"Proselyte hauberk", itemDescription:"A Proselyte Temple Knight's armour.", shopValue:12000, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10620} -{name:"Mourner top", itemDescription:"A thick heavy leather top.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10621} -{name:"Kyatt top", itemDescription:"This should make me harder to spot in polar areas.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10622} -{name:"Larupia top", itemDescription:"This should make me harder to spot in woodland and jungle areas.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10623} -{name:"Graahk top", itemDescription:"This should make me harder to spot in desert areas.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10624} -{name:"Wood camo top", itemDescription:"This should make me harder to spot in wooded areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10625} -{name:"Jungle camo top", itemDescription:"This should make me harder to spot in jungle areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10626} -{name:"Desert camo top", itemDescription:"This should make me harder to spot in desert areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10627} -{name:"Polar camo top", itemDescription:"This should make me harder to spot in polar areas.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10628} -{name:"Mime mask", itemDescription:"A mime would wear this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10629} -{name:"Princess blouse", itemDescription:"Very posh!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10630} -{name:"Zombie shirt", itemDescription:"Aside from the braaaains on the lapel, it's still quite good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10631} -{name:"Camo top", itemDescription:"Examine what?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10632} -{name:"Lederhosen top", itemDescription:"A leather strapped top.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10633} -{name:"Shade robe", itemDescription:"I feel closer to the gods when I am wearing this. (Top) If a shade had knees, this would keep them nice and warm. (Bottom)", shopValue:40, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10634} -{name:"Cape of legends", itemDescription:"The cape worn by members of the Legends Guild.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 7.0, 7.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10635} -{name:"Obsidian cape", itemDescription:"A cape woven of obsidian plates.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10636} -{name:"Fire cape", itemDescription:"A cape of fire.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 11.0, 11.0, 11.0, 11.0, 11.0, 11.0, 0.0, 0.0, 0.0, 4.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10637} -{name:"Team-1 cape", itemDescription:"Ooohhh look at the pretty colours...", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10638} -{name:"Attack cape", itemDescription:"The cape worn by masters of attack.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10639} -{name:"Strength cape", itemDescription:"The cape only worn by the strongest people.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10640} -{name:"Defence cape", itemDescription:"The cape worn by masters of the art of Defence.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10641} -{name:"Ranging cape", itemDescription:"The cape worn by master archers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10642} -{name:"Prayer cape", itemDescription:"The cape worn by the most pious of heroes.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10643} -{name:"Magic cape", itemDescription:"The cape worn by the most powerful mages.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10644} -{name:"Runecraft cape", itemDescription:"The cape worn by master runecrafters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10645} -{name:"Hunter cape", itemDescription:"The cape worn by master hunters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10646} -{name:"Constitution cape", itemDescription:"The cape worn by well-constituted adventurers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10647} -{name:"Agility cape", itemDescription:"The cape worn by the most agile of heroes.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10648} -{name:"Herblore cape", itemDescription:"The cape worn by the most skilled at the art of herblore.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10649} -{name:"Thieving cape", itemDescription:"The cape worn by master thieves.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10650} -{name:"Crafting cape", itemDescription:"The cape worn by master craftworkers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10651} -{name:"Fletching cape", itemDescription:"The cape worn by the best of fletchers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10652} -{name:"Slayer cape", itemDescription:"The cape worn by slayer masters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10653} -{name:"Construct. cape", itemDescription:"The cape worn by master builders.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10654} -{name:"Mining cape", itemDescription:"The cape worn by the most skilled miners.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10655} -{name:"Smithing cape", itemDescription:"The cape worn by master smiths.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10656} -{name:"Fishing cape", itemDescription:"The cape worn by the best fishermen.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10657} -{name:"Cooking cape", itemDescription:"The cape worn by the world's best chefs.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10658} -{name:"Firemaking cape", itemDescription:"The cape worn by master firelighters.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10659} -{name:"Woodcutting cape", itemDescription:"The cape worn by master woodcutters (Obtaining level 99 skill)", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10660} -{name:"Farming cape", itemDescription:"The cape worn by master farmers.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10661} -{name:"Quest point cape", itemDescription:"The cape worn by only the most experienced adventurers.", shopValue:99000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10662} -{name:"Spotted cape", itemDescription:"A surprisingly aerodynamic cape.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10663} -{name:"Spottier cape", itemDescription:"A really surprisingly aerodynamic cape.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10664} -{name:"Black shield (h1)", itemDescription:"A black kitesheild with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10665} -{name:"Adamant shield (h1)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10666} -{name:"Rune shield (h1)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10667} -{name:"Black shield (h2)", itemDescription:"A black kiteshield with a heraldic design.", shopValue:16325, lowAlch:6530, highAlch:9795, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10668} -{name:"Adamant shield (h2)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10669} -{name:"Rune shield (h2)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10670} -{name:"Black shield (h3)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10671} -{name:"Adamant shield (h3)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10672} -{name:"Rune shield (h3)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10673} -{name:"Black shield (h4)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10674} -{name:"Adamant shield (h4)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10675} -{name:"Rune shield (h4)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10676} -{name:"Black shield (h5)", itemDescription:"A black shield with a heraldic design.", shopValue:1632, lowAlch:652, highAlch:979, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10677} -{name:"Adamant shield (h5)", itemDescription:"A shield with a heraldic design.", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10678} -{name:"Rune shield (h5)", itemDescription:"A rune kiteshield with a heraldic design.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10679} -{name:"Studded body (g)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10680} -{name:"Studded body (t)", itemDescription:"Those studs should provide a bit more protection. Nice trim too!", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -4.0, 8.0, 18.0, 25.0, 22.0, 8.0, 25.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10681} -{name:"D'hide body (g)", itemDescription:"", shopValue:7800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10682} -{name:"D'hide body (t)", itemDescription:"", shopValue:7800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10683} -{name:"D'hide body (g)", itemDescription:"", shopValue:9360, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10684} -{name:"D'hide body (t)", itemDescription:"", shopValue:9360, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10685} -{name:"Wizard robe (g)", itemDescription:"I can practise magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10686} -{name:"Wizard robe (t)", itemDescription:"I can do magic better in this.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10687} -{name:"Enchanted top", itemDescription:"Enchanted Wizards robes.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10688} -{name:"Wizard boots", itemDescription:"Slightly magical boots.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10689} -{name:"Black platebody (t)", itemDescription:"Black platebody with trim.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10690} -{name:"Black platebody (g)", itemDescription:"Black platebody with gold trim.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10691} -{name:"Highwayman mask", itemDescription:"Your money or your life!", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10692} -{name:"Blue beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10693} -{name:"Black beret", itemDescription:"Parlez-vous francais?(Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10694} -{name:"White beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:80, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10695} -{name:"Ranger boots", itemDescription:"Lightweight boots ideal for rangers.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 2.0, 3.0, 4.0, 2.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10696} -{name:"Adam platebody (t)", itemDescription:"Adamant platebody with trim.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10697} -{name:"Adam platebody (g)", itemDescription:"Adamant platebody with gold trim.", shopValue:12800, lowAlch:5120, highAlch:7680, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10698} -{name:"Black helm (h1)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10699} -{name:"Black helm (h2)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10700} -{name:"Black helm (h3)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10701} -{name:"Black helm (h4)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10702} -{name:"Black helm (h5)", itemDescription:"A black helmet with a heraldic design.", shopValue:1056, lowAlch:422, highAlch:633, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10703} -{name:"Rune helm (h1)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10704} -{name:"Rune helm (h2)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10705} -{name:"Rune helm (h3)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10706} -{name:"Rune helm (h4)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10707} -{name:"Rune helm (h5)", itemDescription:"A rune helmet with a heraldic design.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10708} -{name:"Adamant helm (h1)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10709} -{name:"Adamant helm (h2)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10710} -{name:"Adamant helm (h3)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10711} -{name:"Adamant helm (h4)", itemDescription:"An Adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10712} -{name:"Adamant helm (h5)", itemDescription:"An adamant helmet with a heraldic design.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10713} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10714} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10715} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10716} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10717} -{name:"Bob shirt", itemDescription:"See table", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10718} -{name:"Amulet of glory (t)", itemDescription:"A very powerful dragonstone amulet.", shopValue:17625, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 6.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10719} -{name:"Guthix cape", itemDescription:"A cape from the almighty god Guthix.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 1.0, 1.0, 2.0, 10.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10720} -{name:"Frog mask", itemDescription:"Now that's just silly.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10721} -{name:"Reindeer hat", itemDescription:"A reindeer hat and a matching flashing nose.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10722} -{name:"Jack lantern mask", itemDescription:"Better not light it!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10723} -{name:"Skeleton boots", itemDescription:"Skeleton feet.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10724} -{name:"Skeleton gloves", itemDescription:"Some skeletal gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10725} -{name:"Skeleton leggings", itemDescription:"Does my pelvis look big in this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10726} -{name:"Skeleton shirt", itemDescription:"The shirt of a fully body skeleton costume.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10727} -{name:"Skeleton mask", itemDescription:"A scary skeleton mask.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10728} -{name:"Easter ring", itemDescription:"A ring given to you by the Easter Bunny.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10729} -{name:"Blue marionette", itemDescription:"I've got no strings ... oh hang on!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10730} -{name:"Zombie head", itemDescription:"Alas...I hardly knew him.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10731} -{name:"Rubber chicken", itemDescription:"Perhaps not the most powerful weapon in RuneScape.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10732} -{name:"Yo-yo", itemDescription:"A gift from Santa.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10733} -{name:"Bunny ears", itemDescription:"A rabbit-like adornment.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10734} -{name:"Scythe", itemDescription:"It's a Scythe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[3.0, 8.0, 3.0, 1.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10735} -{name:"Strength amulet (t)", itemDescription:"An enchanted ruby amulet with a nice trim.", shopValue:2025, lowAlch:810, highAlch:1215, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10736} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10737} -{name:"Amulet of magic (t)", itemDescription:"An enchanted sapphire amulet of magic.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10738} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10739} -{name:"A powdered wig", itemDescription:"A big do about nothing.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10740} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10741} -{name:"Flared trousers", itemDescription:"These'll help me stay alive.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10742} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10743} -{name:"Pantaloons", itemDescription:"Alas, someone has slashed my pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10744} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10745} -{name:"Sleeping cap", itemDescription:"A cap for wearing whil...zzzzzzzzz", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10746} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10747} -{name:"Elegant shirt", itemDescription:" A rather elegant [colour] pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10748} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10749} -{name:"Elegant shirt", itemDescription:" A rather elegant [colour] pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10750} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10751} -{name:"Elegant shirt", itemDescription:" A rather elegant [colour] pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10752} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10753} -{name:"Elegant shirt", itemDescription:" A rather elegant [colour] pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10754} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10755} -{name:"Elegant shirt", itemDescription:" A rather elegant [colour] pair of pantaloons.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10756} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10757} -{name:"Red boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10758} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10759} -{name:"Orange boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10760} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10761} -{name:"Green boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10762} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10763} -{name:"Blue boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10764} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10765} -{name:"Black boater", itemDescription:"Stylish!", shopValue:225, lowAlch:90, highAlch:135, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10766} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10767} -{name:"Red headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10768} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10769} -{name:"Black headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10770} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10771} -{name:"Brown headband", itemDescription:"A minimalist's hat.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10772} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10773} -{name:"Pirate's hat", itemDescription:"Shiver me timbers!", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10774} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10775} -{name:"Zamorak platebody", itemDescription:"Rune platebody in the colours of Zamorak.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10776} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10777} -{name:"Saradomin plate", itemDescription:"Rune platebody in the colours of Saradomin.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10778} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10779} -{name:"Guthix platebody", itemDescription:"Rune platebody in the colours of Guthix.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10780} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10781} -{name:"Gilded platebody", itemDescription:"Rune platebody with complete gold trim & plating.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10782} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10783} -{name:"Saradomin robe top", itemDescription:"Blessed vestments of Saradomin.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10784} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10785} -{name:"Zamorak robe top", itemDescription:"Zamorak Vestments.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10786} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10787} -{name:"Guthix robe top", itemDescription:"Blessed vestments of Guthix.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10788} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10789} -{name:"Zamorak dragonhide", itemDescription:"", shopValue:13000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10790} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10791} -{name:"Saradomin dragonhide", itemDescription:"", shopValue:13000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10792} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10793} -{name:"Guthix dragonhide", itemDescription:"Guthix blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10794} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10795} -{name:"Robin hood hat", itemDescription:"Endorsed by Robin Hood.", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 4.0, 6.0, 8.0, 4.0, 4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10796} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10797} -{name:"Rune platebody (g)", itemDescription:"Rune platebody with gold trim.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10798} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10799} -{name:"Rune platebody (t)", itemDescription:"Rune platebody with trim.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10800} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10801} -{name:"Tan cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10802} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10803} -{name:"Dark cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10804} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10805} -{name:"Black cavalier", itemDescription:"All for one and one for all!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10806} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10807} -{name:"Arctic pyre logs", itemDescription:"Arctic Pine logs prepared with sacred oil for a funeral pyre", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10808} -{name:"Arctic pyre logs", itemDescription:"Arctic Pine logs prepared with sacred oil for a funeral pyre", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10809} -{name:"Arctic pine logs", itemDescription:"Log cut from an arctic pine.", shopValue:35, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10810} -{name:"Arctic pine logs", itemDescription:"Log cut from an arctic pine.", shopValue:35, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10811} -{name:"Split log", itemDescription:"Used to repair bridges.", shopValue:90, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10812} -{name:"Split log", itemDescription:"Used to repair bridges.", shopValue:90, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10813} -{name:"Hair", itemDescription:"I can spin this into rope.", shopValue:120, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10814} -{name:"Hair", itemDescription:"I can spin this into rope.", shopValue:120, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10815} -{name:"Raw yak meat", itemDescription:"I need to cook this.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10816} -{name:"Raw yak meat", itemDescription:"I need to cook this.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10817} -{name:"Yak-hide", itemDescription:"Thakkrad, of Neitiznot, can cure this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10818} -{name:"Yak-hide", itemDescription:"Thakkrad, of Neitiznot, can cure this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10819} -{name:"Cured yak-hide", itemDescription:"Ready to be cut and sewn into armour.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10820} -{name:"Cured yak-hide", itemDescription:"Ready to be cut and sewn into armour.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10821} -{name:"Yak-hide armour", itemDescription:"", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10822} -{name:"Yak-hide armour", itemDescription:"", shopValue:500, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10823} -{name:"Yak-hide armour", itemDescription:"", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10824} -{name:"Yak-hide armour", itemDescription:"", shopValue:500, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10825} -{name:"Fremennik round shield", itemDescription:"A wooden shield with a rope rim.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 17.0, 17.0, 31.0, -4.0, 33.0, 20.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10826} -{name:"Fremennik round shield", itemDescription:"A wooden shield with a rope rim.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, -10.0, -10.0, 17.0, 17.0, 31.0, -4.0, 33.0, 20.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10827} -{name:"Helm of neitiznot", itemDescription:"A gift from Neitiznot's Burgher.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 29.0, 34.0, 3.0, 30.0, 8.0, 2.0, 0.0, 4.0, 3.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10828} -{name:"Documents", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10829} -{name:"Royal decree", itemDescription:"The document is stamped with King Gjuki Sorvott IV's royal seal.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10830} -{name:"Empty tax bag", itemDescription:"An empty tax bag.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10831} -{name:"Light tax bag", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10832} -{name:"Normal tax bag", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10833} -{name:"Hefty tax bag", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10834} -{name:"Bulging taxbag", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10835} -{name:"Silly jester hat", itemDescription:"A silly hat with bells.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10836} -{name:"Silly jester top", itemDescription:"A jester's jangly top.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, -5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10837} -{name:"Silly jester tights", itemDescription:"Silly jester tights.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10838} -{name:"Silly jester boots", itemDescription:"Silly jester boots.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10839} -{name:"A jester stick", itemDescription:"", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10840} -{name:"Apricot cream pie", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10841} -{name:"Decapitated head", itemDescription:"A gruesome, decapitated head - its eyes stare lifelessly at nothing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10842} -{name:"Helm of neitiznot", itemDescription:"A gift from Neitiznot's Burgher.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 29.0, 34.0, 3.0, 30.0, 8.0, 2.0, 0.0, 4.0, 3.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10843} -{name:"Spring sq'irk", itemDescription:"A slightly sq'irky, I mean quirky, fruit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10844} -{name:"Summer sq'irk", itemDescription:"A slightly sq'irky, I mean quirky, fruit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10845} -{name:"Autumn sq'irk", itemDescription:"A slightly sq'irky, I mean quirky, fruit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10846} -{name:"Winter sq'irk", itemDescription:"A slightly sq'irky, I mean quirky, fruit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10847} -{name:"Spring sq'irkjuice", itemDescription:"Made from 4 spring sq'irks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10848} -{name:"Summer sq'irkjuice", itemDescription:"Made from 2 summer sq'irks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10849} -{name:"Autumn sq'irkjuice", itemDescription:"Made from 3 autumn sq'irks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10850} -{name:"Winter sq'irkjuice", itemDescription:"Made from 5 winter sq'irks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10851} -{name:"Summer garden", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10852} -{name:"Spring garden", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10853} -{name:"Autumn garden", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10854} -{name:"Winter garden", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10855} -{name:"Sin seer's note", itemDescription:"Her writing is too scrawled to make out what it says.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10856} -{name:"Severed leg", itemDescription:"A severed human leg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10857} -{name:"Shadow sword", itemDescription:"A shadow sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 27.0, 21.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, -1.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10858} -{name:"Tea flask", itemDescription:"You can put nice, hot tea in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10859} -{name:"Tea flask", itemDescription:"You can put nice, hot tea in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10860} -{name:"Tea flask", itemDescription:"You can put nice, hot tea in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10861} -{name:"Hard hat", itemDescription:"Can't get any safer than this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10862} -{name:"Builder's shirt", itemDescription:"Very fetching.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10863} -{name:"Builder's trousers", itemDescription:"Slightly tatty in my opinion.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10864} -{name:"Builder's boots", itemDescription:"They'll offer good protection for my toes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10865} -{name:"Rivets", itemDescription:"Used to bolt things together.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10866} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10867} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10868} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10869} -{name:"Binding fluid", itemDescription:"Some magical fluid to bind surfaces.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10870} -{name:"Pipe", itemDescription:"A pipe that belongs in a cannon stand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10871} -{name:"Pipe ring", itemDescription:"A ring used to join two pipes together.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10872} -{name:"Metal sheet", itemDescription:"A sheet of metal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10873} -{name:"Coloured ball", itemDescription:"Bound to have some use.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10874} -{name:"Valve wheel", itemDescription:"A wheel used to control valves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10875} -{name:"Metal bar", itemDescription:"Some unknown metal substance.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10876} -{name:"Plain satchel", itemDescription:"I can keep my grub in here.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10877} -{name:"Green satchel", itemDescription:"I can keep my grub in here.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10878} -{name:"Red satchel", itemDescription:"I can keep my grub in here.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10879} -{name:"Black satchel", itemDescription:"I can keep my grub in here.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10880} -{name:"Gold satchel", itemDescription:"I can keep my grub in here.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10881} -{name:"Rune satchel", itemDescription:"I can keep my grub in here.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10882} -{name:"Hard hat", itemDescription:"Can't get any safer than this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10883} -{name:"Fuse", itemDescription:"A fuse.", shopValue:52, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10884} -{name:"Keg", itemDescription:"A small keg of gunpowder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10885} -{name:"Prayer book", itemDescription:"Used to cure poison through prayer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10886} -{name:"Barrelchest anchor", itemDescription:"This is likely to put my back out... (when fixed) OR It's broken. I should see if a pirate smith can fix it. (when broken)", shopValue:230000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[-2.0, 10.0, 92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10887} -{name:"Barrelchest anchor", itemDescription:"This is likely to put my back out... (when fixed) OR It's broken. I should see if a pirate smith can fix it. (when broken)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[-2.0, 10.0, 92.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10888} -{name:"Blessed lamp", itemDescription:"This will answer my prayers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10889} -{name:"Prayer book", itemDescription:"Used to cure poison through prayer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10890} -{name:"Wooden cat", itemDescription:"A wooden cat toy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10891} -{name:"Wooden cat", itemDescription:"A wooden cat toy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10892} -{name:"Cranial clamp", itemDescription:"A cranial clamp.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10893} -{name:"Brain tongs", itemDescription:"Some tongs for use with brains.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10894} -{name:"Bell jar", itemDescription:"A bell jar for covering things.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10895} -{name:"Wolf whistle", itemDescription:"A silver whistle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10896} -{name:"Shipping order", itemDescription:"A shipping order list.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10897} -{name:"Keg", itemDescription:"A small keg of gunpowder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10898} -{name:"Crate part", itemDescription:"Part of a crate.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10899} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10900} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10901} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10902} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10903} -{name:"Skull staple", itemDescription:"One skull staple.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10904} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10905} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10906} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10907} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10908} -{name:"Mixture - step 1 (4)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10909} -{name:"Mixture - step 1 (4)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10910} -{name:"Mixture - step 1 (3)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:240, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10911} -{name:"Mixture - step 1 (3)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:240, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10912} -{name:"Mixture - step 1 (2)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:180, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10913} -{name:"Mixture - step 1 (2)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:180, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10914} -{name:"Mixture - step 1 (1)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:120, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10915} -{name:"Mixture - step 1 (1)", itemDescription:"This super restore and unicorn dust potion needs more ingredients.", shopValue:120, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10916} -{name:"Mixture - step 2 (4)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10917} -{name:"Mixture - step 2 (4)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10918} -{name:"Mixture - step 2 (3)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:240, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10919} -{name:"Mixture - step 2 (3)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:240, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10920} -{name:"Mixture - step 2 (2)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:180, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10921} -{name:"Mixture - step 2 (2)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:180, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10922} -{name:"Mixture - step 2 (1)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:120, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10923} -{name:"Mixture - step 2 (1)", itemDescription:"This super restore, unicorn dust, snake weed potion needs more ingredients.", shopValue:120, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10924} -{name:"Sanfew serum (4)", itemDescription:"A X dose Sanfew Serum.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10925} -{name:"Sanfew serum (4)", itemDescription:"A X dose Sanfew Serum.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10926} -{name:"Sanfew serum (3)", itemDescription:"A X dose Sanfew Serum.", shopValue:240, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10927} -{name:"Sanfew serum (3)", itemDescription:"A X dose Sanfew Serum.", shopValue:240, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10928} -{name:"Sanfew serum (2)", itemDescription:"A X dose Sanfew Serum.", shopValue:180, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10929} -{name:"Sanfew serum (2)", itemDescription:"A X dose Sanfew Serum.", shopValue:180, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10930} -{name:"Sanfew serum (1)", itemDescription:"A X dose Sanfew Serum.", shopValue:120, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10931} -{name:"Sanfew serum (1)", itemDescription:"A X dose Sanfew Serum.", shopValue:120, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10932} -{name:"Lumberjack boots", itemDescription:"You certainly will be alright wearing these.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10933} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10934} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10935} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10936} -{name:"Nail beast nails", itemDescription:"The claws from a nail beast", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10937} -{name:"Nail beast nails", itemDescription:"The claws from a nail beast", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10938} -{name:"Lumberjack top", itemDescription:"You certainly will be alright wearing this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10939} -{name:"Lumberjack legs", itemDescription:"You certainly will be alright wearing these.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10940} -{name:"Lumberjack hat", itemDescription:"You certainly will be alright wearing this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10941} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10942} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10943} -{name:"Reward token", itemDescription:"Blue/Red/Yellow reward token exchanged at Burgh de Rott/Paterdomus.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10944} -{name:"Lumberjack top", itemDescription:"You certainly will be alright wearing this.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10945} -{name:"Push up", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10946} -{name:"Run", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10947} -{name:"Sit up", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10948} -{name:"Star jump", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10949} -{name:"Skull staples", itemDescription:"One skull staple.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10950} -{name:"Skull staples", itemDescription:"One skull staple.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10951} -{name:"Slayer bell", itemDescription:"Don't make anyone jump when you ring this!", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10952} -{name:"Slayer bell", itemDescription:"Don't make anyone jump when you ring this!", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10953} -{name:"Frog-leather body", itemDescription:"Armour made out of Frog hide.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -5.0, 10.0, 23.0, 26.0, 30.0, 15.0, 32.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10954} -{name:"Frog-leather body", itemDescription:"Armour made out of Frog hide.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -5.0, 10.0, 23.0, 26.0, 30.0, 15.0, 32.0, 20.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10955} -{name:"Frog-leather chaps", itemDescription:"Chaps made out of Frog hide.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -5.0, 2.0, 7.0, 7.0, 9.0, 4.0, 9.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10956} -{name:"Frog-leather chaps", itemDescription:"Chaps made out of Frog hide.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -5.0, 2.0, 7.0, 7.0, 9.0, 4.0, 9.0, 5.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10957} -{name:"Frog-leather boots", itemDescription:"Boots made out of Frog hide.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -8.0, 2.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10958} -{name:"Frog-leather boots", itemDescription:"Boots made out of Frog hide.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -8.0, 2.0, 1.0, 1.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10959} -{name:"Green gloop soup", itemDescription:"Thick and tasty soup.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10960} -{name:"Frogspawn gumbo", itemDescription:"A big bowl of frogspawn gumbo.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10961} -{name:"Frogburger", itemDescription:"A juicy frogburger.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10962} -{name:"Coated frogs' legs", itemDescription:"Nice and crunchy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10963} -{name:"Bat shish", itemDescription:"Bat shish kebab.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10964} -{name:"Fingers", itemDescription:"Wall beast fingers in a white fern sauce.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10965} -{name:"Grubs ? la mode", itemDescription:"", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10966} -{name:"Roast frog", itemDescription:"A whole roasted frog.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10967} -{name:"Mushrooms", itemDescription:"Tasty sautéed mushrooms.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10968} -{name:"Fillets", itemDescription:"Chunky cave-crawler fillets.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10969} -{name:"Loach", itemDescription:"Steamed cave pond loach.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10970} -{name:"Eel sushi", itemDescription:"Cave-eel sushi.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10971} -{name:"Dorgesh-kaan sphere", itemDescription:"Oldak's Marvellous Moving-Over-Distance Sphere.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10972} -{name:"Light orb", itemDescription:"A component of cave goblin Magic.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10973} -{name:"Light orb", itemDescription:"A component of cave goblin Magic.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10974} -{name:"Spanner", itemDescription:"A goblin wrench.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10975} -{name:"Long bone", itemDescription:"A Construction bone.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10976} -{name:"Curved bone", itemDescription:"A curved Construction bone.", shopValue:7, lowAlch:2, highAlch:4, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10977} -{name:"Swamp weed", itemDescription:"Swamp weed found in the caves near Dorgesh-Kaan.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10978} -{name:"Swamp weed", itemDescription:"Swamp weed found in the caves near Dorgesh-Kaan.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10979} -{name:"Empty light orb", itemDescription:"Add a wire to complete it.", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10980} -{name:"Cave goblin wire", itemDescription:"Wire found in Dorgesh-Kaan.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10981} -{name:"Cave goblin wire", itemDescription:"Wire found in Dorgesh-Kaan.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10982} -{name:"Cog", itemDescription:" A broken cog.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10983} -{name:"Cog", itemDescription:" A broken cog.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10984} -{name:"Fuse", itemDescription:"A fuse.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10985} -{name:"Fuse", itemDescription:"A fuse.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10986} -{name:"Meter", itemDescription:"A meter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10987} -{name:"Meter", itemDescription:"A meter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10988} -{name:"Capacitor", itemDescription:"A capacitor.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10989} -{name:"Capacitor", itemDescription:"A capacitor.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10990} -{name:"Lever", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10991} -{name:"Lever", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10992} -{name:"Powerbox", itemDescription:" A broken powerbox.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10993} -{name:"Powerbox", itemDescription:" A broken powerbox.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10994} -{name:"Perfect shell", itemDescription:"A perfect example of a tortoise shell.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10995} -{name:"Perfect snail shell", itemDescription:"A perfect example of a snail shell.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10996} -{name:"Molanisk", itemDescription:" A strange mole-like being.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10997} -{name:"Cave goblin", itemDescription:"One of the many citizens of Dorgesh-Kaan.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10998} -{name:"Goblin book", itemDescription:"A tattered goblin holy book.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:10999} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11000} -{name:"Dagon'hai history", itemDescription:"The History of Dagon'hai.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11001} -{name:"Sin'keth's diary", itemDescription:"The diary of Sin'keth Magis.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11002} -{name:"An empty folder", itemDescription:"A folder for Rat's papers.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11003} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11004} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11005} -{name:"Used folder", itemDescription:"A folder for rat's papers. It needs more pages.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11006} -{name:"Full folder", itemDescription:"A full folder. You should take this back to Rat.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11007} -{name:"Rat's paper", itemDescription:"A page of Rat's document.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11008} -{name:"Rat's letter", itemDescription:"A letter in a strange language.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11009} -{name:"Surok's letter", itemDescription:"A letter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11010} -{name:"Zaff's instructions", itemDescription:"Instructions for the beacon ring.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11011} -{name:"Wand", itemDescription:"A wand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11012} -{name:"Infused wand", itemDescription:"This wand is glowing with chaos magic.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11013} -{name:"Beacon ring", itemDescription:"A magical ring.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11014} -{name:"Chicken head", itemDescription:"Cock-a-doodle-do!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11015} -{name:"Chicken feet", itemDescription:"Perfect for crossing the road.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11016} -{name:"Chicken wings", itemDescription:"I look fowl in this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11017} -{name:"Chicken legs", itemDescription:"What's the matter, are you chicken?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11018} -{name:"Chicken feet", itemDescription:"Perfect for crossing the road.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11019} -{name:"Chicken wings", itemDescription:"I look fowl in this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11020} -{name:"Chicken head", itemDescription:"Cock-a-doodle-do!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11021} -{name:"Chicken legs", itemDescription:"What's the matter, are you chicken?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11022} -{name:"Magic egg", itemDescription:"Let's see how far the rabbit hole goes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11023} -{name:"Rabbit mould", itemDescription:"Used for making chocolate rabbits.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11024} -{name:"Chocolate chunks", itemDescription:"Some chocolate chunks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11025} -{name:"Chocolate kebbit", itemDescription:"Chocolatey kebbit goodness.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11026} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11027} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11028} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11029} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11030} -{name:"Damp planks", itemDescription:"A number of dripping, waterlogged planks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11031} -{name:"Crude carving", itemDescription:"A log with some squiggles carved into it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11032} -{name:"Cruder carving", itemDescription:"Another log with some sort of bird hacked into it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11033} -{name:"Sven's last map", itemDescription:"A faded map marking a cross next to a section of the landscape.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11034} -{name:"Windswept logs", itemDescription:"Logs taken from the exotic-looking windswept tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11035} -{name:"Parchment", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11036} -{name:"Brine sabre", itemDescription:"A salty sword.", shopValue:26000, lowAlch:10400, highAlch:15600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 47.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11037} -{name:"Brine sabre", itemDescription:"A salty sword.", shopValue:26000, lowAlch:10400, highAlch:15600, isStackable:true, isNoteable:true, weight:18.0, bonuses:[7.0, 47.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11038} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11039} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11040} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11041} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11042} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11043} -{name:"Rotten barrel", itemDescription:"Looks like it might still float.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11044} -{name:"Rotten barrel", itemDescription:"Looks like it might still float.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11045} -{name:"Rope", itemDescription:"A coil of rope.", shopValue:0, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11046} -{name:"Brine rat", itemDescription:"Eww, a bald rat!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11047} -{name:"Armour shard", itemDescription:"A piece of ancient goblin armour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11048} -{name:"Artefact", itemDescription:"An ancient goblin object encrusted in dirt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11049} -{name:"Hatchet head", itemDescription:"A piece of ancient goblin hatchet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11050} -{name:"Artefact", itemDescription:"An ancient goblin object encrusted in dirt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11051} -{name:"Helmet fragment", itemDescription:"A piece of ancient goblin helmet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11052} -{name:"Artefact", itemDescription:"An ancient goblin object encrusted in dirt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11053} -{name:"Shield fragment", itemDescription:"A piece of an ancient goblin shield.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11054} -{name:"Artefact", itemDescription:"An ancient goblin object encrusted in dirt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11055} -{name:"Sword fragment", itemDescription:"A piece of an ancient goblin sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11056} -{name:"Artefact", itemDescription:"An ancient goblin object encrusted in dirt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11057} -{name:"Mace", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11058} -{name:"Artefact", itemDescription:"An ancient goblin object encrusted in dirt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11059} -{name:"Goblin village sphere", itemDescription:"Oldak's marvellous Moving-over-distance Sphere", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11060} -{name:"Ancient mace", itemDescription:"It has ancient goblin symbols on it.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[10.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11061} -{name:"Zanik (slice)", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11062} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11063} -{name:"Ancient mace", itemDescription:"It has ancient goblin symbols on it.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:18.0, bonuses:[10.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11064} -{name:"Bracelet mould", itemDescription:"Used to make gold bracelets.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11065} -{name:"Bracelet mould", itemDescription:"Used to make gold bracelets.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11066} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11067} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11068} -{name:"Gold bracelet", itemDescription:"I wonder if this is valuable.", shopValue:550, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11069} -{name:"Gold bracelet", itemDescription:"I wonder if this is valuable.", shopValue:550, lowAlch:220, highAlch:330, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11070} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11071} -{name:"Sapphire bracelet", itemDescription:"I wonder if this is valuable.", shopValue:1150, lowAlch:460, highAlch:690, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11072} -{name:"Sapphire bracelet", itemDescription:"I wonder if this is valuable.", shopValue:1150, lowAlch:460, highAlch:690, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11073} -{name:"Bracelet of clay", itemDescription:"Now I can become a potter.", shopValue:1265, lowAlch:506, highAlch:759, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11074} -{name:"Bracelet of clay", itemDescription:"Now I can become a potter.", shopValue:1265, lowAlch:506, highAlch:759, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11075} -{name:"Emerald bracelet", itemDescription:"I wonder if this is valuable.", shopValue:1525, lowAlch:610, highAlch:915, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11076} -{name:"Emerald bracelet", itemDescription:"I wonder if this is valuable.", shopValue:1525, lowAlch:610, highAlch:915, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11077} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11078} -{name:"Castle wars brace (3)", itemDescription:"Must be worn as you enter the game to receive the bonus for that game.", shopValue:1675, lowAlch:670, highAlch:1005, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11079} -{name:"Castle wars brace (3)", itemDescription:"Must be worn as you enter the game to receive the bonus for that game.", shopValue:1675, lowAlch:670, highAlch:1005, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11080} -{name:"Castle wars brace (2)", itemDescription:"Must be worn as you enter the game to receive the bonus for that game.", shopValue:1675, lowAlch:670, highAlch:1005, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11081} -{name:"Castle wars brace (2)", itemDescription:"Must be worn as you enter the game to receive the bonus for that game.", shopValue:1675, lowAlch:670, highAlch:1005, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11082} -{name:"Castle wars brace (1)", itemDescription:"Must be worn as you enter the game to receive the bonus for that game.", shopValue:1675, lowAlch:670, highAlch:1005, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11083} -{name:"Castle wars brace (1)", itemDescription:"Must be worn as you enter the game to receive the bonus for that game.", shopValue:1675, lowAlch:670, highAlch:1005, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11084} -{name:"Ruby bracelet", itemDescription:"I wonder if this is valuable.", shopValue:2325, lowAlch:930, highAlch:1395, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11085} -{name:"Ruby bracelet", itemDescription:"I wonder if this is valuable.", shopValue:2325, lowAlch:930, highAlch:1395, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11086} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11087} -{name:"Inoculation brace", itemDescription:"It eases diseases!", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11088} -{name:"Inoculation brace", itemDescription:"It eases diseases!", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11089} -{name:"Phoenix necklace", itemDescription:"In case of emergency, wear necklace.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11090} -{name:"Phoenix necklace", itemDescription:"In case of emergency, wear necklace.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11091} -{name:"Diamond bracelet", itemDescription:"I wonder if this is valuable.", shopValue:3825, lowAlch:1530, highAlch:2295, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11092} -{name:"Diamond bracelet", itemDescription:"I wonder if this is valuable.", shopValue:3825, lowAlch:1530, highAlch:2295, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11093} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11094} -{name:"Forinthry brace (5)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11095} -{name:"Forinthry brace (5)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11096} -{name:"Forinthry brace (4)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11097} -{name:"Forinthry brace (4)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11098} -{name:"Forinthry brace (3)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11099} -{name:"Forinthry brace (3)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11100} -{name:"Forinthry brace (2)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11101} -{name:"Forinthry brace (2)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11102} -{name:"Forinthry brace (1)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11103} -{name:"Forinthry brace (1)", itemDescription:"It repels revenants and helps you enter the Abyss.", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11104} -{name:"Skills necklace (4)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11105} -{name:"Skills necklace (4)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11106} -{name:"Skills necklace (3)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11107} -{name:"Skills necklace (3)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11108} -{name:"Skills necklace (2)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11109} -{name:"Skills necklace (2)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11110} -{name:"Skills necklace (1)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11111} -{name:"Skills necklace (1)", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11112} -{name:"Skills necklace", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11113} -{name:"Skills necklace", itemDescription:"This will help me travel.", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11114} -{name:"Dragon bracelet", itemDescription:"I wonder if this is valuable.", shopValue:19125, lowAlch:7650, highAlch:11475, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11115} -{name:"Dragon bracelet", itemDescription:"I wonder if this is valuable.", shopValue:19125, lowAlch:7650, highAlch:11475, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11116} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11117} -{name:"Combat bracelet (4)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:false, isNoteable:false, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11118} -{name:"Combat bracelet (4)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:true, isNoteable:true, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11119} -{name:"Combat bracelet (3)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:false, isNoteable:false, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11120} -{name:"Combat bracelet (3)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:true, isNoteable:true, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11121} -{name:"Combat bracelet (2)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:false, isNoteable:false, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11122} -{name:"Combat bracelet (2)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:true, isNoteable:true, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11123} -{name:"Combat bracelet (1)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:false, isNoteable:false, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11124} -{name:"Combat bracelet (1)", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:true, isNoteable:true, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11125} -{name:"Combat bracelet", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:false, isNoteable:false, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11126} -{name:"Combat bracelet", itemDescription:"You will need to recharge the bracelet at the Legends Guild.(uncharged) A handy way to get around.(charged)", shopValue:21040, lowAlch:8416, highAlch:12624, isStackable:true, isNoteable:true, weight:3.0, bonuses:[7.0, 7.0, 7.0, 3.0, 7.0, 5.0, 5.0, 5.0, 3.0, 5.0, 5.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11127} -{name:"Berserker necklace", itemDescription:"Makes obsidian weapons even stronger!", shopValue:202000, lowAlch:80400, highAlch:120600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-10.0, -10.0, -10.0, 0.0, 0.0, -20.0, -20.0, -20.0, -20.0, -20.0, -20.0, 0.0, 0.0, 0.0, 7.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11128} -{name:"Berserker necklace", itemDescription:"Makes obsidian weapons even stronger!", shopValue:202000, lowAlch:80400, highAlch:120600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-10.0, -10.0, -10.0, 0.0, 0.0, -20.0, -20.0, -20.0, -20.0, -20.0, -20.0, 0.0, 0.0, 0.0, 7.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11129} -{name:"Onyx bracelet", itemDescription:"I wonder if this is valuable.", shopValue:201000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11130} -{name:"Onyx bracelet", itemDescription:"I wonder if this is valuable.", shopValue:201000, lowAlch:80800, highAlch:121200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11131} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11132} -{name:"Regen bracelet", itemDescription:"Helps to restore your life points.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[8.0, 8.0, 8.0, 3.0, 7.0, 6.0, 6.0, 6.0, 3.0, 6.0, 5.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11133} -{name:"Regen bracelet", itemDescription:"Helps to restore your life points.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[8.0, 8.0, 8.0, 3.0, 7.0, 6.0, 6.0, 6.0, 3.0, 6.0, 5.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11134} -{name:"Bomber jacket", itemDescription:"For all your flying needs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11135} -{name:"Karamja gloves 1", itemDescription:"A pair of pale green Karamja gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11136} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11137} -{name:"Karamja gloves 2", itemDescription:"A pair of green Karamja gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11138} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11139} -{name:"Karamja gloves 3", itemDescription:"A pair of dark green Karamja gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11140} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11141} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11142} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11143} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11144} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11145} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11146} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11147} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11148} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11149} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11150} -{name:"Dream vial (empty)", itemDescription:" A vessel containing water and goutweed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11151} -{name:"Dream vial (water)", itemDescription:" A vessel containing water and goutweed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11152} -{name:"Dream vial (herb)", itemDescription:" A vessel containing water and goutweed.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11153} -{name:"Dream potion", itemDescription:"Potion of Shared Dreaming. One dream for two!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11154} -{name:"Ground astral rune", itemDescription:"A ground astral rune.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11155} -{name:"Astral rune shards", itemDescription:"An astral rune that has been broken into shards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11156} -{name:"Dreamy lamp", itemDescription:"A lunar-styled lamp. I wonder what's inside?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11157} -{name:"Cyrisus's chest", itemDescription:"Perfect for storing heavy things.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11158} -{name:"Hunter kit", itemDescription:"A box of Hunter goodies.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11159} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11160} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11161} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11162} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11163} -{name:"Restored shield", itemDescription:"Complete Shield of Arrav.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11164} -{name:"Phoenix crossbow", itemDescription:"Second-rate crossbow, former property of the Phoenix Gang.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11165} -{name:"Phoenix crossbow", itemDescription:"Second-rate crossbow, former property of the Phoenix Gang.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11166} -{name:"Phoenix crossbow", itemDescription:"Second-rate crossbow, former property of the Phoenix Gang.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11167} -{name:"Phoenix crossbow", itemDescription:"Second-rate crossbow, former property of the Phoenix Gang.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11168} -{name:"Newspaper", itemDescription:"A collection of written news on paper!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11169} -{name:"Newspaper", itemDescription:"A collection of written news on paper!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11170} -{name:"Newspaper", itemDescription:"A collection of written news on paper!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11171} -{name:"Newspaper", itemDescription:"A collection of written news on paper!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11172} -{name:"Half certificate", itemDescription:"I can use this to claim a reward from the King, if I get the other half.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11173} -{name:"Half certificate", itemDescription:"I can use this to claim a reward from the King, if I get the other half.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11174} -{name:"Uncleaned find", itemDescription:"A roughly-prepared archaeological find ready for cleaning.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11175} -{name:"Arrowheads", itemDescription:"Rusty and very old.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11176} -{name:"Jewellery", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11177} -{name:"Pottery", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11178} -{name:"Old coin", itemDescription:"An old looking coin.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11179} -{name:"Ancient coin", itemDescription:"A cracked and rusty looking coin.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11180} -{name:"Ancient symbol", itemDescription:"A very old symbol of Saradomin.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11181} -{name:"Old symbol", itemDescription:"An old symbol of Saradomin.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11182} -{name:"Old chipped vase", itemDescription:"An old vase with Saradominist markings - it has been chipped.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11183} -{name:"Museum map", itemDescription:"A map of Varrock Museum.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11184} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11185} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11186} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11187} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11188} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11189} -{name:"Digsite pendant (1)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11190} -{name:"Digsite pendant (2)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11191} -{name:"Digsite pendant (3)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11192} -{name:"Digsite pendant (4)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11193} -{name:"Digsite pendant (5)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11194} -{name:"Clean necklace", itemDescription:"A recently-cleaned necklace.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11195} -{name:"Griffin feather", itemDescription:"One of Grimgnash's feathers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11196} -{name:"Miazrqa's pendant", itemDescription:"The pendant belonging to Miazrqa.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11197} -{name:"Music sheet", itemDescription:"A sheet of music.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11198} -{name:"Rupert's helmet", itemDescription:"A sturdy helmet that belonged to Rupert the beard.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11199} -{name:"Dwarven helmet", itemDescription:"A sturdy helmet that belonged to Rupert the beard.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 6.0, -2.0, -2.0, 27.0, 28.0, 31.0, 5.0, 24.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11200} -{name:"Dwarven helmet", itemDescription:"A sturdy helmet that belonged to Rupert the beard.", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 6.0, -2.0, -2.0, 27.0, 28.0, 31.0, 5.0, 24.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11201} -{name:"Shrinking recipe", itemDescription:"A recipe for a shrinking potion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11202} -{name:"To-do list", itemDescription:"A list of tasks for the day.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11203} -{name:"Shrink-me-quick", itemDescription:"Apparently it shrinks you. Very fast.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11204} -{name:"Shrunk ogleroot", itemDescription:"A shrunk ogleroot! How odd...", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11205} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11206} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11207} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11208} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11209} -{name:"Golden goblin", itemDescription:"A shiny golden goblin. Strange!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11210} -{name:"Magic beans", itemDescription:"A bag of magic beans.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11211} -{name:"Dragon arrow", itemDescription:"An arrow made using a dragon's talon.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11212} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11213} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11214} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11215} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11216} -{name:"Dragon fire arrows", itemDescription:" Dragon-headed fire arrow.", shopValue:3, lowAlch:320, highAlch:480, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11217} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11218} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11219} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11220} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11221} -{name:"Dragon fire arrows", itemDescription:" Dragon-headed fire arrow.", shopValue:10, lowAlch:320, highAlch:480, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11222} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11223} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11224} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11225} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11226} -{name:"Dragon arrow (p)", itemDescription:"An arrow made using a dragon's talon.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11227} -{name:"Dragon arrow (p+)", itemDescription:"An arrow made using a dragon's talon.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11228} -{name:"Dragon arrow (p++)", itemDescription:"An arrow made using a dragon's talon.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11229} -{name:"Dragon dart", itemDescription:"A deadly throwing dart with a dragon tip.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11230} -{name:"Dragon dart (p)", itemDescription:"A deadly throwing dart with a dragon tip.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11231} -{name:"Dragon dart tip", itemDescription:"A deadly looking dragon dart tip - needs feathers for flight.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11232} -{name:"Dragon dart (p+)", itemDescription:"A deadly throwing dart with a dragon tip.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11233} -{name:"Dragon dart (p++)", itemDescription:"A deadly throwing dart with a dragon tip.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11234} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:120002, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11235} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:120002, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11236} -{name:"Dragon arrowtips", itemDescription:"Dragon talons, usable as arrowheads.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11237} -{name:"Baby impling jar", itemDescription:"A baby impling in a jar. That's a bit cruel.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11238} -{name:"Baby impling jar", itemDescription:"A baby impling in a jar. That's a bit cruel.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11239} -{name:"Young impling jar", itemDescription:"A young impling in a jar. Don't trap me, man.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11240} -{name:"Young impling jar", itemDescription:"A young impling in a jar. Don't trap me, man.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11241} -{name:"Gourm' impling jar", itemDescription:"A gourmet impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11242} -{name:"Gourm' impling jar", itemDescription:"A gourmet impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11243} -{name:"Earth impling jar", itemDescription:"Earth impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11244} -{name:"Earth impling jar", itemDescription:"Earth impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11245} -{name:"Ess' impling jar", itemDescription:"Essence impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11246} -{name:"Ess' impling jar", itemDescription:"Essence impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11247} -{name:"Eclectic impling jar", itemDescription:"Eclectic impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11248} -{name:"Eclectic impling jar", itemDescription:"Eclectic impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11249} -{name:"Nature impling jar", itemDescription:"Nature impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11250} -{name:"Nature impling jar", itemDescription:"Nature impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11251} -{name:"Magpie impling jar", itemDescription:"Magpie impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11252} -{name:"Magpie impling jar", itemDescription:"Magpie impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11253} -{name:"Ninja impling jar", itemDescription:"Ninja impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11254} -{name:"Ninja impling jar", itemDescription:"Ninja impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11255} -{name:"Dragon impling jar", itemDescription:"Dragon impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11256} -{name:"Dragon impling jar", itemDescription:"Dragon impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11257} -{name:"Jar generator", itemDescription:"Creates butterfly and impling jars.", shopValue:600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11258} -{name:"Magic butterfly net", itemDescription:"For catching butterflies.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11259} -{name:"Impling jar", itemDescription:"It's got little holes in the top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11260} -{name:"Impling jar", itemDescription:"It's got little holes in the top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11261} -{name:"Imp repellent", itemDescription:"Imps seem to hate this stuff. Can't say I blame them.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11262} -{name:"Imp repellent", itemDescription:"Imps seem to hate this stuff. Can't say I blame them.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11263} -{name:"Anchovy oil", itemDescription:"Omega 3 oil. Good for the brain, not so for the nose.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11264} -{name:"Anchovy oil", itemDescription:"Omega 3 oil. Good for the brain, not so for the nose.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11265} -{name:"Anchovy paste", itemDescription:"Fish paste. Urk.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11266} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11267} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11268} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11269} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11270} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11271} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11272} -{name:"Impling scroll", itemDescription:"Lets you easily identify your prey.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11273} -{name:"Ham shirt", itemDescription:"The label says 'Vivid Crimson', but it looks like pink to me!", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11274} -{name:"Mith grapple", itemDescription:"A mithril grapple tipped bolt with a rope.", shopValue:48, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11275} -{name:"Mith grapple", itemDescription:"A mithril grapple tipped bolt with a rope.", shopValue:0, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11276} -{name:"Cavalier mask", itemDescription:"I hope I don't meet any roundheads...", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11277} -{name:"Beret mask", itemDescription:"Essential mime wear.", shopValue:80, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11278} -{name:"Elvarg's head", itemDescription:"The severed head of the great dragon Elvarg!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11279} -{name:"Cavalier and mask", itemDescription:"I hope I don't meet any roundheads...", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11280} -{name:"Cavalier and mask", itemDescription:"I hope I don't meet any roundheads...", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11281} -{name:"Beret and mask", itemDescription:"Essential mime wear.", shopValue:80, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11282} -{name:"Dragonfire shield", itemDescription:"A heavy shield with a snarling, draconic visage.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:false, isNoteable:false, weight:72.0, bonuses:[0.0, 0.0, 0.0, -10.0, -5.0, 20.0, 25.0, 22.0, 10.0, 22.0, 17.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11283} -{name:"Dragonfire shield", itemDescription:"A heavy shield with a snarling, draconic visage.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:false, isNoteable:false, weight:72.0, bonuses:[0.0, 0.0, 0.0, -10.0, -5.0, 20.0, 25.0, 22.0, 10.0, 22.0, 17.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11284} -{name:"Dragonfire shield", itemDescription:"A heavy shield with a snarling, draconic visage.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:true, isNoteable:true, weight:72.0, bonuses:[0.0, 0.0, 0.0, -10.0, -5.0, 20.0, 25.0, 22.0, 10.0, 22.0, 17.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11285} -{name:"Draconic visage", itemDescription:"It looks like this could be attached to a shield somehow.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11286} -{name:"Draconic visage", itemDescription:"It looks like this could be attached to a shield somehow.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11287} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11288} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11289} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11290} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11291} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11292} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11293} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11294} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11295} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11296} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11297} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11298} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11299} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11300} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11301} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11302} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11303} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11304} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11305} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11306} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11307} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11308} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11309} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11310} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11311} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11312} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11313} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11314} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11315} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11316} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11317} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11318} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11319} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11320} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11321} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11322} -{name:"Barbarian rod", itemDescription:"A heavy barbarian Fishing rod.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11323} -{name:"Roe", itemDescription:"Roe, or cheap fishy eggs.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11324} -{name:"Roe", itemDescription:"Roe, or cheap fishy eggs.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11325} -{name:"Caviar", itemDescription:"Caviar, or expensive fishy eggs.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11326} -{name:"Caviar", itemDescription:"Caviar, or expensive fishy eggs.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11327} -{name:"Leaping trout", itemDescription:"A sad-looking trout.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11328} -{name:"Leaping trout", itemDescription:"A sad-looking trout.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11329} -{name:"Leaping salmon", itemDescription:"Some non-tasty salmon.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11330} -{name:"Leaping salmon", itemDescription:"Some non-tasty salmon.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11331} -{name:"Leaping sturgeon", itemDescription:"A bloated sturgeon.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11332} -{name:"Leaping sturgeon", itemDescription:"A bloated sturgeon.", shopValue:75, lowAlch:30, highAlch:45, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11333} -{name:"Fish offcuts", itemDescription:"Slices of inedible fish.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11334} -{name:"Dragon full helm", itemDescription:"Protects your head and looks impressive too.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 45.0, 48.0, 41.0, -1.0, 46.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11335} -{name:"Dragon full helm", itemDescription:"Protects your head and looks impressive too.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 45.0, 48.0, 41.0, -1.0, 46.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11336} -{name:"Mangled bones", itemDescription:"The bones of a barbarian warrior, slain by his fellow adventurers.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11337} -{name:"Chewed bones", itemDescription:"The bones of a barbarian warrior, slain by vile dragons.", shopValue:3500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:96.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11338} -{name:"My notes", itemDescription:"Records from my discoveries beneath the lake.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11339} -{name:"Barbarian skills", itemDescription:"A record of Otto's instructions to me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11340} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11341} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11342} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11343} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11344} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11345} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11346} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11347} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11348} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11349} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11350} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11351} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11352} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11353} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11354} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11355} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11356} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11357} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11358} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11359} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11360} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11361} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11362} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11363} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11364} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11365} -{name:"Ancient page", itemDescription:"Could a dragon have written this?; Tiny writing.;Smells disgusting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11366} -{name:"Bronze hasta", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11367} -{name:"Bronze hasta", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11368} -{name:"Iron hasta", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11369} -{name:"Iron hasta", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11370} -{name:"Steel hasta", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11371} -{name:"Steel hasta", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11372} -{name:"Mithril hasta", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11373} -{name:"Mithril hasta", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11374} -{name:"Adamant hasta", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11375} -{name:"Adamant hasta", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11376} -{name:"Rune hasta", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11377} -{name:"Rune hasta", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11378} -{name:"Bronze hasta (p)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11379} -{name:"Bronze hasta (p)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11380} -{name:"Bronze hasta (kp)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11381} -{name:"Bronze hasta (p+)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11382} -{name:"Bronze hasta (p+)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11383} -{name:"Bronze hasta (p++)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11384} -{name:"Bronze hasta (p++)", itemDescription:"A bronze-tipped, one-handed hasta.", shopValue:26, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:22.0, bonuses:[5.0, 5.0, 5.0, 0.0, 0.0, -1.0, -1.0, -1.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11385} -{name:"Iron hasta (p)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11386} -{name:"Iron hasta (p)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11387} -{name:"Iron hasta (kp)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11388} -{name:"Iron hasta (p+)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11389} -{name:"Iron hasta (p+)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11390} -{name:"Iron hasta (p++)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11391} -{name:"Iron hasta (p++)", itemDescription:"An iron-tipped, one-handed hasta.", shopValue:91, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[8.0, 8.0, 8.0, 0.0, 0.0, -2.0, -2.0, -2.0, 0.0, -2.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11392} -{name:"Steel hasta (p)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11393} -{name:"Steel hasta (p)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11394} -{name:"Steel hasta (kp)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11395} -{name:"Steel hasta (p+)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11396} -{name:"Steel hasta (p+)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11397} -{name:"Steel hasta (p++)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11398} -{name:"Steel hasta (p++)", itemDescription:"A steel-tipped, one-handed hasta.", shopValue:325, lowAlch:130, highAlch:195, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, 12.0, 12.0, 0.0, 0.0, -3.0, -3.0, -3.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11399} -{name:"Mithril hasta (p)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11400} -{name:"Mithril hasta (p)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11401} -{name:"Mithril hasta (kp)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11402} -{name:"Mithril hasta (p+)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11403} -{name:"Mithril hasta (p+)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11404} -{name:"Mithril hasta (p++)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:false, isNoteable:false, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11405} -{name:"Mithril hasta (p++)", itemDescription:"A mithril-tipped, one-handed hasta.", shopValue:845, lowAlch:338, highAlch:507, isStackable:true, isNoteable:true, weight:18.0, bonuses:[17.0, 17.0, 17.0, 0.0, 0.0, -5.0, -5.0, -4.0, 0.0, -5.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11406} -{name:"Adamant hasta (p)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11407} -{name:"Adamant hasta (p)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11408} -{name:"Adamant hasta (kp)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11409} -{name:"Adamant hasta (p+)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11410} -{name:"Adamant hasta (p+)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11411} -{name:"Adamant hasta (p++)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11412} -{name:"Adamant hasta (p++)", itemDescription:"An adamant-tipped, one-handed hasta.", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:2.0, bonuses:[24.0, 24.0, 24.0, 0.0, 0.0, -6.0, -7.0, -5.0, 0.0, -6.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11413} -{name:"Rune hasta (p)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11414} -{name:"Rune hasta (p)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11415} -{name:"Rune hasta (kp)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11416} -{name:"Rune hasta (p+)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11417} -{name:"Rune hasta (p+)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11418} -{name:"Rune hasta (p++)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11419} -{name:"Rune hasta (p++)", itemDescription:"A rune-tipped, one-handed hasta.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:true, isNoteable:true, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, -10.0, -10.0, -9.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11420} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11421} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11422} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11423} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11424} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11425} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11426} -{name:"Fish vial", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11427} -{name:"Fish vial", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11428} -{name:"Attack mix (2)", itemDescription:"One/Two dose(s) of fishy attack potion", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11429} -{name:"Attack mix (2)", itemDescription:"One/Two dose(s) of fishy attack potion", shopValue:9, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11430} -{name:"Attack mix (1)", itemDescription:"One/Two dose(s) of fishy attack potion", shopValue:6, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11431} -{name:"Attack mix (1)", itemDescription:"One/Two dose(s) of fishy attack potion", shopValue:6, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11432} -{name:"Antipoison mix (2)", itemDescription:"Two doses of fishy antipoison potion.", shopValue:216, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11433} -{name:"Antipoison mix (2)", itemDescription:"Two doses of fishy antipoison potion.", shopValue:216, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11434} -{name:"Antipoison mix (1)", itemDescription:"Two doses of fishy antipoison potion.", shopValue:144, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11435} -{name:"Antipoison mix (1)", itemDescription:"Two doses of fishy antipoison potion.", shopValue:144, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11436} -{name:"Relicym's mix (2)", itemDescription:" Two doses of fishy Relicym's balm.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11437} -{name:"Relicym's mix (2)", itemDescription:" Two doses of fishy Relicym's balm.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11438} -{name:"Relicym's mix (1)", itemDescription:" Two doses of fishy Relicym's balm.", shopValue:75, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11439} -{name:"Relicym's mix (1)", itemDescription:" Two doses of fishy Relicym's balm.", shopValue:75, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11440} -{name:"Strength mix (1)", itemDescription:"One/two doses of fishy strength potion.", shopValue:11, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11441} -{name:"Strength mix (1)", itemDescription:"One/two doses of fishy strength potion.", shopValue:11, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11442} -{name:"Strength mix (2)", itemDescription:"One/two doses of fishy strength potion.", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11443} -{name:"Strength mix (2)", itemDescription:"One/two doses of fishy strength potion.", shopValue:13, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11444} -{name:"Combat mix (2)", itemDescription:"One/two doses of a fishy Combat potion", shopValue:105, lowAlch:42, highAlch:63, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11445} -{name:"Combat mix (2)", itemDescription:"One/two doses of a fishy Combat potion", shopValue:105, lowAlch:42, highAlch:63, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11446} -{name:"Combat mix (1)", itemDescription:"One/two doses of a fishy Combat potion", shopValue:52, lowAlch:42, highAlch:63, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11447} -{name:"Combat mix (1)", itemDescription:"One/two doses of a fishy Combat potion", shopValue:52, lowAlch:42, highAlch:63, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11448} -{name:"Restore mix (2)", itemDescription:"One/two dose(s) of fishy restore potion.", shopValue:66, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11449} -{name:"Restore mix (2)", itemDescription:"One/two dose(s) of fishy restore potion.", shopValue:66, lowAlch:26, highAlch:39, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11450} -{name:"Restore mix (1)", itemDescription:"One/two dose(s) of fishy restore potion.", shopValue:44, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11451} -{name:"Restore mix (1)", itemDescription:"One/two dose(s) of fishy restore potion.", shopValue:44, lowAlch:26, highAlch:39, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11452} -{name:"Energy mix (2)", itemDescription:"One/two doses of fishy energy potion.", shopValue:72, lowAlch:28, highAlch:43, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11453} -{name:"Energy mix (2)", itemDescription:"One/two doses of fishy energy potion.", shopValue:72, lowAlch:28, highAlch:43, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11454} -{name:"Energy mix (1)", itemDescription:"One/two doses of fishy energy potion.", shopValue:36, lowAlch:28, highAlch:43, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11455} -{name:"Energy mix (1)", itemDescription:"One/two doses of fishy energy potion.", shopValue:36, lowAlch:28, highAlch:43, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11456} -{name:"Defence mix (2)", itemDescription:"One/two doses of a fishy defence potion", shopValue:90, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11457} -{name:"Defence mix (2)", itemDescription:"One/two doses of a fishy defence potion", shopValue:90, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11458} -{name:"Defence mix (1)", itemDescription:"One/two doses of a fishy defence potion", shopValue:60, lowAlch:36, highAlch:54, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11459} -{name:"Defence mix (1)", itemDescription:"One/two doses of a fishy defence potion", shopValue:60, lowAlch:36, highAlch:54, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11460} -{name:"Agility mix (2)", itemDescription:"One-Two doses of a fishy agility potion", shopValue:100, lowAlch:2040, highAlch:3060, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11461} -{name:"Agility mix (2)", itemDescription:"One-Two doses of a fishy agility potion", shopValue:100, lowAlch:2040, highAlch:3060, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11462} -{name:"Agility mix (1)", itemDescription:"One-Two doses of a fishy agility potion", shopValue:50, lowAlch:2040, highAlch:3060, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11463} -{name:"Agility mix (1)", itemDescription:"One-Two doses of a fishy agility potion", shopValue:50, lowAlch:2040, highAlch:3060, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11464} -{name:"Prayer mix (2)", itemDescription:"One/two dose(s) of a fishy Prayer potion.", shopValue:114, lowAlch:46, highAlch:69, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11465} -{name:"Prayer mix (2)", itemDescription:"One/two dose(s) of a fishy Prayer potion.", shopValue:114, lowAlch:46, highAlch:69, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11466} -{name:"Prayer mix (1)", itemDescription:"One/two dose(s) of a fishy Prayer potion.", shopValue:76, lowAlch:46, highAlch:69, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11467} -{name:"Prayer mix (1)", itemDescription:"One/two dose(s) of a fishy Prayer potion.", shopValue:76, lowAlch:46, highAlch:69, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11468} -{name:"Superattack mix (2)", itemDescription:"one/two doses of fishy super attack potion", shopValue:135, lowAlch:54, highAlch:81, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11469} -{name:"Superattack mix (2)", itemDescription:"one/two doses of fishy super attack potion", shopValue:135, lowAlch:54, highAlch:81, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11470} -{name:"Superattack mix (1)", itemDescription:"one/two doses of fishy super attack potion", shopValue:90, lowAlch:54, highAlch:81, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11471} -{name:"Superattack mix (1)", itemDescription:"one/two doses of fishy super attack potion", shopValue:90, lowAlch:54, highAlch:81, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11472} -{name:"Anti-p supermix (2)", itemDescription:"One/Two dose(s) of fishy super antipoison potion.", shopValue:216, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11473} -{name:"Anti-p supermix (2)", itemDescription:"One/Two dose(s) of fishy super antipoison potion.", shopValue:216, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11474} -{name:"Anti-p supermix (1)", itemDescription:"One/Two dose(s) of fishy super antipoison potion.", shopValue:144, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11475} -{name:"Anti-p supermix (1)", itemDescription:"One/Two dose(s) of fishy super antipoison potion.", shopValue:144, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11476} -{name:"Fishing mix (2)", itemDescription:"One/Two Doses of fishy fishing potion.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11477} -{name:"Fishing mix (2)", itemDescription:"One/Two Doses of fishy fishing potion.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11478} -{name:"Fishing mix (1)", itemDescription:"One/Two Doses of fishy fishing potion.", shopValue:100, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11479} -{name:"Fishing mix (1)", itemDescription:"One/Two Doses of fishy fishing potion.", shopValue:100, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11480} -{name:"Sup. energy mix (2)", itemDescription:"One/Two doses of fishy super energy potion.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11481} -{name:"Sup. energy mix (2)", itemDescription:"One/Two doses of fishy super energy potion.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11482} -{name:"Sup. energy mix (1)", itemDescription:"One/Two doses of fishy super energy potion.", shopValue:90, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11483} -{name:"Sup. energy mix (1)", itemDescription:"One/Two doses of fishy super energy potion.", shopValue:90, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11484} -{name:"Sup. str. mix (2)", itemDescription:"One/Two doses of fishy Super strength potion.", shopValue:165, lowAlch:66, highAlch:99, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11485} -{name:"Sup. str. mix (2)", itemDescription:"One/Two doses of fishy Super strength potion.", shopValue:165, lowAlch:66, highAlch:99, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11486} -{name:"Sup. str. mix (1)", itemDescription:"One/Two doses of fishy Super strength potion.", shopValue:110, lowAlch:66, highAlch:99, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11487} -{name:"Sup. str. mix (1)", itemDescription:"One/Two doses of fishy Super strength potion.", shopValue:110, lowAlch:66, highAlch:99, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11488} -{name:"Magic ess. mix (2)", itemDescription:"One/Two doses of fishy Magic essence potion.", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11489} -{name:"Magic ess. mix (2)", itemDescription:"One/Two doses of fishy Magic essence potion.", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11490} -{name:"Magic ess. mix (1)", itemDescription:"One/Two doses of fishy Magic essence potion.", shopValue:130, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11491} -{name:"Magic ess. mix (1)", itemDescription:"One/Two doses of fishy Magic essence potion.", shopValue:130, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11492} -{name:"Sup. restore mix (2)", itemDescription:"One/Two doses of fishy super restore potion.", shopValue:180, lowAlch:66, highAlch:99, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11493} -{name:"Sup. restore mix (2)", itemDescription:"One/Two doses of fishy super restore potion.", shopValue:180, lowAlch:66, highAlch:99, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11494} -{name:"Sup. restore mix (1)", itemDescription:"One/Two doses of fishy super restore potion.", shopValue:120, lowAlch:66, highAlch:99, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11495} -{name:"Sup. restore mix (1)", itemDescription:"One/Two doses of fishy super restore potion.", shopValue:120, lowAlch:66, highAlch:99, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11496} -{name:"Sup. def. mix (2)", itemDescription:"One/two doses of fishy super defence potion", shopValue:198, lowAlch:79, highAlch:118, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11497} -{name:"Sup. def. mix (2)", itemDescription:"One/two doses of fishy super defence potion", shopValue:198, lowAlch:79, highAlch:118, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11498} -{name:"Sup. def. mix (1)", itemDescription:"One/two doses of fishy super defence potion", shopValue:132, lowAlch:79, highAlch:118, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11499} -{name:"Sup. def. mix (1)", itemDescription:"One/two doses of fishy super defence potion", shopValue:132, lowAlch:79, highAlch:118, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11500} -{name:"Antidote+ mix (2)", itemDescription:"One/Two doses of fishy extra strength antidote potion.", shopValue:216, lowAlch:5786, highAlch:86129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11501} -{name:"Antidote+ mix (2)", itemDescription:"One/Two doses of fishy extra strength antidote potion.", shopValue:216, lowAlch:5786, highAlch:86129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11502} -{name:"Antidote+ mix (1)", itemDescription:"One/Two doses of fishy extra strength antidote potion.", shopValue:144, lowAlch:5786, highAlch:86129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11503} -{name:"Antidote+ mix (1)", itemDescription:"One/Two doses of fishy extra strength antidote potion.", shopValue:144, lowAlch:5786, highAlch:86129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11504} -{name:"Antifire mix (2)", itemDescription:"One/Two dose(s) of fishy anti-fire breath potion.", shopValue:198, lowAlch:79, highAlch:118, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11505} -{name:"Antifire mix (2)", itemDescription:"One/Two dose(s) of fishy anti-fire breath potion.", shopValue:198, lowAlch:79, highAlch:118, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11506} -{name:"Antifire mix (1)", itemDescription:"One/Two dose(s) of fishy anti-fire breath potion.", shopValue:132, lowAlch:79, highAlch:118, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11507} -{name:"Antifire mix (1)", itemDescription:"One/Two dose(s) of fishy anti-fire breath potion.", shopValue:132, lowAlch:79, highAlch:118, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11508} -{name:"Ranging mix (2)", itemDescription:"One/Two doses of fishy ranging potion.", shopValue:216, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11509} -{name:"Ranging mix (2)", itemDescription:"One/Two doses of fishy ranging potion.", shopValue:216, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11510} -{name:"Ranging mix (1)", itemDescription:"One/Two doses of fishy ranging potion.", shopValue:144, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11511} -{name:"Ranging mix (1)", itemDescription:"One/Two doses of fishy ranging potion.", shopValue:144, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11512} -{name:"Magic mix (2)", itemDescription:"One/Two doses of fishy magic potion.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11513} -{name:"Magic mix (2)", itemDescription:"One/Two doses of fishy magic potion.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11514} -{name:"Magic mix (1)", itemDescription:"One/Two doses of fishy magic potion.", shopValue:150, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11515} -{name:"Magic mix (1)", itemDescription:"One/Two doses of fishy magic potion.", shopValue:150, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11516} -{name:"Hunting mix (2)", itemDescription:"Doses of fishy hunting potion", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11517} -{name:"Hunting mix (2)", itemDescription:"Doses of fishy hunting potion", shopValue:9, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11518} -{name:"Hunting mix (1)", itemDescription:"Doses of fishy hunting potion", shopValue:6, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11519} -{name:"Hunting mix (1)", itemDescription:"Doses of fishy hunting potion", shopValue:6, lowAlch:3, highAlch:5, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11520} -{name:"Zamorak mix (2)", itemDescription:"One/Two doses of fishy Zamorak potion.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11521} -{name:"Zamorak mix (2)", itemDescription:"One/Two doses of fishy Zamorak potion.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11522} -{name:"Zamorak mix (1)", itemDescription:"One/Two doses of fishy Zamorak potion.", shopValue:125, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11523} -{name:"Zamorak mix (1)", itemDescription:"One/Two doses of fishy Zamorak potion.", shopValue:125, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11524} -{name:"Wimpy feather", itemDescription:"More fluff than feather.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11525} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11526} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11527} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11528} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11529} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11530} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11531} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11532} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11533} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11534} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11535} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11536} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11537} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11538} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11539} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11540} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11541} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11542} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11543} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11544} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11545} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11546} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11547} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11548} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11549} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11550} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11551} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11552} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11553} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11554} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11555} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11556} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11557} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11558} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11559} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11560} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11561} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11562} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11563} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11564} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11565} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11566} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11567} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11568} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11569} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11570} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11571} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11572} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11573} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11574} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11575} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11576} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11577} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11578} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11579} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11580} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11581} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11582} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11583} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11584} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11585} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11586} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11587} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11588} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11589} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11590} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11591} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11592} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11593} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11594} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11595} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11596} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11597} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11598} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11599} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11600} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11601} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11602} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11603} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11604} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11605} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11606} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11607} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11608} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11609} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11610} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11611} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11612} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11613} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11614} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11615} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11616} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11617} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11618} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11619} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11620} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11621} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11622} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11623} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11624} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11625} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11626} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11627} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11628} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11629} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11630} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11631} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11632} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11633} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11634} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11635} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11636} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11637} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11638} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11639} -{name:"Book of knowledge", itemDescription:"Educate yourself.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11640} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11641} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11642} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11643} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11644} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11645} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11646} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11647} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11648} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11649} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11650} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11651} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11652} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11653} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11654} -{name:"Astronomy book", itemDescription:"A book on the history of astronomy in RuneScape.", shopValue:617, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Glassblowing book", itemDescription:"A book that explains the art of crafting items from glass.", shopValue:262, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Glassblowing book", itemDescription:"A book that explains the art of crafting items from glass.", shopValue:262, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11658} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11659} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11660} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11661} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11662} -{name:"Void mage helm", itemDescription:"A mage helm from the order of the Void Knights.", shopValue:9851, lowAlch:3940, highAlch:5910, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11663} -{name:"Void ranger helm", itemDescription:"A ranger helm from the order of the Void Knights", shopValue:9851, lowAlch:3940, highAlch:5910, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11664} -{name:"Void melee helm", itemDescription:"A melee helm from the order of the Void Knights.", shopValue:9851, lowAlch:3940, highAlch:5910, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11665} -{name:"Void seal (8)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11666} -{name:"Void seal (7)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11667} -{name:"Void seal (6)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11668} -{name:"Void seal (5)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11669} -{name:"Void seal (4)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11670} -{name:"Void seal (3)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11671} -{name:"Void seal (2)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11672} -{name:"Void seal (1)", itemDescription:"A seal storing the power of the Void Knights.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11673} -{name:"Void mage helm", itemDescription:"A mage helm from the order of the Void Knights.", shopValue:9851, lowAlch:3940, highAlch:5910, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11674} -{name:"Void ranger helm", itemDescription:"A ranger helm from the order of the Void Knights", shopValue:9851, lowAlch:3940, highAlch:5910, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11675} -{name:"Void melee helm", itemDescription:"A melee helm from the order of the Void Knights.", shopValue:9851, lowAlch:3940, highAlch:5910, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11676} -{name:"Explorer's notes", itemDescription:"Beyond Trollheim by Nestor Peregrine.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11677} -{name:"Black knight helm", itemDescription:"A black helm, too small for your head", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11678} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11679} -{name:"Address form", itemDescription:"A change of address form.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11680} -{name:"Scrap paper", itemDescription:"It has something written on it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11681} -{name:"Hair clip", itemDescription:"I could use this to pick the lock.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11682} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11683} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11684} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11685} -{name:"Godsword shards", itemDescription:"Godsword shards 1 and 2.Godsword shards 2 and 3.Godsword shards 1 and 3.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11686} -{name:"Godsword shards", itemDescription:"Godsword shards 1 and 2.Godsword shards 2 and 3.Godsword shards 1 and 3.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11687} -{name:"Godsword shards", itemDescription:"Godsword shards 1 and 2.Godsword shards 2 and 3.Godsword shards 1 and 3.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11688} -{name:"Godsword shards", itemDescription:"Godsword shards 1 and 2.Godsword shards 2 and 3.Godsword shards 1 and 3.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11689} -{name:"Godsword blade", itemDescription:"The blade for the ultimate weapon.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:75.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11690} -{name:"Godsword blade", itemDescription:"The blade for the ultimate weapon.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:75.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11691} -{name:"Godsword shards", itemDescription:"Godsword shards 1 and 2.Godsword shards 2 and 3.Godsword shards 1 and 3.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11692} -{name:"Godsword shards", itemDescription:"Godsword shards 1 and 2.Godsword shards 2 and 3.Godsword shards 1 and 3.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11693} -{name:"Armadyl godsword", itemDescription:"A beautiful, heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11694} -{name:"Armadyl godsword", itemDescription:"A beautiful, heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11695} -{name:"Bandos godsword", itemDescription:"A brutally heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11696} -{name:"Bandos godsword", itemDescription:"A brutally heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11697} -{name:"Saradomin godsword", itemDescription:"A gracious, heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11698} -{name:"Saradomin godsword", itemDescription:"A gracious, heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11699} -{name:"Zamorak godsword", itemDescription:"A terrifying, heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11700} -{name:"Zamorak godsword", itemDescription:"A terrifying, heavy sword.", shopValue:1250000, lowAlch:500000, highAlch:750000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11701} -{name:"Armadyl hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11702} -{name:"Armadyl hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11703} -{name:"Bandos hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11704} -{name:"Bandos hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11705} -{name:"Saradomin hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11706} -{name:"Saradomin hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11707} -{name:"Zamorak hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11708} -{name:"Zamorak hilt", itemDescription:"Brimming with potential.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11709} -{name:"Godsword shard 1", itemDescription:"Part of the Godsword blade.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11710} -{name:"Godsword shard 1", itemDescription:"Part of the Godsword blade.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11711} -{name:"Godsword shard 2", itemDescription:"Part of the Godsword blade.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11712} -{name:"Godsword shard 2", itemDescription:"Part of the Godsword blade.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11713} -{name:"Godsword shard 3", itemDescription:"Part of the Godsword blade.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11714} -{name:"Godsword shard 3", itemDescription:"Part of the Godsword blade.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11715} -{name:"Zamorakian spear", itemDescription:"An evil spear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:30.0, bonuses:[85.0, 65.0, 65.0, 0.0, 0.0, 13.0, 13.0, 12.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11716} -{name:"Zamorakian spear", itemDescription:"An evil spear.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:30.0, bonuses:[85.0, 65.0, 65.0, 0.0, 0.0, 13.0, 13.0, 12.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11717} -{name:"Armadyl helmet", itemDescription:"A helmet of great craftmanship.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 10.0, 6.0, 6.0, 10.0, 10.0, 8.0, 12.0, 0.0, 5.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11718} -{name:"Armadyl helmet", itemDescription:"A helmet of great craftmanship.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 10.0, 6.0, 6.0, 10.0, 10.0, 8.0, 12.0, 0.0, 5.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11719} -{name:"Armadyl chestplate", itemDescription:"A chestplate of great craftsmanship", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -15.0, 33.0, 56.0, 48.0, 61.0, 70.0, 57.0, 52.0, 0.0, 10.0, 5.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11720} -{name:"Armadyl chestplate", itemDescription:"A chestplate of great craftsmanship", shopValue:60000, lowAlch:24000, highAlch:36000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -15.0, 33.0, 56.0, 48.0, 61.0, 70.0, 57.0, 52.0, 0.0, 10.0, 5.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11721} -{name:"Armadyl chainskirt", itemDescription:"A chainskirt of great craftsmanship.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 20.0, 32.0, 26.0, 34.0, 40.0, 33.0, 25.0, 0.0, 7.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11722} -{name:"Armadyl chainskirt", itemDescription:"A chainskirt of great craftsmanship.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 20.0, 32.0, 26.0, 34.0, 40.0, 33.0, 25.0, 0.0, 7.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11723} -{name:"Bandos chestplate", itemDescription:"A sturdy chestplate.", shopValue:265000, lowAlch:106000, highAlch:159000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, -15.0, -10.0, 98.0, 93.0, 105.0, -6.0, 133.0, 52.0, 4.0, 0.0, 9.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11724} -{name:"Bandos chestplate", itemDescription:"A sturdy chestplate.", shopValue:265000, lowAlch:106000, highAlch:159000, isStackable:true, isNoteable:true, weight:12.0, bonuses:[0.0, 0.0, 0.0, -15.0, -10.0, 98.0, 93.0, 105.0, -6.0, 133.0, 52.0, 4.0, 0.0, 9.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11725} -{name:"Bandos tassets", itemDescription:"A sturdy pair of tassets.", shopValue:272500, lowAlch:109000, highAlch:163500, isStackable:false, isNoteable:false, weight:80.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 71.0, 63.0, 66.0, -4.0, 93.0, 25.0, 3.0, 0.0, 6.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11726} -{name:"Bandos tassets", itemDescription:"A sturdy pair of tassets.", shopValue:272500, lowAlch:109000, highAlch:163500, isStackable:true, isNoteable:true, weight:80.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 71.0, 63.0, 66.0, -4.0, 93.0, 25.0, 3.0, 0.0, 6.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11727} -{name:"Bandos boots", itemDescription:"Some sturdy boots", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -5.0, -3.0, 17.0, 18.0, 19.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11728} -{name:"Bandos boots", itemDescription:"Some sturdy boots", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -5.0, -3.0, 17.0, 18.0, 19.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11729} -{name:"Saradomin sword", itemDescription:"The incredible blade of an Icyene.", shopValue:130000, lowAlch:52000, highAlch:78000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 82.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11730} -{name:"Saradomin sword", itemDescription:"The incredible blade of an Icyene.", shopValue:130000, lowAlch:52000, highAlch:78000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 82.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11731} -{name:"Dragon boots", itemDescription:"These will protect my feet.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 16.0, 17.0, 18.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11732} -{name:"Dragon boots", itemDescription:"These will protect my feet.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 16.0, 17.0, 18.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11733} -{name:"Knight's notes", itemDescription:" A scroll for Sir Tiffy. It is sealed with a wax insignia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11734} -{name:"Knight's notes", itemDescription:" A scroll for Sir Tiffy. It is sealed with a wax insignia.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11735} -{name:"Steam battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11736} -{name:"Steam battlestaff", itemDescription:"It's a slightly magical stick.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11737} -{name:"Mystic steam staff", itemDescription:"It's a slightly magical stick.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:20.0, bonuses:[7.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11738} -{name:"Mystic steam staff", itemDescription:"It's a slightly magical stick.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:20.0, bonuses:[7.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11739} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11740} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11741} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11742} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11743} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11744} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11745} -{name:"Agility jump", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11746} -{name:"A key to a chest", itemDescription:"This probably opens a chest in Golrie's caves. (Path of Glophrie)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11747} -{name:"Strongroom key", itemDescription:"This opens the door into Golrie's strongroom. (Path of Glophrie)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11748} -{name:"Crystal chime", itemDescription:"It makes a sound.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11749} -{name:"Yewnock's notes", itemDescription:"Notes written by Yewnock while copying Oaknock's machine.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11750} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11751} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11752} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11753} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11754} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11755} -{name:"Varrock armour 1", itemDescription:"Varrock Smithing armour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 15.0, 14.0, 9.0, -6.0, 14.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11756} -{name:"Varrock armour 2", itemDescription:"Varrock smithing armour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 21.0, 20.0, 12.0, -6.0, 20.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11757} -{name:"Varrock armour 3", itemDescription:"Varrock smithing armour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 32.0, 31.0, 24.0, -6.0, 31.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11758} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11759} -{name:"Logs", itemDescription:"A number of wooden logs.", shopValue:1, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11760} -{name:"Locked diary", itemDescription:"A locked/unlocked diary.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11761} -{name:"Unlocked diary", itemDescription:"A locked/unlocked diary.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11762} -{name:"Hand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11763} -{name:"Foot", itemDescription:"A wizard's severed foot. You can tell by the robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11764} -{name:"Torso", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11765} -{name:"Left arm", itemDescription:"A wizard's severed arm. You can tell by the robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11766} -{name:"Right arm", itemDescription:"A wizard's severed arm. You can tell by the robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11767} -{name:"Left leg", itemDescription:"A wizard's severed leg. You can tell by the robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11768} -{name:"Right leg", itemDescription:"A wizard's severed leg. You can tell by the robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11769} -{name:"Root cutting", itemDescription:"A root cutting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Root cutting", itemDescription:"A root cutting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Root cutting", itemDescription:"A root cutting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Root cutting", itemDescription:"A root cutting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Root cutting", itemDescription:"A root cutting.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Wilted cutting", itemDescription:"A floppy root cutting. Quite dead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Potted root", itemDescription:"A potted root.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Sealed pot", itemDescription:"This sealed pot contains your vine cutting - hopefully still alive.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Jade vine seed", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"The grim reaper's diary", itemDescription:"Surely this holds many a dark tale...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Grim's robe", itemDescription:"Some of the Grim Reaper's garb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Last will and testament", itemDescription:"Someone's Last Will and Testament.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Human bones", itemDescription:"A tasty treat for Muncher.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Servant's skull", itemDescription:"Ooooh spooky!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Hourglass", itemDescription:"There's not much sand left in the top half...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scythe sharpener", itemDescription:"Used to sharpen the blade of a scythe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Human eye", itemDescription:"That's gross. Why am I carrying it around?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"'voice of doom' potion", itemDescription:"A 'Voice of Doom' potion, used to deepen your voice.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Grim reaper hood", itemDescription:"Allows me to imitate the harbinger of doom, the stealer of souls, the eternal end...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Grim reaper hood", itemDescription:"Allows me to imitate the harbinger of doom, the stealer of souls, the eternal end...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"White goblin mail", itemDescription:"Armour designed to fit goblins.", shopValue:0, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Grubfoot", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Zanik", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Plain of mud sphere", itemDescription:"Oldak's Marvellous Moving-Over-Distance Sphere", shopValue:0, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ekeleshuun key", itemDescription:"The key you stole from the Ekeleshuun priest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Narogoshuun key", itemDescription:"The key you stole from the Narogoshuun priest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Huzamogaarb key", itemDescription:"The key you stole from the Huzamogaarb priest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Saragorgak key", itemDescription:"The key you stole from the Saragorgak priest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Horogothgar key", itemDescription:"The key you stole from the Horogothgar priest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Yurkolgokh key", itemDescription:"The key you stole from the Yurkolgokh priest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Snothead's bone", itemDescription:"An ancient goblin bone wrapped in fragments of priestly robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Snailfeet's bone", itemDescription:"An ancient goblin bone wrapped in fragments of priestly robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mosschin's bone", itemDescription:"An ancient goblin bone wrapped in fragments of priestly robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Redeyes's bone", itemDescription:"An ancient goblin bone wrapped in fragments of priestly robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strongbones's bone", itemDescription:"An ancient goblin bone wrapped in fragments of priestly robes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Pharmakos berries", itemDescription:"You can combine these with a toadflax to make a goblin transformation potion.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Whitefish", itemDescription:"An ugly albino fish.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Goblin potion (4)", itemDescription:"X doses of goblin transmogrification potion.", shopValue:0, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Goblin potion (3)", itemDescription:"X doses of goblin transmogrification potion.", shopValue:0, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Goblin potion (2)", itemDescription:"X doses of goblin transmogrification potion.", shopValue:0, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Goblin potion (1)", itemDescription:"X doses of goblin transmogrification potion.", shopValue:0, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze armour set (lg)", itemDescription:"Grand Exchange set containing bronze full helm, platebody, legs and kiteshield.", shopValue:842, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze armour set (lg)", itemDescription:"Grand Exchange set containing bronze full helm, platebody, legs and kiteshield.", shopValue:842, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze armour set (sk)", itemDescription:"Grand Exchange set containing bronze full helm, platebody, skirt and kiteshield.", shopValue:948, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -59.0, -19.0, 27.0, 26.0, 18.0, -11.0, 25.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze armour set (sk)", itemDescription:"Grand Exchange set containing bronze full helm, platebody, skirt and kiteshield.", shopValue:948, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -59.0, -19.0, 27.0, 26.0, 18.0, -11.0, 25.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron armour set (lg)", itemDescription:"Grand Exchange set containing iron full helm, platebody, legs, and kiteshield.", shopValue:1531, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 46.0, 44.0, 33.0, -12.0, 45.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron armour set (lg)", itemDescription:"Grand Exchange set containing iron full helm, platebody, legs, and kiteshield.", shopValue:1531, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 46.0, 44.0, 33.0, -12.0, 45.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron armour set (sk)", itemDescription:"Grand Exchange set containing iron full helm, platebody, skirt, and kiteshield.", shopValue:1287, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 46.0, 44.0, 33.0, -12.0, 45.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron armour set (sk)", itemDescription:"Grand Exchange set containing iron full helm, platebody, skirt, and kiteshield.", shopValue:1287, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 46.0, 44.0, 33.0, -12.0, 45.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel armour set (lg)", itemDescription:"Grand Exchange set containing steel full helm, platebody, legs and kiteshield.", shopValue:3082, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 71.0, 72.0, 60.0, -12.0, 70.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel armour set (lg)", itemDescription:"Grand Exchange set containing steel full helm, platebody, legs and kiteshield.", shopValue:3082, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 71.0, 72.0, 60.0, -12.0, 70.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel armour set (sk)", itemDescription:"Grand Exchange set containing steel full helm, platebody, skirt and kiteshield.", shopValue:3205, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 71.0, 72.0, 60.0, -12.0, 70.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel armour set (sk)", itemDescription:"Grand Exchange set containing steel full helm, platebody, skirt and kiteshield.", shopValue:3205, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 71.0, 72.0, 60.0, -12.0, 70.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black armour set (lg)", itemDescription:"Grand Exchange set containing Black full helm, platebody, legs and kiteshield.", shopValue:13400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black armour set (lg)", itemDescription:"Grand Exchange set containing Black full helm, platebody, legs and kiteshield.", shopValue:13400, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black armour set (sk)", itemDescription:"Grand Exchange set containing a black full helm, platebody, skirt and kiteshield.", shopValue:13300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 78.0, -12.0, 90.0, 27.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black armour set (sk)", itemDescription:"Grand Exchange set containing a black full helm, platebody, skirt and kiteshield.", shopValue:13300, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 78.0, -12.0, 90.0, 27.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril armour set (lg)", itemDescription:"Grand Exchange set containing a mithril full helm, platebody, legs and kiteshield.", shopValue:7955, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 101.0, 102.0, 89.0, -12.0, 97.0, 52.0, 2.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril armour set (lg)", itemDescription:"Grand Exchange set containing a mithril full helm, platebody, legs and kiteshield.", shopValue:7955, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 101.0, 102.0, 89.0, -12.0, 97.0, 52.0, 2.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril armour set (sk)", itemDescription:"Grand Exchange set containing a mithril full helm, platebody, skirt and kiteshield.", shopValue:8275, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 101.0, 102.0, 89.0, -12.0, 99.0, 50.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril armour set (sk)", itemDescription:"Grand Exchange set containing a mithril full helm, platebody, skirt and kiteshield.", shopValue:8275, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 101.0, 102.0, 89.0, -12.0, 99.0, 50.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant armour set (lg)", itemDescription:"Grand Exchange set containing an adamant full helm, platebody, legs and kiteshield.", shopValue:20600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant armour set (lg)", itemDescription:"Grand Exchange set containing an adamant full helm, platebody, legs and kiteshield.", shopValue:20600, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant armour set (sk)", itemDescription:"Grand Exchange set containing an adamant full helm, platebody, skirt and kiteshield.", shopValue:20900, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant armour set (sk)", itemDescription:"Grand Exchange set containing an adamant full helm, platebody, skirt and kiteshield.", shopValue:20900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune armour set (lg)", itemDescription:"Grand Exchange set containing a rune full helm, platebody, legs and kiteshield.", shopValue:133800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune armour set (lg)", itemDescription:"Grand Exchange set containing a rune full helm, platebody, legs and kiteshield.", shopValue:133800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune armour set (sk)", itemDescription:"Grand Exchange set containing a rune full helm, platebody, skirt and kiteshield.", shopValue:135900, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune armour set (sk)", itemDescription:"Grand Exchange set containing a rune full helm, platebody, skirt and kiteshield.", shopValue:135900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dragon chain armour set (lg)", itemDescription:"Grand Exchange set containing a dragon med helm, chainbody, legs.", shopValue:4400000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -39.0, -8.0, 182.0, 194.0, 193.0, -8.0, 181.0, 80.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dragon chain armour set (lg)", itemDescription:"Grand Exchange set containing a dragon med helm, chainbody, legs.", shopValue:4400000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -39.0, -8.0, 182.0, 194.0, 193.0, -8.0, 181.0, 80.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dragon chain armour set (sk)", itemDescription:"Grand Exchange set containing Dragon medium helm, chainbody, skirt.", shopValue:4400000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -39.0, -8.0, 182.0, 194.0, 193.0, -8.0, 181.0, 80.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dragon chain armour set (sk)", itemDescription:"Grand Exchange set containing Dragon medium helm, chainbody, skirt.", shopValue:4400000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -39.0, -8.0, 182.0, 194.0, 193.0, -8.0, 181.0, 80.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - ahrim's set", itemDescription:"Grand Exchange set containing Ahrim's robetop, robeskirt, hood, and staff.", shopValue:4600000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[12.0, -1.0, 65.0, 73.0, -19.0, 103.0, 85.0, 117.0, 73.0, 0.0, 105.0, 22.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - ahrim's set", itemDescription:"Grand Exchange set containing Ahrim's robetop, robeskirt, hood, and staff.", shopValue:4600000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[12.0, -1.0, 65.0, 73.0, -19.0, 103.0, 85.0, 117.0, 73.0, 0.0, 105.0, 22.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - dharok's set", itemDescription:"Grand Exchange set containing Dharok's helm, body, legs and greataxe.", shopValue:3329457, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - dharok's set", itemDescription:"Grand Exchange set containing Dharok's helm, body, legs and greataxe.", shopValue:3329457, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - guthan's set", itemDescription:"Grand Exchange set containing Guthan's helm, platebody, chainskirt and warspear.", shopValue:1500000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - guthan's set", itemDescription:"Grand Exchange set containing Guthan's helm, platebody, chainskirt and warspear.", shopValue:1500000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - karil's set", itemDescription:"A Grand Exchange set containing Karil's coif, crossbow, leather body, and leather skirt.", shopValue:3000000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - karil's set", itemDescription:"A Grand Exchange set containing Karil's coif, crossbow, leather body, and leather skirt.", shopValue:3000000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - torag's set", itemDescription:"Grand Exchange set containing Torag's helm, body, legs and hammers.", shopValue:1200000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - torag's set", itemDescription:"Grand Exchange set containing Torag's helm, body, legs and hammers.", shopValue:1200000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - verac's set", itemDescription:"Grand Exchange set containing Verac's helm, brassard, plateskirt and flail.", shopValue:2056000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrows - verac's set", itemDescription:"Grand Exchange set containing Verac's helm, brassard, plateskirt and flail.", shopValue:2056000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Third-age melee set", itemDescription:"Grand Exchange set containing a helm, body, legs and shield", shopValue:401000000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Third-age melee set", itemDescription:"Grand Exchange set containing a helm, body, legs and shield", shopValue:401000000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:20.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Third-age ranger set", itemDescription:"Grand Exchange set containing coif, body, chaps and vambraces.", shopValue:91900000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Third-age ranger set", itemDescription:"Grand Exchange set containing coif, body, chaps and vambraces.", shopValue:91900000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Third-age mage set", itemDescription:"Grand Exchange set containing a body, legs, amulet and hat", shopValue:163100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Third-age mage set", itemDescription:"Grand Exchange set containing a body, legs, amulet and hat", shopValue:163100000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:8523, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -40.0, 31.0, 65.0, 50.0, 73.0, 30.0, 62.0, 58.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:8523, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -40.0, 31.0, 65.0, 50.0, 73.0, 30.0, 62.0, 58.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:9645, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:9645, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Red dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:14900, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Red dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:14900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:16400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black dragonhide set", itemDescription:"Grand Exchange set containing body, chaps and vambraces.", shopValue:16400, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mystic robes set", itemDescription:"Grand Exchange set containing mystic hat, top, bottoms, gloves, and boots.", shopValue:160700, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 42.0, 10.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mystic robes set", itemDescription:"Grand Exchange set containing mystic hat, top, bottoms, gloves, and boots.", shopValue:160700, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 42.0, 10.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infinity robes set", itemDescription:"Grand Exchange set containing hat, top, bottoms, gloves, and boots", shopValue:8400000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infinity robes set", itemDescription:"Grand Exchange set containing hat, top, bottoms, gloves, and boots", shopValue:8400000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Splitbark armour set", itemDescription:"Grand Exchange set containing a helm, body, boots, gauntlets and legs.", shopValue:108400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 24.0, -21.0, 74.0, 59.0, 86.0, 32.0, 0.0, 74.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Splitbark armour set", itemDescription:"Grand Exchange set containing a helm, body, boots, gauntlets and legs.", shopValue:108400, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 24.0, -21.0, 74.0, 59.0, 86.0, 32.0, 0.0, 74.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black trimmed armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield.", shopValue:357700, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black trimmed armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield.", shopValue:357700, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black trimmed armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield.", shopValue:327500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black trimmed armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield.", shopValue:327500, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black gold-trimmed armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield.", shopValue:1400000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black gold-trimmed armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield.", shopValue:1400000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black gold-trimmed armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield.", shopValue:1200000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Black gold-trimmed armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield.", shopValue:1200000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant trimmed armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:310000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant trimmed armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:310000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant trimmed armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:286700, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant trimmed armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:286700, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant gold-trimmed armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield.", shopValue:902700, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant gold-trimmed armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield.", shopValue:902700, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant gold-trimmed armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield.", shopValue:878000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant gold-trimmed armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield.", shopValue:878000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune trimmed armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:708900, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune trimmed armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:708900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune trimmed armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:658800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune trimmed armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:658800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune gold-trimmed armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:1672902, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune gold-trimmed armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:1672902, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune gold-trimmed armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:1500000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune gold-trimmed armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:1500000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Enchanted set", itemDescription:"Grand Exchange set containing hat, robetops and bottoms", shopValue:231300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Enchanted set", itemDescription:"Grand Exchange set containing hat, robetops and bottoms", shopValue:231300, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Trimmed blue wizard set", itemDescription:"Grand Exchange set containing hat, robetops and bottoms", shopValue:1100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Trimmed blue wizard set", itemDescription:"Grand Exchange set containing hat, robetops and bottoms", shopValue:1100000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold-trimmed blue wizard set", itemDescription:"Grand Exchange set containing hat, robe top and bottom", shopValue:4100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold-trimmed blue wizard set", itemDescription:"Grand Exchange set containing hat, robe top and bottom", shopValue:4100000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Trimmed leather armour set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:81700, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Trimmed leather armour set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:81700, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold-trimmed leather armour set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:175600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold-trimmed leather armour set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:175600, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green d'hide trimmed set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:402400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -40.0, 31.0, 65.0, 50.0, 73.0, 30.0, 62.0, 58.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green d'hide trimmed set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:402400, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -40.0, 31.0, 65.0, 50.0, 73.0, 30.0, 62.0, 58.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green d'hide gold-trimmed set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:1800000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -40.0, 31.0, 65.0, 50.0, 73.0, 30.0, 62.0, 58.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green d'hide gold-trimmed set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:1800000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -40.0, 31.0, 65.0, 50.0, 73.0, 30.0, 62.0, 58.0, 0.0, 10.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue d'hide trimmed set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:42200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue d'hide trimmed set", itemDescription:"Grand Exchange set containing body and chaps", shopValue:42200, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue d'hide gold-trimmed set", itemDescription:"Grand Exchange set containing body and chaps.", shopValue:51000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue d'hide gold-trimmed set", itemDescription:"Grand Exchange set containing body and chaps.", shopValue:51000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:222700, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:222700, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:516600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:516600, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Red d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:670151, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Red d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:670151, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Guthix armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and shield", shopValue:1200000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Guthix armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and shield", shopValue:1200000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Saradomin armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield", shopValue:4000000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Saradomin armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield", shopValue:4000000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Zamorak armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield", shopValue:2300000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Zamorak armour set (lg)", itemDescription:"Grand Exchange set containing full helm, platebody, legs and kiteshield", shopValue:2300000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Guthix armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield", shopValue:1100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Guthix armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield", shopValue:1100000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Saradomin armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield", shopValue:3900000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Saradomin armour set (sk)", itemDescription:"Grand Exchange set containing full helm, platebody, skirt and kiteshield", shopValue:3900000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Zamorak armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield", shopValue:2200000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Zamorak armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield", shopValue:2200000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gilded armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:5900000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gilded armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:5900000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gilded armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:4200000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gilded armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:4200000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rock-shell armour set", itemDescription:"Grand Exchange set containing helm, platebody, legs, boots and gloves", shopValue:153400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rock-shell armour set", itemDescription:"Grand Exchange set containing helm, platebody, legs, boots and gloves", shopValue:153400, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Spined armour set", itemDescription:"Grand Exchange set containing helm, body, chaps, boots and gloves", shopValue:82000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[-6.0, -6.0, -6.0, -31.0, 29.0, 68.0, 56.0, 78.0, 34.0, 62.0, 47.0, 0.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Spined armour set", itemDescription:"Grand Exchange set containing helm, body, chaps, boots and gloves", shopValue:82000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[-6.0, -6.0, -6.0, -31.0, 29.0, 68.0, 56.0, 78.0, 34.0, 62.0, 47.0, 0.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Skeletal armour set", itemDescription:"Grand Exchange set containing helm, top, bottoms, boots and gloves", shopValue:141800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Skeletal armour set", itemDescription:"Grand Exchange set containing helm, top, bottoms, boots and gloves", shopValue:141800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Snow globe", itemDescription:"A tiny model of Lumbridge Castle inside a glass dome.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Snow globe", itemDescription:"A tiny model of Lumbridge Castle inside a glass dome.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Snowball", itemDescription:"Made from snow. / It's a ball of snow! Uncanny. / How did this not melt in the box?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ice sword", itemDescription:"Add this to a snowman to make a snow warrior.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Winter staff", itemDescription:"Add this to a snowman to make a snow mage.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Holly bow", itemDescription:"Add this to a snowman to make a snow ranger.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barbarian snowman hat", itemDescription:"Add this to a snowman to make a barbarian snowman.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dragon snowman hat", itemDescription:"It's actually made of cardboard, but it looks like a dragon full helm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dwarf snowman hat", itemDescription:"Use this to make your snowman look like a dwarf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Pirate snowman hat", itemDescription:"Arr! Shiver me snowman!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Snowman top hat", itemDescription:"The most traditional snowman hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Light mystic robes set", itemDescription:"Grand Exchange set containing hat, top, bottoms, gloves, and boots", shopValue:429800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 42.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Light mystic robes set", itemDescription:"Grand Exchange set containing hat, top, bottoms, gloves, and boots", shopValue:429800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 42.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dark mystic robes set", itemDescription:"Grand Exchange set containing hat, top, bottoms, gloves, and boots", shopValue:310800, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 42.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dark mystic robes set", itemDescription:"Grand Exchange set containing hat, top, bottoms, gloves, and boots", shopValue:310800, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 42.0, 13.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Raven egg", itemDescription:"I can hatch this in an incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Vulture egg", itemDescription:"I can hatch this in an incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bird's nest", itemDescription:" ", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dwarf cannon set", itemDescription:"Grand Exchange set containing cannon base, stand, barrels and furnace.", shopValue:688287, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dwarf cannon set", itemDescription:"Grand Exchange set containing cannon base, stand, barrels and furnace.", shopValue:688287, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Enchanted water tiara", itemDescription:"A water tiara infused with water runes. Protects from the hot desert sun.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 5.0, 5.0, 5.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smelly crate", itemDescription:"A crate full of distressed gear.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Full crate", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Empty crate", itemDescription:"An empty crate, ready for bronze gear.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabaras research", itemDescription:"A book of research on Scabarite history.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Artefact receipt", itemDescription:"Issued by Simon Templeton.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Scabarite notes", itemDescription:"Different for each note, see article.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11993} -{name:"Scabarite key", itemDescription:"Newly made, but to an ancient pattern. (Dealing with Scabaras)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11994} -{name:"Oxidised dagger", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11995} -{name:"Oxidised medium helm", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11996} -{name:"Oxidised sword", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11997} -{name:"Oxidised scimitar", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11998} -{name:"Oxidised longsword", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:11999} -{name:"Oxidised full helm", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12000} -{name:"Oxidised square shield", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12001} -{name:"Oxidised chainbody", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12002} -{name:"Oxidised kiteshield", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12003} -{name:"Oxidised two-handed sword", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12004} -{name:"Oxidised platelegs", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12005} -{name:"Oxidised plateskirt", itemDescription:"It has been oxidised.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12006} -{name:"Spirit terrorbird pouch", itemDescription:"", shopValue:724, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12007} -{name:"Spirit terrorbird pouch", itemDescription:"", shopValue:724, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12008} -{name:"Granite crab pouch", itemDescription:"", shopValue:599, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12009} -{name:"Granite crab pouch", itemDescription:"", shopValue:599, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12010} -{name:"Praying mantis pouch", itemDescription:"", shopValue:4624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12011} -{name:"Praying mantis pouch", itemDescription:"", shopValue:4624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12012} -{name:"Giant ent pouch", itemDescription:"", shopValue:3524, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12013} -{name:"Giant ent pouch", itemDescription:"", shopValue:3524, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12014} -{name:"Spirit cobra pouch", itemDescription:"", shopValue:3324, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12015} -{name:"Spirit cobra pouch", itemDescription:"", shopValue:3324, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12016} -{name:"Spirit dagannoth pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12017} -{name:"Spirit dagannoth pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12018} -{name:"Thorny snail pouch", itemDescription:"", shopValue:649, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12019} -{name:"Thorny snail pouch", itemDescription:"", shopValue:649, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12020} -{name:"Beaver pouch", itemDescription:"", shopValue:2224, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12021} -{name:"Beaver pouch", itemDescription:"", shopValue:2224, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12022} -{name:"Karam. overlord pouch", itemDescription:"", shopValue:4024, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12023} -{name:"Karam. overlord pouch", itemDescription:"", shopValue:4024, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12024} -{name:"Hydra pouch", itemDescription:"", shopValue:3624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12025} -{name:"Hydra pouch", itemDescription:"", shopValue:3624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12026} -{name:"Spirit jelly pouch", itemDescription:"", shopValue:4199, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12027} -{name:"Spirit jelly pouch", itemDescription:"", shopValue:4199, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12028} -{name:"Bunyip pouch", itemDescription:"", shopValue:3174, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12029} -{name:"Bunyip pouch", itemDescription:"", shopValue:3174, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12030} -{name:"War tortoise pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12031} -{name:"War tortoise pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12032} -{name:"Fruit bat pouch", itemDescription:"", shopValue:3674, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12033} -{name:"Fruit bat pouch", itemDescription:"", shopValue:3674, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12034} -{name:"Abyssal parasite pouch", itemDescription:"", shopValue:3074, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12035} -{name:"Abyssal parasite pouch", itemDescription:"", shopValue:3074, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12036} -{name:"Abyssal lurker pouch", itemDescription:"", shopValue:3399, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12037} -{name:"Abyssal lurker pouch", itemDescription:"", shopValue:3399, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12038} -{name:"Unicorn stallion pouch", itemDescription:"", shopValue:3924, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12039} -{name:"Unicorn stallion pouch", itemDescription:"", shopValue:3924, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12040} -{name:"Magpie pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12041} -{name:"Magpie pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12042} -{name:"Dreadfowl pouch", itemDescription:"", shopValue:624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12043} -{name:"Dreadfowl pouch", itemDescription:"", shopValue:624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12044} -{name:"Stranger plant pouch", itemDescription:"", shopValue:3624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12045} -{name:"Stranger plant pouch", itemDescription:"", shopValue:3624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12046} -{name:"Spirit wolf pouch", itemDescription:"", shopValue:599, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12047} -{name:"Spirit wolf pouch", itemDescription:"", shopValue:599, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12048} -{name:"Desert wyrm pouch", itemDescription:"", shopValue:1549, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12049} -{name:"Desert wyrm pouch", itemDescription:"", shopValue:1549, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12050} -{name:"Evil turnip pouch", itemDescription:"", shopValue:3024, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12051} -{name:"Evil turnip pouch", itemDescription:"", shopValue:3024, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12052} -{name:"Vampire bat pouch", itemDescription:"", shopValue:2449, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12053} -{name:"Vampire bat pouch", itemDescription:"", shopValue:2449, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12054} -{name:"Spirit scorpion pouch", itemDescription:"", shopValue:1849, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12055} -{name:"Spirit scorpion pouch", itemDescription:"", shopValue:1849, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12056} -{name:"Arctic bear pouch", itemDescription:"", shopValue:774, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12057} -{name:"Arctic bear pouch", itemDescription:"", shopValue:774, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12058} -{name:"Spirit spider pouch", itemDescription:"", shopValue:624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12059} -{name:"Spirit spider pouch", itemDescription:"", shopValue:624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12060} -{name:"Bloated leech pouch", itemDescription:"", shopValue:3349, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12061} -{name:"Bloated leech pouch", itemDescription:"", shopValue:3349, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12062} -{name:"Spirit kalphite pouch", itemDescription:"", shopValue:1699, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12063} -{name:"Spirit kalphite pouch", itemDescription:"", shopValue:1699, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12064} -{name:"Honey badger pouch", itemDescription:"", shopValue:2524, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12065} -{name:"Honey badger pouch", itemDescription:"", shopValue:2524, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12066} -{name:"Albino rat pouch", itemDescription:"", shopValue:2299, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12067} -{name:"Albino rat pouch", itemDescription:"", shopValue:2299, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12068} -{name:"Granite lobster pouch", itemDescription:"", shopValue:4574, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12069} -{name:"Granite lobster pouch", itemDescription:"", shopValue:4574, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12070} -{name:"Macaw pouch", itemDescription:"", shopValue:2374, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12071} -{name:"Macaw pouch", itemDescription:"", shopValue:2374, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12072} -{name:"Bronze minotaur pouch", itemDescription:"", shopValue:2974, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12073} -{name:"Bronze minotaur pouch", itemDescription:"", shopValue:2974, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12074} -{name:"Iron minotaur pouch", itemDescription:"", shopValue:3549, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12075} -{name:"Iron minotaur pouch", itemDescription:"", shopValue:3549, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12076} -{name:"Steel minotaur pouch", itemDescription:"", shopValue:3949, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12077} -{name:"Steel minotaur pouch", itemDescription:"", shopValue:3949, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12078} -{name:"Mithril minotaur pouch", itemDescription:"", shopValue:4224, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12079} -{name:"Mithril minotaur pouch", itemDescription:"", shopValue:4224, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12080} -{name:"Adamant minotaur pouch", itemDescription:"", shopValue:4024, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12081} -{name:"Adamant minotaur pouch", itemDescription:"", shopValue:4024, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12082} -{name:"Rune minotaur pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12083} -{name:"Rune minotaur pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12084} -{name:"Smoke devil pouch", itemDescription:"", shopValue:3949, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12085} -{name:"Smoke devil pouch", itemDescription:"", shopValue:3949, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12086} -{name:"Bull ant pouch", itemDescription:"", shopValue:699, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12087} -{name:"Bull ant pouch", itemDescription:"", shopValue:699, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12088} -{name:"Wolpertinger pouch", itemDescription:"", shopValue:5499, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12089} -{name:"Wolpertinger pouch", itemDescription:"", shopValue:5499, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12090} -{name:"Compost mound pouch", itemDescription:"", shopValue:1599, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12091} -{name:"Compost mound pouch", itemDescription:"", shopValue:1599, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12092} -{name:"Pack yak pouch", itemDescription:"", shopValue:5699, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12093} -{name:"Pack yak pouch", itemDescription:"", shopValue:5699, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12094} -{name:"Sp. cockatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12095} -{name:"Sp. cockatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12096} -{name:"Sp. guthatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12097} -{name:"Sp. guthatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12098} -{name:"Sp. saratrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12099} -{name:"Sp. saratrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12100} -{name:"Sp. zamatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12101} -{name:"Sp. zamatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12102} -{name:"Sp. pengatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12103} -{name:"Sp. pengatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12104} -{name:"Sp. coraxatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12105} -{name:"Sp. coraxatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12106} -{name:"Sp. vulatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12107} -{name:"Sp. vulatrice pouch", itemDescription:"", shopValue:2624, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12108} -{name:"Cockatrice egg", itemDescription:"A stripy brown egg.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12109} -{name:"Cockatrice egg", itemDescription:"A stripy brown egg.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12110} -{name:"Guthatrice egg", itemDescription:"A stripy green egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12111} -{name:"Guthatrice egg", itemDescription:"A stripy green egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12112} -{name:"Saratrice egg", itemDescription:"A stripy blue egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12113} -{name:"Saratrice egg", itemDescription:"A stripy blue egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12114} -{name:"Zamatrice egg", itemDescription:"A stripy red egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12115} -{name:"Zamatrice egg", itemDescription:"A stripy red egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12116} -{name:"Pengatrice egg", itemDescription:"A stripy grey egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12117} -{name:"Pengatrice egg", itemDescription:"A stripy grey egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12118} -{name:"Coraxatrice egg", itemDescription:"A stripy black egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12119} -{name:"Coraxatrice egg", itemDescription:"A stripy black egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12120} -{name:"Vulatrice egg", itemDescription:"A stripy pink egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12121} -{name:"Vulatrice egg", itemDescription:"A stripy pink egg.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12122} -{name:"Barker toad pouch", itemDescription:"", shopValue:699, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12123} -{name:"Barker toad pouch", itemDescription:"", shopValue:699, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12124} -{name:"Flies", itemDescription:"A swarm of little flies.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12125} -{name:"Flies", itemDescription:"A swarm of little flies.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12126} -{name:"Beetle bits", itemDescription:"Some beetle bits.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12127} -{name:"Beetle bits", itemDescription:"Some beetle bits.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12128} -{name:"Ground fishing bait", itemDescription:"Good for feeding birds.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12129} -{name:"Nuts", itemDescription:"Mmmm...nuts.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12130} -{name:"Nuts", itemDescription:"Mmmm...nuts.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12131} -{name:"Truffle", itemDescription:"Makes me want to do a truffle shuffle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12132} -{name:"Truffle", itemDescription:"Makes me want to do a truffle shuffle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12133} -{name:"Evil turnip", itemDescription:"An evil turnip.", shopValue:30, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12134} -{name:"Evil turnip", itemDescription:"An evil turnip.", shopValue:30, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12135} -{name:"2/3 evil turnip", itemDescription:"An evil turnip.", shopValue:20, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12136} -{name:"2/3 evil turnip", itemDescription:"An evil turnip.", shopValue:20, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12137} -{name:"1/3 evil turnip", itemDescription:"An evil turnip.", shopValue:10, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12138} -{name:"1/3 evil turnip", itemDescription:"An evil turnip.", shopValue:10, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12139} -{name:"Summoning potion (4)", itemDescription:"(X) doses of Summoning potion.", shopValue:190, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12140} -{name:"Summoning potion (4)", itemDescription:"(X) doses of Summoning potion.", shopValue:190, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12141} -{name:"Summoning potion (3)", itemDescription:"(X) doses of Summoning potion.", shopValue:152, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12142} -{name:"Summoning potion (3)", itemDescription:"(X) doses of Summoning potion.", shopValue:152, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12143} -{name:"Summoning potion (2)", itemDescription:"(X) doses of Summoning potion.", shopValue:114, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12144} -{name:"Summoning potion (2)", itemDescription:"(X) doses of Summoning potion.", shopValue:114, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12145} -{name:"Summoning potion (1)", itemDescription:"(X) doses of Summoning potion.", shopValue:76, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12146} -{name:"Summoning potion (1)", itemDescription:"(X) doses of Summoning potion.", shopValue:76, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12147} -{name:"Evil turnip seed", itemDescription:"", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12148} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12149} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12150} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12151} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12152} -{name:"Carved evil turnip", itemDescription:"Utterly terrifying!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12153} -{name:"Carved evil turnip", itemDescription:"Utterly terrifying!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12154} -{name:"Pouch", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12155} -{name:"Honeycomb", itemDescription:"This is what bees craft.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12156} -{name:"Honeycomb", itemDescription:"This is what bees craft.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12157} -{name:"Gold charm", itemDescription:"A charm used to summon familiars.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12158} -{name:"Green charm", itemDescription:"A charm used to summon familiars.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12159} -{name:"Crimson charm", itemDescription:"A charm used to summon familiars.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12160} -{name:"Abyssal charm", itemDescription:"A charm used to summon familiars", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12161} -{name:"Talon beast charm", itemDescription:"A charm used to summon talon beasts.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12162} -{name:"Blue charm", itemDescription:"A charm used to summon familiars.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12163} -{name:"Ravager charm", itemDescription:"A charm needed to summon a Void ravager.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12164} -{name:"Shifter charm", itemDescription:"A charm needed to summon a Void shifter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12165} -{name:"Spinner charm", itemDescription:"A charm needed to summon a Void Spinner.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12166} -{name:"Torcher charm", itemDescription:"A charm needed to summon a Void torcher.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12167} -{name:"Obsidian charm", itemDescription:"A charm used to summon familiars.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12168} -{name:"Summoning cape", itemDescription:"The cape worn by master summoners.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12169} -{name:"Summoning cape (t)", itemDescription:"The cape worn by master summoners.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12170} -{name:"Summoning hood", itemDescription:"Summoning skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12171} -{name:"Clean spirit weed", itemDescription:"A fresh herb.", shopValue:24, lowAlch:9, highAlch:14, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12172} -{name:"Clean spirit weed", itemDescription:"A fresh herb.", shopValue:24, lowAlch:9, highAlch:14, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12173} -{name:"Grimy spirit weed", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12174} -{name:"Grimy spirit weed", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12175} -{name:"Spirit weed seed", itemDescription:"", shopValue:18, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12176} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12177} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12178} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12179} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12180} -{name:"Spirit weed potion (unf)", itemDescription:"I need another ingredient to finish this spirit weed potion.", shopValue:23, lowAlch:9, highAlch:13, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12181} -{name:"Spirit weed potion (unf)", itemDescription:"I need another ingredient to finish this spirit weed potion.", shopValue:23, lowAlch:9, highAlch:13, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12182} -{name:"Spirit shards", itemDescription:"Shards of an obelisk.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12183} -{name:"Gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12184} -{name:"Saradomin owl", itemDescription:" A fantastic saradomin owl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12185} -{name:"Zamorak hawk", itemDescription:" A stately zamorak hawk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12186} -{name:"Guthix raptor", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12187} -{name:"Penguin", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12188} -{name:"Bird", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12189} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12190} -{name:"Terrier puppy", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12191} -{name:"Greyhound puppy", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12192} -{name:"Labrador puppy", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12193} -{name:"Dalmatian puppy", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12194} -{name:"Sheepdog puppy", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12195} -{name:"Bulldog puppy", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12196} -{name:"Dragon hatchling", itemDescription:"(hatchling) A hatchling <dragon colour> dragon.(baby) A bigger baby <colour> dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12197} -{name:"Baby giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12198} -{name:"Baby raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12199} -{name:"Squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12200} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12201} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12202} -{name:"Chameleon", itemDescription:"It's a colour-coordinated lizard!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12203} -{name:"Antlers", itemDescription:"Doors could be a problem, wearing these...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12204} -{name:"Antlers", itemDescription:"Doors could be a problem, wearing these...", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12205} -{name:"Antlers (charged)", itemDescription:"Doors could be a problem, wearing these...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12206} -{name:"Lizard skull", itemDescription:"It's a little smelly in there.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0, 2.0, 3.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12207} -{name:"Lizard skull", itemDescription:"It's a little smelly in there.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0, 2.0, 3.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12208} -{name:"Lizard skull (charged)", itemDescription:"It's a little smelly in there.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 3.0, 4.0, 2.0, 3.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12209} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12210} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12211} -{name:"Feather headdress (charged)", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:0, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12212} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12213} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12214} -{name:"Feather headdress (charged)", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:0, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12215} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12216} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12217} -{name:"Feather headdress (charged)", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:0, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12218} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12219} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12220} -{name:"Feather headdress (charged)", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:0, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12221} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12222} -{name:"Feather headdress", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12223} -{name:"Feather headdress (charged)", itemDescription:"It's fun to go to the O-B-E-L-I-S-K!", shopValue:0, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12224} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12225} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12226} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12227} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12228} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12229} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12230} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12231} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12232} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12233} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12234} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12235} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12236} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12237} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12238} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12239} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12240} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12241} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12242} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12243} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12244} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12245} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12246} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12247} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12248} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12249} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12250} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12251} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12252} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12253} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12254} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12255} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12256} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12257} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12258} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12259} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12260} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12261} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12262} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12263} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12264} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12265} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12266} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12267} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12268} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12269} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12270} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12271} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12272} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12273} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12274} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12275} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12276} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12277} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12278} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12279} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12280} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12281} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12282} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12283} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12284} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12285} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12286} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12287} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12288} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12289} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12290} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12291} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12292} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12293} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12294} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12295} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12296} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12297} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12298} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12299} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12300} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12301} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12302} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12303} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12304} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12305} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12306} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12307} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12308} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12309} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12310} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12311} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12312} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12313} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12314} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12315} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12316} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12317} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12318} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12319} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12320} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12321} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12322} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12323} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12324} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12325} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12326} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12327} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12328} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12329} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12330} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12331} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12332} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12333} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12334} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12335} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12336} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12337} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12338} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12339} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12340} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12341} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12342} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12343} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12344} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12345} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12346} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12347} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12348} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12349} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12350} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12351} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12352} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12353} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12354} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12355} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12356} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12357} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12358} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12359} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12360} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12361} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12362} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12363} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12364} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12365} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12366} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12367} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12368} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12369} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12370} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12371} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12372} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12373} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12374} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12375} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12376} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12377} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12378} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12379} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12380} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12381} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12382} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12383} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12384} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12385} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12386} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12387} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12388} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12389} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12390} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12391} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12392} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12393} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12394} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12395} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12396} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12397} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12398} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12399} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12400} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12401} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12402} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12403} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12404} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12405} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12406} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12407} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12408} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12409} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12410} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12411} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12412} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12413} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12414} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12415} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12416} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12417} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12418} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12419} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12420} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12421} -{name:"Herbcall scroll", itemDescription:"", shopValue:237, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12422} -{name:"Fruitfall scroll", itemDescription:"", shopValue:367, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12423} -{name:"Fish rain scroll", itemDescription:"", shopValue:314, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12424} -{name:"Howl scroll", itemDescription:"", shopValue:59, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12425} -{name:"Thieving fingers scroll", itemDescription:"", shopValue:262, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12426} -{name:"Abyssal stealth scroll", itemDescription:"", shopValue:339, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12427} -{name:"Egg spawn scroll", itemDescription:"", shopValue:62, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12428} -{name:"Multichop scroll", itemDescription:"", shopValue:222, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12429} -{name:"Cheese feast scroll", itemDescription:"", shopValue:229, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12430} -{name:"Unburden scroll", itemDescription:"", shopValue:69, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12431} -{name:"Venom shot scroll", itemDescription:"", shopValue:184, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12432} -{name:"Insane ferocity scroll", itemDescription:"", shopValue:252, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12433} -{name:"Healing aura scroll", itemDescription:"", shopValue:392, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12434} -{name:"Winter storage scroll", itemDescription:"", shopValue:569, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12435} -{name:"Oph. incubation scroll", itemDescription:"", shopValue:332, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12436} -{name:"Magic focus scroll", itemDescription:"", shopValue:549, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12437} -{name:"Swallow whole scroll", itemDescription:"", shopValue:317, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12438} -{name:"Testudo scroll", itemDescription:"", shopValue:44, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12439} -{name:"Generate compost scroll", itemDescription:"", shopValue:159, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12440} -{name:"Tireless run scroll", itemDescription:"", shopValue:72, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12441} -{name:"Regrowth scroll", itemDescription:"", shopValue:362, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12442} -{name:"Call to arms scroll", itemDescription:"", shopValue:227, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12443} -{name:"Blood drain scroll", itemDescription:"", shopValue:334, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12444} -{name:"Dreadfowl strike scroll", itemDescription:"", shopValue:62, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12445} -{name:"Sandstorm scroll", itemDescription:"", shopValue:169, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12446} -{name:"Vampire touch scroll", itemDescription:"", shopValue:244, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12447} -{name:"Evil flames scroll", itemDescription:"", shopValue:302, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12448} -{name:"Crushing claw scroll", itemDescription:"", shopValue:457, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12449} -{name:"Mantis strike scroll", itemDescription:"", shopValue:462, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12450} -{name:"Arctic blast scroll", itemDescription:"", shopValue:77, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12451} -{name:"Toad bark scroll", itemDescription:"", shopValue:69, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12452} -{name:"Dissolve scroll", itemDescription:"", shopValue:419, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12453} -{name:"Abyssal drain scroll", itemDescription:"", shopValue:307, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12454} -{name:"Doomsphere scroll", itemDescription:"", shopValue:402, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12455} -{name:"Spike shot scroll", itemDescription:"", shopValue:44, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12456} -{name:"Acorn missile scroll", itemDescription:"", shopValue:352, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12457} -{name:"Petrifying gaze scroll", itemDescription:"", shopValue:262, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12458} -{name:"Slime spray scroll", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12459} -{name:"Electric lash scroll", itemDescription:"", shopValue:154, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12460} -{name:"Bronze bull rush scroll", itemDescription:"", shopValue:297, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12461} -{name:"Iron bull rush scroll", itemDescription:"", shopValue:354, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12462} -{name:"Steel bull rush scroll", itemDescription:"", shopValue:394, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12463} -{name:"Mith bull rush scroll", itemDescription:"", shopValue:422, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12464} -{name:"Addy bull rush scroll", itemDescription:"", shopValue:402, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12465} -{name:"Rune bull rush scroll", itemDescription:"", shopValue:44, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12466} -{name:"Poisonous blast scroll", itemDescription:"", shopValue:362, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12467} -{name:"Dust cloud scroll", itemDescription:"", shopValue:394, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12468} -{name:"Hatchling dragon", itemDescription:"(hatchling) A hatchling <dragon colour> dragon.(baby) A bigger baby <colour> dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12469} -{name:"Baby dragon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12470} -{name:"Hatchling dragon", itemDescription:"(hatchling) A hatchling <dragon colour> dragon.(baby) A bigger baby <colour> dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12471} -{name:"Baby dragon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12472} -{name:"Hatchling dragon", itemDescription:"(hatchling) A hatchling <dragon colour> dragon.(baby) A bigger baby <colour> dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12473} -{name:"Baby dragon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12474} -{name:"Hatchling dragon", itemDescription:"(hatchling) A hatchling <dragon colour> dragon.(baby) A bigger baby <colour> dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12475} -{name:"Baby dragon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12476} -{name:"Red dragon egg", itemDescription:"This will hatch into a mighty dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12477} -{name:"Blue dragon egg", itemDescription:"This will hatch into a mighty dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12478} -{name:"Green dragon egg", itemDescription:"This will hatch into a mighty dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12479} -{name:"Black dragon egg", itemDescription:"This will hatch into a mighty dragon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12480} -{name:"Baby penguin", itemDescription:"(Baby) Can't fly and can barely walk, but adorable nonetheless. (adult) Emperor of all he surveys.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12481} -{name:"Penguin", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12482} -{name:"Penguin egg", itemDescription:"I can hatch this in an Incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12483} -{name:"Raven chick", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12484} -{name:"Raven", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12485} -{name:"Baby raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12486} -{name:"Raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12487} -{name:"Baby gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12488} -{name:"Gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12489} -{name:"Baby squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12490} -{name:"Squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12491} -{name:"Baby chameleon", itemDescription:"It's a colour-coordinated lizard!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12492} -{name:"Chameleon", itemDescription:"It's a colour-coordinated lizard!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12493} -{name:"Chameleon egg", itemDescription:"A lizard's egg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12494} -{name:"Chameleon egg", itemDescription:"A lizard's egg.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12495} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12496} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12497} -{name:"Vulture chick", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12498} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12499} -{name:"Baby giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12500} -{name:"Giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12501} -{name:"Crunchy claw token", itemDescription:"Apparently, this token is worth one baby giant crab to someone called Nung.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12502} -{name:"Saradomin chick", itemDescription:" A fantastic saradomin owl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12503} -{name:"Saradomin bird", itemDescription:" A fantastic saradomin owl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12504} -{name:"Saradomin owl", itemDescription:" A fantastic saradomin owl.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12505} -{name:"Zamorak chick", itemDescription:" A stately zamorak hawk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12506} -{name:"Zamorak bird", itemDescription:" A stately zamorak hawk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12507} -{name:"Zamorak hawk", itemDescription:" A stately zamorak hawk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12508} -{name:"Guthix chick", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12509} -{name:"Guthix bird", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12510} -{name:"Guthix raptor", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12511} -{name:"Terrier puppy", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12512} -{name:"Terrier", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12513} -{name:"Greyhound puppy", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12514} -{name:"Greyhound", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12515} -{name:"Labrador puppy", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12516} -{name:"Labrador", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12517} -{name:"Dalmatian puppy", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12518} -{name:"Dalmatian", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12519} -{name:"Sheepdog puppy", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12520} -{name:"Sheepdog", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12521} -{name:"Bulldog puppy", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12522} -{name:"Bulldog", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12523} -{name:"Summoning cape", itemDescription:"The cape worn by master summoners.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12524} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12525} -{name:"Spirit wolf pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12526} -{name:"Gold charm", itemDescription:"A charm used to summon familiars.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12527} -{name:"Trapdoor key", itemDescription:"A key to Pikkupstix's trapdoor.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12528} -{name:"Howl scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12529} -{name:"Spirit shards", itemDescription:"Shards of an obelisk.", shopValue:0, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12530} -{name:"Ibis pouch", itemDescription:"", shopValue:3149, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12531} -{name:"Ibis pouch", itemDescription:"", shopValue:3149, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12532} -{name:"Stony shell scroll", itemDescription:"", shopValue:59, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12533} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12534} -{name:"Raw pawya meat", itemDescription:"Meat from a creature that can be hunted in Isafdar.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12535} -{name:"Raw pawya meat", itemDescription:"Meat from a creature that can be hunted in Isafdar.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12536} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12537} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12538} -{name:"Grenwall spikes", itemDescription:"Spikes from a grenwall.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12539} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12540} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12541} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12542} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12543} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12544} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12545} -{name:"Enchanted pawya meat", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12546} -{name:"Platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12547} -{name:"Platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12548} -{name:"Platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12549} -{name:"Platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12550} -{name:"Baby platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12551} -{name:"Baby platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12552} -{name:"Baby platypus", itemDescription:"A most unlikely creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12553} -{name:"Patrick", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12554} -{name:"Penelope", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12555} -{name:"Peter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12556} -{name:"Peanut", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12557} -{name:"Mud", itemDescription:"Marginally better than egg on your face.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12558} -{name:"Ogre wig", itemDescription:"The height of style?", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12559} -{name:"Ogre wig", itemDescription:"The height of style?", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12560} -{name:"Ogre kilt", itemDescription:"It's a little big on me.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12561} -{name:"Ogre kilt", itemDescription:"It's a little big on me.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12562} -{name:"Ogre top", itemDescription:"It's a little big on me.", shopValue:105, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12563} -{name:"Ogre top", itemDescription:"It's a little big on me.", shopValue:105, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12564} -{name:"Ogre boots", itemDescription:"Good for stomping.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12565} -{name:"Ogre boots", itemDescription:"Good for stomping.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12566} -{name:"Diseased kebbit fur", itemDescription:"It's a slightly sickly-looking fur.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12567} -{name:"Davy kebbit hat", itemDescription:"A furry hat with an unnerving tail.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12568} -{name:"Davy kebbit hat", itemDescription:"A furry hat with an unnerving tail.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12569} -{name:"Ogre club", itemDescription:"A big piece of tree.", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:10.0, bonuses:[-6.0, -2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12570} -{name:"Ogre club", itemDescription:"A big piece of tree.", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:10.0, bonuses:[-6.0, -2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12571} -{name:"Lavender", itemDescription:"A delicate, sweet-smelling flower.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12572} -{name:"Lavender", itemDescription:"A delicate, sweet-smelling flower.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12573} -{name:"Fever grass", itemDescription:"A stiff, pungent grass.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12574} -{name:"Fever grass", itemDescription:"A stiff, pungent grass.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12575} -{name:"Tansymum", itemDescription:"A cheerful, aromatic flower.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12576} -{name:"Tansymum", itemDescription:"A cheerful, aromatic flower.", shopValue:4, lowAlch:0, highAlch:2, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12577} -{name:"Smouldering fever grass", itemDescription:"A stiff, pungent grass.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12578} -{name:"Smouldering lavender", itemDescription:"A delicate, sweet-smelling flower.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12579} -{name:"Smouldering tansymum", itemDescription:"A cheerful, aromatic flower.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12580} -{name:"Eucalyptus logs", itemDescription:"Logs cut from a eucalyptus tree.", shopValue:126, lowAlch:50, highAlch:75, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12581} -{name:"Eucalyptus logs", itemDescription:"Logs cut from a eucalyptus tree.", shopValue:126, lowAlch:50, highAlch:75, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12582} -{name:"Eucalyptus pyre logs", itemDescription:"Logs cut from a eucalyptus tree.", shopValue:252, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12583} -{name:"Eucalyptus pyre logs", itemDescription:"Logs cut from a eucalyptus tree.", shopValue:252, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12584} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12585} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12586} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12587} -{name:"Primweed", itemDescription:"A modest and mild plant.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12588} -{name:"Primweed", itemDescription:"A modest and mild plant.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12589} -{name:"Stinkbloom", itemDescription:"A pretty but putrid flower.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12590} -{name:"Stinkbloom", itemDescription:"A pretty but putrid flower.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12591} -{name:"Diseased kebbit fur", itemDescription:"It's a slightly sickly-looking fur.", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12592} -{name:"Catapult schematics", itemDescription:"The plans for repairing the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12593} -{name:"Engineer's letter", itemDescription:"General Hining wants me to deliver this to the Catapult Engineer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12594} -{name:"Sailor's hat", itemDescription:"Taken from a drunken sailor in Port Sarim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12595} -{name:"Metal catapult parts", itemDescription:"Dwarf-made parts for repairing the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12596} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12597} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12598} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12599} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12600} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12601} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12602} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12603} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12604} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12605} -{name:"Mahogany catapult part", itemDescription:"Used to repair the Tyras Camp catapult.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12606} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12607} -{name:"Amulet of farming (1)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12608} -{name:"Amulet of farming (1)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12609} -{name:"Amulet of farming (2)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12610} -{name:"Amulet of farming (2)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12611} -{name:"Amulet of farming (3)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12612} -{name:"Amulet of farming (3)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12613} -{name:"Amulet of farming (4)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12614} -{name:"Amulet of farming (4)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12615} -{name:"Amulet of farming (5)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12616} -{name:"Amulet of farming (5)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12617} -{name:"Amulet of farming (6)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12618} -{name:"Amulet of farming (6)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12619} -{name:"Amulet of farming (7)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12620} -{name:"Amulet of farming (7)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12621} -{name:"Amulet of farming (8)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12622} -{name:"Amulet of farming (8)", itemDescription:"An amulet of Farming with X charges.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12623} -{name:"Ogleroot", itemDescription:"An ogleroot. How odd.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12624} -{name:"Flag", itemDescription:"A flag to put in the ground.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12625} -{name:"Test paper", itemDescription:"Player Safety test", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12626} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12627} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12628} -{name:"Safety gloves", itemDescription:"Gloves from the Stronghold of Player Safety.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 2.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12629} -{name:"Rubium", itemDescription:"Be careful with this near water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12630} -{name:"Toy train", itemDescription:"(While on the ground) Kennith's lost toy. (While in your inventory) A wooden toy train.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12631} -{name:"Note", itemDescription:"Swap this note at any bank for the equivalent item.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12632} -{name:"Super fishing explosive", itemDescription:"The jar is shaking violently!", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12633} -{name:"Chocatrice cape", itemDescription:"A thick, orange cape.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12634} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12635} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12636} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12637} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12638} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12639} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12640} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12641} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12642} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12643} -{name:"Easter egg", itemDescription:"Happy Easter.", shopValue:1, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12644} -{name:"Chocatrice cape", itemDescription:"A thick, orange cape.", shopValue:32, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12645} -{name:"Chocolate egg", itemDescription:"A chocolate egg wrapped in coloured foil.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12646} -{name:"Chocolate egg", itemDescription:"A chocolate egg wrapped in coloured foil.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12647} -{name:"Chocolate egg", itemDescription:"A chocolate egg wrapped in coloured foil.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12648} -{name:"Bucket", itemDescription:"It's an empty bucket.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12649} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12650} -{name:"Bucket of water", itemDescription:" It's a bucket of... water?", shopValue:0, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12651} -{name:"Bucket of coal", itemDescription:"It's a bucket of coal from the Easter Bunny's warren.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12652} -{name:"Bucket of coal", itemDescription:"It's a bucket of coal from the Easter Bunny's warren.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12653} -{name:"Cockatrice egg", itemDescription:"A stripy brown egg.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12654} -{name:"Chocatrice egg", itemDescription:"A cockatrice egg that has been dipped in molten chocolate.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12655} -{name:"Chocatrice object", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12656} -{name:"Chocolate chunks", itemDescription:"Some chocolate chunks.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12657} -{name:"Adamant full helm (e)", itemDescription:"A full face helmet.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12658} -{name:"Adamant full helm (charged)", itemDescription:"A full face helmet.", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 19.0, 21.0, 16.0, -1.0, 19.0, 6.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12659} -{name:"Snakeskin bandana (e)", itemDescription:"Lightweight head protection.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -5.0, 4.0, 2.0, 4.0, 4.0, 2.0, 2.0, 6.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12660} -{name:"Snakeskin bandana (charged)", itemDescription:"Lightweight head protection.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -5.0, 4.0, 2.0, 4.0, 4.0, 2.0, 2.0, 6.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12661} -{name:"Splitbark helm (e)", itemDescription:"A wooden helmet.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12662} -{name:"Splitbark helm (charged)", itemDescription:"A wooden helmet.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12663} -{name:"Rune full helm (e)", itemDescription:"A full face helmet.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12664} -{name:"Rune full helm (charged)", itemDescription:"A full face helmet.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12665} -{name:"Dragon med helm (e)", itemDescription:"Makes the wearer pretty intimidating.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12666} -{name:"Dragon med helm (charged)", itemDescription:"Makes the wearer pretty intimidating.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12667} -{name:"Lunar helm (e)", itemDescription:"A mystical helmet.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 8.0, 7.0, 10.0, 2.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12668} -{name:"Lunar helm (charged)", itemDescription:"A mystical helmet.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 8.0, 7.0, 10.0, 2.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12669} -{name:"Armadyl helmet (e)", itemDescription:"A helmet of great craftmanship.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 10.0, 6.0, 6.0, 10.0, 10.0, 8.0, 12.0, 0.0, 5.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12670} -{name:"Armadyl helmet (charged)", itemDescription:"A helmet of great craftmanship.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 10.0, 6.0, 6.0, 10.0, 10.0, 8.0, 12.0, 0.0, 5.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12671} -{name:"Archer helm (e)", itemDescription:"This helmet is worn by archers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 6.0, 6.0, 8.0, 10.0, 6.0, 6.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12672} -{name:"Archer helm (charged)", itemDescription:"This helmet is worn by archers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 6.0, 6.0, 8.0, 10.0, 6.0, 6.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12673} -{name:"Berserker helm (e)", itemDescription:"This helmet is worn by berserkers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -5.0, -5.0, 31.0, 29.0, 33.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12674} -{name:"Berserker helm (charged)", itemDescription:"This helmet is worn by berserkers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -5.0, -5.0, 31.0, 29.0, 33.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12675} -{name:"Warrior helm (e)", itemDescription:"This helm is worn by warriors.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 5.0, 0.0, -5.0, -5.0, 31.0, 33.0, 29.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12676} -{name:"Warrior helm (charged)", itemDescription:"This helm is worn by warriors.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 5.0, 0.0, -5.0, -5.0, 31.0, 33.0, 29.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12677} -{name:"Farseer helm (e)", itemDescription:"This helm is worn by farseers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-5.0, -5.0, -5.0, 6.0, -5.0, 8.0, 10.0, 12.0, 6.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12678} -{name:"Farseer helm (charged)", itemDescription:"This helm is worn by farseers.", shopValue:78000, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-5.0, -5.0, -5.0, 6.0, -5.0, 8.0, 10.0, 12.0, 6.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12679} -{name:"Helm of neitiznot (e)", itemDescription:"A gift from Neitiznot's Burgher.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 29.0, 34.0, 3.0, 30.0, 8.0, 2.0, 0.0, 4.0, 3.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12680} -{name:"Helm of neitiznot (charged)", itemDescription:"A gift from Neitiznot's Burgher.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 29.0, 34.0, 3.0, 30.0, 8.0, 2.0, 0.0, 4.0, 3.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12681} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12682} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12683} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12684} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12685} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12686} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12687} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12688} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12689} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12690} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12691} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12692} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12693} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12694} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12695} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12696} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12697} -{name:"Baby monkey", itemDescription:"(Baby) It's a tiny, cheeky monkey. (Adult) Hide the bananas!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12698} -{name:"Monkey", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12699} -{name:"Terrier puppy", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12700} -{name:"Terrier", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12701} -{name:"Terrier puppy", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12702} -{name:"Terrier", itemDescription:"A hyperactive little puppy. (Puppy)(Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12703} -{name:"Greyhound puppy", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12704} -{name:"Greyhound", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12705} -{name:"Greyhound puppy", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12706} -{name:"Greyhound", itemDescription:"This is one fast little pooch. (Puppy)An aerodynamic doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12707} -{name:"Labrador puppy", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12708} -{name:"Labrador", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12709} -{name:"Labrador puppy", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12710} -{name:"Labrador", itemDescription:"Puppy - Soft but strong... and cute.Adult - My most faithful friend.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12711} -{name:"Dalmatian puppy", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12712} -{name:"Dalmatian", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12713} -{name:"Dalmatian puppy", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12714} -{name:"Dalmatian", itemDescription:"Now, if only I could find another hundred... (Puppy)A purebred doggy. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12715} -{name:"Sheepdog puppy", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12716} -{name:"Sheepdog", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12717} -{name:"Sheepdog puppy", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12718} -{name:"Sheepdog", itemDescription:"This little puppy is very quiet. (Puppy)Come by! Come by! (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12719} -{name:"Bulldog puppy", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12720} -{name:"Bulldog", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12721} -{name:"Bulldog puppy", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12722} -{name:"Bulldog", itemDescription:"One proud little puppy. (Puppy)Looks like it's chewing a wasp. (Adult)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12723} -{name:"Raven chick", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12724} -{name:"Raven", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12725} -{name:"Raven chick", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12726} -{name:"Raven", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12727} -{name:"Raven chick", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12728} -{name:"Raven", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12729} -{name:"Raven chick", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12730} -{name:"Raven", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12731} -{name:"Raven chick", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12732} -{name:"Raven", itemDescription:" A raven chick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12733} -{name:"Baby raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12734} -{name:"Raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12735} -{name:"Baby raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12736} -{name:"Raccoon", itemDescription:"(Baby) A stripy little baby raccoon.(Adult) He can run with us.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12737} -{name:"Baby gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12738} -{name:"Baby gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12739} -{name:"Baby gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12740} -{name:"Baby gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12741} -{name:"Gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12742} -{name:"Gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12743} -{name:"Gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12744} -{name:"Gecko", itemDescription:"(Baby) It's so adorably tiny! (Adult) How cute!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12745} -{name:"Baby giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12746} -{name:"Giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12747} -{name:"Baby giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12748} -{name:"Giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12749} -{name:"Baby giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12750} -{name:"Giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12751} -{name:"Baby giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12752} -{name:"Giant crab", itemDescription:" Bigger Nipper.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12753} -{name:"Baby squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12754} -{name:"Squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12755} -{name:"Baby squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12756} -{name:"Squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12757} -{name:"Baby squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12758} -{name:"Squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12759} -{name:"Baby squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12760} -{name:"Squirrel", itemDescription:" A tiny nut-thief.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12761} -{name:"Penguin", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12762} -{name:"Baby penguin", itemDescription:"(Baby) Can't fly and can barely walk, but adorable nonetheless. (adult) Emperor of all he surveys.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12763} -{name:"Penguin", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12764} -{name:"Baby penguin", itemDescription:"(Baby) Can't fly and can barely walk, but adorable nonetheless. (adult) Emperor of all he surveys.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12765} -{name:"Vulture chick", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12766} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12767} -{name:"Vulture chick", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12768} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12769} -{name:"Vulture chick", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12770} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12771} -{name:"Vulture chick", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12772} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12773} -{name:"Vulture chick", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12774} -{name:"Vulture", itemDescription:" run.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12775} -{name:"Swamp titan pouch", itemDescription:"", shopValue:4174, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12776} -{name:"Swamp titan pouch", itemDescription:"", shopValue:4174, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12777} -{name:"Spirit mosquito pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12778} -{name:"Spirit mosquito pouch", itemDescription:"", shopValue:449, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12779} -{name:"Void spinner pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12780} -{name:"Void spinner pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12781} -{name:"Forge regent pouch", itemDescription:"", shopValue:3949, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12782} -{name:"Forge regent pouch", itemDescription:"", shopValue:3949, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12783} -{name:"Spirit larupia pouch", itemDescription:"", shopValue:4299, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12784} -{name:"Spirit larupia pouch", itemDescription:"", shopValue:4299, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12785} -{name:"Geyser titan pouch", itemDescription:"", shopValue:5974, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12786} -{name:"Geyser titan pouch", itemDescription:"", shopValue:5974, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12787} -{name:"Lava titan pouch", itemDescription:"", shopValue:5899, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12788} -{name:"Lava titan pouch", itemDescription:"", shopValue:5899, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12789} -{name:"Steel titan pouch", itemDescription:"", shopValue:4874, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12790} -{name:"Steel titan pouch", itemDescription:"", shopValue:4874, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12791} -{name:"Obsidian golem pouch", itemDescription:"", shopValue:5299, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12792} -{name:"Obsidian golem pouch", itemDescription:"", shopValue:5299, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12793} -{name:"Talon beast pouch", itemDescription:"", shopValue:4774, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12794} -{name:"Talon beast pouch", itemDescription:"", shopValue:4774, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12795} -{name:"Abyssal titan pouch", itemDescription:"", shopValue:3249, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12796} -{name:"Abyssal titan pouch", itemDescription:"", shopValue:3249, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12797} -{name:"Void torcher pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12798} -{name:"Void torcher pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12799} -{name:"Giant chinchompa pouch", itemDescription:"", shopValue:2524, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12800} -{name:"Giant chinchompa pouch", itemDescription:"", shopValue:2524, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12801} -{name:"Fire titan pouch", itemDescription:"", shopValue:5374, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12802} -{name:"Fire titan pouch", itemDescription:"", shopValue:5374, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12803} -{name:"Moss titan pouch", itemDescription:"", shopValue:5474, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12804} -{name:"Moss titan pouch", itemDescription:"", shopValue:5474, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12805} -{name:"Ice titan pouch", itemDescription:"", shopValue:5374, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12806} -{name:"Ice titan pouch", itemDescription:"", shopValue:5374, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12807} -{name:"Spirit tz-kih pouch", itemDescription:"", shopValue:2024, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12808} -{name:"Spirit tz-kih pouch", itemDescription:"", shopValue:2024, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12809} -{name:"Spirit graahk pouch", itemDescription:"", shopValue:4274, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12810} -{name:"Spirit graahk pouch", itemDescription:"", shopValue:4274, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12811} -{name:"Spirit kyatt pouch", itemDescription:"", shopValue:4249, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12812} -{name:"Spirit kyatt pouch", itemDescription:"", shopValue:4249, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12813} -{name:"Void shifter pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12814} -{name:"Void shifter pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12815} -{name:"Pyrelord pouch", itemDescription:"", shopValue:3199, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12816} -{name:"Pyrelord pouch", itemDescription:"", shopValue:3199, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12817} -{name:"Void ravager pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12818} -{name:"Void ravager pouch", itemDescription:"", shopValue:2274, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12819} -{name:"Ravenous locust pouch", itemDescription:"", shopValue:2399, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12820} -{name:"Ravenous locust pouch", itemDescription:"", shopValue:2399, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12821} -{name:"Iron titan pouch", itemDescription:"", shopValue:5374, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12822} -{name:"Iron titan pouch", itemDescription:"", shopValue:5374, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12823} -{name:"Titan's con. scroll", itemDescription:"", shopValue:537, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12824} -{name:"Steel of legends scroll", itemDescription:"", shopValue:487, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12825} -{name:"Volcanic str. scroll", itemDescription:"", shopValue:529, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12826} -{name:"Essence shipment scroll", itemDescription:"", shopValue:324, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12827} -{name:"Iron within scroll", itemDescription:"", shopValue:537, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12828} -{name:"Immense heat scroll", itemDescription:"", shopValue:319, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12829} -{name:"Famine scroll", itemDescription:"", shopValue:239, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12830} -{name:"Deadly claw scroll", itemDescription:"", shopValue:477, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12831} -{name:"Swamp plague scroll", itemDescription:"", shopValue:417, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12832} -{name:"Boil scroll", itemDescription:"", shopValue:597, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12833} -{name:"Explode scroll", itemDescription:"", shopValue:252, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12834} -{name:"Goad scroll", itemDescription:"", shopValue:427, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12835} -{name:"Ambush scroll", itemDescription:"", shopValue:424, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12836} -{name:"Ebon thunder scroll", itemDescription:"", shopValue:529, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12837} -{name:"Pester scroll", itemDescription:"", shopValue:44, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12838} -{name:"Fireball assault scroll", itemDescription:"", shopValue:202, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12839} -{name:"Rending scroll", itemDescription:"", shopValue:429, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12840} -{name:"Inferno scroll", itemDescription:"", shopValue:394, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12841} -{name:"Gnomecopter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12842} -{name:"Gnomecopter ticket", itemDescription:"It tells gnomecopters where you wish to go.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12843} -{name:"Toy kite", itemDescription:"A kite with a dragon on it.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12844} -{name:"Stone of power", itemDescription:"A stone used to gather energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12845} -{name:"Stone of power", itemDescription:"A stone used to gather energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12846} -{name:"Stone of power", itemDescription:"A stone used to gather energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12847} -{name:"Stone of power", itemDescription:"A stone used to gather energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12848} -{name:"Stone of power", itemDescription:"A stone used to gather energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12849} -{name:"Elemental rune", itemDescription:"A generic elemental rune", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12850} -{name:"Catalytic rune", itemDescription:"A generic non-elemental rune", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12851} -{name:"Fist of guthix token", itemDescription:"A token awarded for taking part in the Fist of Guthix activity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12852} -{name:"Bandages", itemDescription:"A box of bandages for healing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12853} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12854} -{name:"Tele-orb", itemDescription:"Teleports you to the centre of the arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12855} -{name:"Irit gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12856} -{name:"Avantoe gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12857} -{name:"Kwuarm gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12858} -{name:"Cadantine gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12859} -{name:"Swordfish gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12860} -{name:"Shark gloves", itemDescription:"A pair of mystical gloves", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12861} -{name:"Dragon slayer gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12862} -{name:"Air runecrafting gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12863} -{name:"Water runecrafting gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12864} -{name:"Earth runecrafting gloves", itemDescription:"A pair of mystical gloves.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12865} -{name:"Battle hood 100", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12866} -{name:"Battle hood 80", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12867} -{name:"Battle hood 60", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12868} -{name:"Battle hood 40", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12869} -{name:"Battle hood 20", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12870} -{name:"Battle hood 0", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12871} -{name:"Battle hood 0", itemDescription:"Its arcane power is waning.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 7.0, 6.0, 8.0, 5.0, 0.0, 8.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12872} -{name:"Battle robe top 100", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12873} -{name:"Battle robe top 80", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12874} -{name:"Battle robe top 60", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12875} -{name:"Battle robe top 40", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12876} -{name:"Battle robe top 20", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12877} -{name:"Battle robe top 0", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12878} -{name:"Battle robe top 0", itemDescription:"Charged - A robe top infused with arcane power, especially created for combat spells.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 26.0, 0.0, 17.0, 15.0, 20.0, 26.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12879} -{name:"Battle robe bottom 100", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12880} -{name:"Battle robe bottom 80", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12881} -{name:"Battle robe bottom 60", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12882} -{name:"Battle robe bottom 40", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12883} -{name:"Battle robe bottom 20", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12884} -{name:"Battle robe bottom 0", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12885} -{name:"Battle robe bottom 0", itemDescription:"A robe bottom infused with arcane power, especially created for combat spells.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 14.0, 11.0, 16.0, 20.0, 0.0, 23.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12886} -{name:"Druidic mage hood 100", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12887} -{name:"Druidic mage hood 80", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12888} -{name:"Druidic mage hood 60", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12889} -{name:"Druidic mage hood 40", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12890} -{name:"Druidic mage hood 20", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12891} -{name:"Druidic mage hood 0", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12892} -{name:"Druidic mage hood 0", itemDescription:"A worn-out hood, formerly worn by the followers of Guthix.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12893} -{name:"Druidic mage top 100", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12894} -{name:"Druidic mage top 80", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12895} -{name:"Druidic mage top 60", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12896} -{name:"Druidic mage top 40", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12897} -{name:"Druidic mage top 20", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12898} -{name:"Druidic mage top 0", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12899} -{name:"Druidic mage top 0", itemDescription:"A magical robe top worn by followers of Guthix.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 7.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12900} -{name:"Druidic mage bottom 100", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12901} -{name:"Druidic mage bottom 80", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12902} -{name:"Druidic mage bottom 60", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12903} -{name:"Druidic mage bottom 40", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12904} -{name:"Druidic mage bottom 20", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12905} -{name:"Druidic mage bottom 0", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12906} -{name:"Druidic mage bottom 0", itemDescription:"A magical robe bottom worn by a person who follows Guthix.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12907} -{name:"Adamant spikeshield 100", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12908} -{name:"Adamant spikeshield 80", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12909} -{name:"Adamant spikeshield 60", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12910} -{name:"Adamant spikeshield 40", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12911} -{name:"Adamant spikeshield 20", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12912} -{name:"Adamant spikeshield 0", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12913} -{name:"Adamant spikeshield 0", itemDescription:" Not so spiky anymore.", shopValue:4050, lowAlch:1620, highAlch:2430, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 25.0, 27.0, 23.0, 0.0, 25.0, 26.0, 3.0, 0.0, 6.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12914} -{name:"Adamant berserker shield 100", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12915} -{name:"Adamant berserker shield 80", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12916} -{name:"Adamant berserker shield 60", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12917} -{name:"Adamant berserker shield 40", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12918} -{name:"Adamant berserker shield 20", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12919} -{name:"Adamant berserker shield 0", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12920} -{name:"Adamant berserker shield 0", itemDescription:" Not so spiky anymore!", shopValue:6140, lowAlch:2456, highAlch:3684, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 32.0, 30.0, -1.0, 30.0, 31.0, 3.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12921} -{name:"Rune spikeshield 100", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12922} -{name:"Rune spikeshield 80", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12923} -{name:"Rune spikeshield 60", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12924} -{name:"Rune spikeshield 40", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12925} -{name:"Rune spikeshield 20", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12926} -{name:"Rune spikeshield 0", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12927} -{name:"Rune spikeshield 0", itemDescription:" Not so spiky anymore.", shopValue:40000, lowAlch:2576, highAlch:3864, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 39.0, 41.0, 37.0, 0.0, 39.0, 36.0, 3.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12928} -{name:"Rune berserker shield 100", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12929} -{name:"Rune berserker shield 80", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12930} -{name:"Rune berserker shield 60", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12931} -{name:"Rune berserker shield 40", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12932} -{name:"Rune berserker shield 20", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12933} -{name:"Rune berserker shield 0", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12934} -{name:"Rune berserker shield 0", itemDescription:" Not so spiky anymore.", shopValue:64400, lowAlch:25760, highAlch:38640, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 45.0, 49.0, 47.0, -1.0, 47.0, 41.0, 3.0, 0.0, 7.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12935} -{name:"Green d'hide coif 100", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12936} -{name:"Green d'hide coif 80", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12937} -{name:"Green d'hide coif 60", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12938} -{name:"Green d'hide coif 40", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12939} -{name:"Green d'hide coif 20", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12940} -{name:"Green d'hide coif 0", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12941} -{name:"Green d'hide coif 0", itemDescription:" A worn out coif made of green dragonhide.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -1.0, 4.0, 4.0, 6.0, 8.0, 4.0, 5.0, 4.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12942} -{name:"Blue d'hide coif 100", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12943} -{name:"Blue d'hide coif 80", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12944} -{name:"Blue d'hide coif 60", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12945} -{name:"Blue d'hide coif 40", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12946} -{name:"Blue d'hide coif 20", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12947} -{name:"Blue d'hide coif 0", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12948} -{name:"Blue d'hide coif 0", itemDescription:" A worn out coif made of blue dragonhide.", shopValue:3500, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 5.0, 4.0, 6.0, 8.0, 4.0, 6.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12949} -{name:"Red d'hide coif 100", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12950} -{name:"Red d'hide coif 80", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12951} -{name:"Red d'hide coif 60", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12952} -{name:"Red d'hide coif 40", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12953} -{name:"Red d'hide coif 20", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12954} -{name:"Red d'hide coif 0", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12955} -{name:"Red d'hide coif 0", itemDescription:" A worn out coif made of red dragonhide.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 6.0, 4.0, 6.0, 9.0, 4.0, 6.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12956} -{name:"Black d'hide coif 100", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12957} -{name:"Black d'hide coif 80", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12958} -{name:"Black d'hide coif 60", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12959} -{name:"Black d'hide coif 40", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12960} -{name:"Black d'hide coif 20", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12961} -{name:"Black d'hide coif 0", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12962} -{name:"Black d'hide coif 0", itemDescription:" A worn out coif made of black dragonhide.", shopValue:5500, lowAlch:2200, highAlch:3300, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 9.0, 4.0, 7.0, 7.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12963} -{name:"Combat hood 100", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12964} -{name:"Combat hood 80", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12965} -{name:"Combat hood 60", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12966} -{name:"Combat hood 40", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12967} -{name:"Combat hood 20", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12968} -{name:"Combat hood 0", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12969} -{name:"Combat hood 0", itemDescription:"A magical hood, especially created for combat spells.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 1.0, 1.0, 1.0, 3.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12970} -{name:"Combat robe top 100", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12971} -{name:"Combat robe top 80", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12972} -{name:"Combat robe top 60", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12973} -{name:"Combat robe top 40", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12974} -{name:"Combat robe top 20", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12975} -{name:"Combat robe top 0", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12976} -{name:"Combat robe top 0", itemDescription:"A magical robe top, especially made for combat spells.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 1.0, 1.0, 1.0, 7.0, 0.0, 8.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12977} -{name:"Combat robe bottom 100", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12978} -{name:"Combat robe bottom 80", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12979} -{name:"Combat robe bottom 60", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12980} -{name:"Combat robe bottom 40", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12981} -{name:"Combat robe bottom 20", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12982} -{name:"Combat robe bottom 0", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12983} -{name:"Combat robe bottom 0", itemDescription:"A magical robe bottom, especially created for combat spells.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 1.0, 1.0, 1.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12984} -{name:"Bronze gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 2.0, 3.0, 3.0, -1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12985} -{name:"Worn-out bronze gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 2.0, 3.0, 3.0, -1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12986} -{name:"Worn-out bronze gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 2.0, 3.0, 3.0, -1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12987} -{name:"Iron gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 3.0, 4.0, 4.0, -1.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12988} -{name:"Worn-out iron gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 3.0, 4.0, 4.0, -1.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12989} -{name:"Worn-out iron gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 3.0, 4.0, 4.0, -1.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12990} -{name:"Steel gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 4.0, 5.0, 5.0, -1.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12991} -{name:"Worn-out steel gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 4.0, 5.0, 5.0, -1.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12992} -{name:"Worn-out steel gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 4.0, 5.0, 5.0, -1.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12993} -{name:"Black gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 5.0, 6.0, 6.0, -1.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12994} -{name:"Worn-out black gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 5.0, 6.0, 6.0, -1.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12995} -{name:"Worn-out black gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 5.0, 6.0, 6.0, -1.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12996} -{name:"Mithril gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 6.0, 7.0, 7.0, -1.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12997} -{name:"Worn-out mithril gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 6.0, 7.0, 7.0, -1.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12998} -{name:"Worn-out mithril gauntlets", itemDescription:"I have to keep my hands safe!", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 6.0, 7.0, 7.0, -1.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:12999} -{name:"Adamant gauntlets", itemDescription:" A bit worse for wear.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 8.0, 9.0, 9.0, -1.0, 8.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13000} -{name:"Worn-out adamant gauntlets", itemDescription:" A bit worse for wear.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 8.0, 9.0, 9.0, -1.0, 8.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13001} -{name:"Worn-out adamant gauntlets", itemDescription:" A bit worse for wear.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 8.0, 9.0, 9.0, -1.0, 8.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13002} -{name:"Rune gauntlets", itemDescription:" A bit worse for wear.", shopValue:7500, lowAlch:3000, highAlch:4500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 10.0, 11.0, 11.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13003} -{name:"Worn-out rune gauntlets", itemDescription:" A bit worse for wear.", shopValue:7500, lowAlch:3000, highAlch:4500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 10.0, 11.0, 11.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13004} -{name:"Worn-out rune gauntlets", itemDescription:" A bit worse for wear.", shopValue:7500, lowAlch:3000, highAlch:4500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 10.0, 11.0, 11.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13005} -{name:"Dragon gauntlets", itemDescription:" I have to keep my hands safe!", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 14.0, 15.0, 15.0, -1.0, 14.0, 14.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13006} -{name:"Worn-out dragon gauntlets", itemDescription:" I have to keep my hands safe!", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 14.0, 15.0, 15.0, -1.0, 14.0, 14.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13007} -{name:"Worn-out dragon gauntlets", itemDescription:" I have to keep my hands safe!", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 14.0, 15.0, 15.0, -1.0, 14.0, 14.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13008} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13009} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13010} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13011} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13012} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13013} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13014} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13015} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13016} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13017} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13018} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13019} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13020} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13021} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13022} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13023} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13024} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13025} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13026} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13027} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13028} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13029} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13030} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13031} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13032} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13033} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13034} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13035} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13036} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13037} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13038} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13039} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13040} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13041} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13042} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13043} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13044} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13045} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13046} -{name:"Casket (hard)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13047} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13048} -{name:"Clue scroll (hard)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13049} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13050} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13051} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13052} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13053} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13054} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13055} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13056} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13057} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13058} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13059} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13060} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13061} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13062} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13063} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13064} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13065} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13066} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13067} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13068} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13069} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13070} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13071} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13072} -{name:"Key", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13073} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13074} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13075} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13076} -{name:"Casket (medium)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13077} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13078} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13079} -{name:"Clue scroll (medium)", itemDescription:"0 kg", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13080} -{name:"Black crossbow", itemDescription:"A black crossbow.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13081} -{name:"Black crossbow", itemDescription:"A black crossbow.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13082} -{name:"Black bolts", itemDescription:"Black crossbow bolts.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13083} -{name:"Black bolts (p)", itemDescription:"Black crossbow bolts.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13084} -{name:"Black bolts (p+)", itemDescription:"Black crossbow bolts.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13085} -{name:"Black bolts (p++)", itemDescription:"Black crossbow bolts.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13086} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13087} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13088} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13089} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13090} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13091} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13092} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13093} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13094} -{name:"Black cane", itemDescription:"A sapphire-topped cane.", shopValue:432, lowAlch:172, highAlch:258, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13095} -{name:"Black cane", itemDescription:"A sapphire-topped cane.", shopValue:432, lowAlch:172, highAlch:258, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13096} -{name:"Adamant cane", itemDescription:"A ruby-topped cane.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13097} -{name:"Adamant cane", itemDescription:"A ruby-topped cane.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, -2.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13098} -{name:"Rune cane", itemDescription:"A diamond-topped cane.", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13099} -{name:"Rune cane", itemDescription:"A diamond-topped cane.", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13100} -{name:"Top hat", itemDescription:"Comes with a free rabbit!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13101} -{name:"Top hat", itemDescription:"Comes with a free rabbit!", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13102} -{name:"Pith helmet", itemDescription:"Official explorer headgear!", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13103} -{name:"Pith helmet", itemDescription:"Official explorer headgear!", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13104} -{name:"Spiked helmet", itemDescription:"Spikier than normal.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13105} -{name:"Spiked helmet", itemDescription:"Spikier than normal.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13106} -{name:"Sheep mask", itemDescription:"Shear elegance.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13107} -{name:"Sheep mask", itemDescription:"Shear elegance.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13108} -{name:"Penguin mask", itemDescription:"I can get the look right, but can I do the waddle too?", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13109} -{name:"Penguin mask", itemDescription:"I can get the look right, but can I do the waddle too?", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13110} -{name:"Bat mask", itemDescription:"The bats have left the belltower.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13111} -{name:"Bat mask", itemDescription:"The bats have left the belltower.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13112} -{name:"Cat mask", itemDescription:"It's the year of the cat!", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13113} -{name:"Cat mask", itemDescription:"It's the year of the cat!", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13114} -{name:"Wolf mask", itemDescription:"I'm hungry like the wolf.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13115} -{name:"Wolf mask", itemDescription:"I'm hungry like the wolf.", shopValue:800, lowAlch:320, highAlch:480, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13116} -{name:"Ivandis flail (30)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13117} -{name:"Ivandis flail (29)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13118} -{name:"Ivandis flail (28)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13119} -{name:"Ivandis flail (27)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13120} -{name:"Ivandis flail (26)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13121} -{name:"Ivandis flail (25)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13122} -{name:"Ivandis flail (24)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13123} -{name:"Ivandis flail (23)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13124} -{name:"Ivandis flail (22)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13125} -{name:"Ivandis flail (21)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13126} -{name:"Ivandis flail (20)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13127} -{name:"Ivandis flail (19)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13128} -{name:"Ivandis flail (18)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13129} -{name:"Ivandis flail (17)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13130} -{name:"Ivandis flail (16)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13131} -{name:"Ivandis flail (15)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13132} -{name:"Ivandis flail (14)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13133} -{name:"Ivandis flail (13)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13134} -{name:"Ivandis flail (12)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13135} -{name:"Ivandis flail (11)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13136} -{name:"Ivandis flail (10)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13137} -{name:"Ivandis flail (9)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13138} -{name:"Ivandis flail (8)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13139} -{name:"Ivandis flail (7)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13140} -{name:"Ivandis flail (6)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13141} -{name:"Ivandis flail (5)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13142} -{name:"Ivandis flail (4)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13143} -{name:"Ivandis flail (3)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13144} -{name:"Ivandis flail (2)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13145} -{name:"Ivandis flail (1)", itemDescription:" A partially charged flail - one last charge left.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 16.0, 11.0, 6.0, 0.0, 2.0, 3.0, 1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13146} -{name:"Flail dust", itemDescription:"Flail of Ivandis dust.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13147} -{name:"Glove", itemDescription:"", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13148} -{name:"Book page", itemDescription:"A page ripped from a book; it looks like a map of some kind.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13149} -{name:"Crate", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13150} -{name:"Combat book", itemDescription:"A big book of combat techniques.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13151} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13152} -{name:"Chain link mould", itemDescription:"Used to make a metal chain.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13153} -{name:"Silvthril chain", itemDescription:"A chain made from mithril and silver.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13154} -{name:"Silver sickle emerald (b)", itemDescription:"A blessed sickle with an emerald recessed into it.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13155} -{name:"Enchanted sickle emerald (b)", itemDescription:"A blessed and enchanted silver sickle with an emerald recessed into it.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13156} -{name:"Vyre corpse", itemDescription:"A Vyrewatch corpse. Just a husk, really.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13157} -{name:"Columbarium key", itemDescription:" precise workmanship and an ethereal glow. (Legacy of Seergaze)", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13158} -{name:"Ornate tomb key", itemDescription:" precise workmanship and an ethereal glow. (Legacy of Seergaze)", shopValue:3, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13159} -{name:"Tome of xp 2nd ed (3)", itemDescription:"A Tome of Experience (2nd Edition) that awards 2500 XP per chapter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13160} -{name:"Tome of xp 2nd ed (2)", itemDescription:"A Tome of Experience (2nd Edition) that awards 2500 XP per chapter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13161} -{name:"Tome of xp 2nd ed (1)", itemDescription:"A Tome of Experience (2nd Edition) that awards 2500 XP per chapter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13162} -{name:"Black cane", itemDescription:"A sapphire-topped cane.", shopValue:432, lowAlch:172, highAlch:258, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13163} -{name:"Adamant cane", itemDescription:"A ruby-topped cane.", shopValue:1440, lowAlch:576, highAlch:864, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13164} -{name:"Rune cane", itemDescription:"A diamond-topped cane.", shopValue:14400, lowAlch:5760, highAlch:8640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13165} -{name:"Top hat", itemDescription:"Comes with a free rabbit!", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13166} -{name:"Pith helmet", itemDescription:"Official explorer headgear!", shopValue:250, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13167} -{name:"Spiked helmet", itemDescription:"Spikier than normal.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 10.0, 7.0, -1.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13168} -{name:"Sheep mask", itemDescription:"Shear elegance.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13169} -{name:"Penguin mask", itemDescription:"I can get the look right, but can I do the waddle too?", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13170} -{name:"Bat mask", itemDescription:"The bats have left the belltower.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13171} -{name:"Cat mask", itemDescription:"It's the year of the cat!", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13172} -{name:"Wolf mask", itemDescription:"I'm hungry like the wolf.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13173} -{name:"Blue navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13174} -{name:"Green navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13175} -{name:"Red navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13176} -{name:"Brown navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13177} -{name:"Black navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13178} -{name:"Purple navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13179} -{name:"Grey navy slacks", itemDescription:"Not for slackers", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13180} -{name:"Blue naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13181} -{name:"Green naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13182} -{name:"Red naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13183} -{name:"Brown naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13184} -{name:"Black naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13185} -{name:"Purple naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13186} -{name:"Grey naval shirt", itemDescription:"...You can sail the seven seas...", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13187} -{name:"Blue tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13188} -{name:"Green tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13189} -{name:"Red tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13190} -{name:"Brown tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13191} -{name:"Black tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13192} -{name:"Purple tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13193} -{name:"Grey tricorn hat", itemDescription:"I could never look square in this.", shopValue:0, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13194} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13195} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13196} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13197} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13198} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13199} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13200} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13201} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13202} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13203} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13204} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13205} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13206} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13207} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13208} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13209} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13210} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13211} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13212} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13213} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13214} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13215} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13216} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13217} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13218} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13219} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13220} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13221} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13222} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13223} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13224} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13225} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13226} -{name:"Mysterious lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13227} -{name:"Crate", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13228} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13229} -{name:"Icefiend net", itemDescription:"Professor Arblenap gave you this net to catch the baby icefiends on Ice Mountain.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13230} -{name:"Baby icefiend", itemDescription:"You should give this to Professor Arblenap.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13231} -{name:"Tent", itemDescription:"The remains of the Oracle's tent on Ice Mountain.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13232} -{name:"Plans", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13233} -{name:"Dwarven key", itemDescription:"You took this key from Drorkar's pocket in the power station. (Perils of Ice Mountain)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13234} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13235} -{name:"Three little kittens", itemDescription:"Mew, mew, mew!", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13236} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13237} -{name:"Treated oak plank", itemDescription:"A plank of oak that has been treated to resist fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13238} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:0, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13239} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13240} -{name:"Treated plank", itemDescription:"A plank of oak that has been treated to resist fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13241} -{name:".", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13242} -{name:"Stone tablet", itemDescription:"An old stone slab with writing on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13243} -{name:"Tzhaar tourist guide", itemDescription:"A book for those who want to visit the TzHaar city.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13244} -{name:"Stone slab", itemDescription:"A flawed block of obsidian from the Karamja volcano.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13245} -{name:"Pillar", itemDescription:"A support pillar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13246} -{name:"Splat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13247} -{name:"Splat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13248} -{name:"Splat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13249} -{name:"Splat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13250} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13251} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13252} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13253} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13254} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13255} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13256} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13257} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13258} -{name:"Ranged path key", itemDescription:"A key obtained in Catolax's tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13259} -{name:"Magic path key", itemDescription:"A key obtained in Catolax's tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13260} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13261} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13262} -{name:"Slayer helmet", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 32.0, 27.0, 0.0, 30.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13263} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13264} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13265} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13266} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13267} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13268} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13269} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13270} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13271} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13272} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13273} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13274} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13275} -{name:"Banshee voice", itemDescription:"The remains of a banshee's scream.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13276} -{name:"Masked earmuffs", itemDescription:"More of that crazy Slayer headgear.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13277} -{name:"Broad arrow heads", itemDescription:"For use against turoth and kurasks.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13278} -{name:"Unfinished broad bolts", itemDescription:"For use against turoth and kurasks.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13279} -{name:"Broad-tipped bolts", itemDescription:"For use against turoth and kurasks.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13280} -{name:"Ring of slaying (8)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13281} -{name:"Ring of slaying (7)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13282} -{name:"Ring of slaying (6)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13283} -{name:"Ring of slaying (5)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13284} -{name:"Ring of slaying (4)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13285} -{name:"Ring of slaying (3)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13286} -{name:"Ring of slaying (2)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13287} -{name:"Ring of slaying (1)", itemDescription:"An enchanted ring.", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13288} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13289} -{name:"Leaf-bladed sword", itemDescription:"A razor-sharp sword.", shopValue:68000, lowAlch:27200, highAlch:40800, isStackable:false, isNoteable:false, weight:18.0, bonuses:[67.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13290} -{name:"Leaf-bladed sword", itemDescription:"A razor-sharp sword.", shopValue:68000, lowAlch:27200, highAlch:40800, isStackable:true, isNoteable:true, weight:18.0, bonuses:[67.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13291} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13292} -{name:"Plans", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13293} -{name:"Charcoal rubbing", itemDescription:"A charcoal rubbing taken from 50% Luke.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13294} -{name:"Frank's mark", itemDescription:"Signature from Frank.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13295} -{name:"Crude lockpick", itemDescription:"A device for opening locked doors.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13296} -{name:"Customs shirt", itemDescription:"The top of a Custom Officer's uniform.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13297} -{name:"Customs trousers", itemDescription:"The trousers of a Custom Officer's uniform.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13298} -{name:"Customs hat", itemDescription:"The hat of a Custom Officer's uniform.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13299} -{name:"File", itemDescription:"A folder containing some documents.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13300} -{name:"File", itemDescription:"A folder containing some documents.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13301} -{name:"Brooch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13302} -{name:"Izzy's mark", itemDescription:"Signature from Izzy No-Beard.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13303} -{name:"Key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13304} -{name:"Crowbar", itemDescription:"This could be useful.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13305} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13306} -{name:"Idol of many heads", itemDescription:"An idol. It has many heads.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13307} -{name:"Bill teach's mark", itemDescription:"Signature from Bill Teach.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13308} -{name:"Paper", itemDescription:"This is generally used for writing on.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13309} -{name:"Confession", itemDescription:"A written confession.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13310} -{name:"Note", itemDescription:"Swap this note at any bank for the equivalent item.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13311} -{name:"Ink bottle", itemDescription:"This is full of ink.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13312} -{name:"Inky paper", itemDescription:"It's got ink all over it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13313} -{name:"Ink bottle", itemDescription:"This is full of ink.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13314} -{name:"Smashed bottle", itemDescription:"It's smashed. I should mind my fingers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13315} -{name:"Prison uniform top", itemDescription:"The top part of a prisoner's uniform.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13316} -{name:"Prison uniform trousers", itemDescription:"The bottom part of a prisoner's uniform.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13317} -{name:"Fishy prison uniform top", itemDescription:"It's covered in fish slop.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13318} -{name:"Tin cup", itemDescription:"A standard prison-issue tin cup.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13319} -{name:"Tin cup", itemDescription:"A standard prison-issue tin cup.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13320} -{name:"Pipe", itemDescription:"A pipe that belongs in a cannon stand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13321} -{name:"Accordion", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13322} -{name:"Accordion", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13323} -{name:"Accordion", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13324} -{name:"Vacuum pump", itemDescription:"A very crude vacuum pump.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13325} -{name:"Vacuum pump and gull", itemDescription:"It sounds like a law firm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13326} -{name:"Quill", itemDescription:"From a bird - can be used for writing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13327} -{name:"Inky quill", itemDescription:"From a bird - can be used for writing. It has some ink on the tip.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13328} -{name:"File", itemDescription:"A folder containing some documents.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13329} -{name:"File", itemDescription:"A folder containing some documents.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13330} -{name:"Ex-parrot", itemDescription:"A very dead rotten parrot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13331} -{name:"Magical cage", itemDescription:"It feels very cold to the touch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13332} -{name:"Ex-parrot in a magic cage", itemDescription:"A very dead rotten parrot in a magical cage.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13333} -{name:"Ex-ex-parrot in a magic cage", itemDescription:"A very alive rotten parrot in a magic cage.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13334} -{name:"Ex-ex-parrot", itemDescription:" A very alive rotten parrot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13335} -{name:"Ex-ex-parrot", itemDescription:" A very alive rotten parrot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13336} -{name:"Pirate impling jar", itemDescription:"A pirate impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13337} -{name:"Pirate impling jar", itemDescription:"A pirate impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13338} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13339} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13340} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13341} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13342} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13343} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13344} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13345} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13346} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13347} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13348} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13349} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13350} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13351} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13352} -{name:"Double eyepatches", itemDescription:"It's dark, and I'm wearing two patches. Hit it!", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13353} -{name:"Pirate hat and eyepatches", itemDescription:"Two patches and a hat.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13354} -{name:"Left eyepatch", itemDescription:"A patch for the left eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13355} -{name:"Left eyepatch", itemDescription:"A patch for the left eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13356} -{name:"Pirate hat and eyepatch", itemDescription:"A hat and a patch.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13357} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13358} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13359} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13360} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13361} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13362} -{name:"Stripy pirate shirt", itemDescription:"1 kg", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13363} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13364} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13365} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13366} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13367} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13368} -{name:"Pirate leggings", itemDescription:"Unknown edit", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13369} -{name:"Bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13370} -{name:"Bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13371} -{name:"Bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13372} -{name:"Bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13373} -{name:"Bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13374} -{name:"Bandana", itemDescription:"Essential pirate wear.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13375} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13376} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13377} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13378} -{name:"Rock fragments", itemDescription:"Some rock fragments.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13379} -{name:"Introduction letter", itemDescription:"Note from Teach to Brass Hand Harry.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13380} -{name:"Broken hand", itemDescription:"One of many broken hands.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13381} -{name:"Broken hand", itemDescription:"One of many broken hands.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13382} -{name:"Broken hand", itemDescription:"One of many broken hands.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13383} -{name:"Broken hand", itemDescription:"One of many broken hands.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13384} -{name:"Broken hand", itemDescription:"One of many broken hands.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13385} -{name:"Fingers", itemDescription:"Wall beast fingers in a white fern sauce.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13386} -{name:"Thumb", itemDescription:"A brass thumb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13387} -{name:"Hand", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13388} -{name:"Wrist", itemDescription:"A brass wrist.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13389} -{name:"Brace", itemDescription:"A brass brace.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13390} -{name:"Brass hand", itemDescription:"A completed brass hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13391} -{name:"Ink pad", itemDescription:"It's soaked with ink.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13392} -{name:"Inky hand", itemDescription:"An inky brass hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13393} -{name:"Paper", itemDescription:"This is generally used for writing on.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13394} -{name:"Brass hand harry's mark", itemDescription:"Handprint from Brass Hand Harry.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13395} -{name:"Fake beard", itemDescription:"Makes me itch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13396} -{name:"Fake moustache and nose", itemDescription:"It looks like someone has sneezed in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13397} -{name:"Fake monocle, moustache and nose", itemDescription:"Why is the monocle nailed to it?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13398} -{name:"Curly wig", itemDescription:"You can barely see where it connected to the mop handle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13399} -{name:"Straight wig", itemDescription:"It looks like it is part-dog, part-mould.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13400} -{name:"Order", itemDescription:"An order simply for 'rum'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13401} -{name:"Braindeath's mark", itemDescription:"Signature of Captain Braindeath.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13402} -{name:"Golden tinderbox", itemDescription:"A replica tinderbox made of solid gold.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13403} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13404} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13405} -{name:"Ancient staff", itemDescription:"A magical staff of ancient origin...", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:225.0, bonuses:[10.0, -1.0, 40.0, 15.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 5.0, 0.0, 0.0, 0.0, 50.0, 0.0, -1.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13406} -{name:"Archer helm", itemDescription:"This helmet is worn by archers.", shopValue:0, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 6.0, 6.0, 8.0, 10.0, 6.0, 6.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13407} -{name:"Berserker helm", itemDescription:"This helmet is worn by berserkers.", shopValue:0, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -5.0, -5.0, 31.0, 29.0, 33.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13408} -{name:"Warrior helm", itemDescription:"This helm is worn by warriors.", shopValue:0, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 5.0, 0.0, -5.0, -5.0, 31.0, 33.0, 29.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13409} -{name:"Farseer helm", itemDescription:"This helm is worn by farseers.", shopValue:0, lowAlch:31200, highAlch:46800, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-5.0, -5.0, -5.0, 6.0, -5.0, 8.0, 10.0, 12.0, 6.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13410} -{name:"Rock-shell helm", itemDescription:"Protective headwear made from crabs. Better than it sounds.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 6.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13411} -{name:"Rock-shell plate", itemDescription:"A sturdy body armour made from rock crab pieces.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 30.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13412} -{name:"Rock-shell legs", itemDescription:"Some tough leggings made from rock crab parts.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13413} -{name:"Spined helm", itemDescription:"A helm fit for any Fremennik ranger.", shopValue:0, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, -6.0, -6.0, -6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 6.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13414} -{name:"Spined body", itemDescription:"A constant reminder that I'm above a Dagannoth in the food chain.", shopValue:0, lowAlch:3000, highAlch:4500, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 30.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13415} -{name:"Spined chaps", itemDescription:"Stylish leg armour for rangers with a lingering smell of raw fish...", shopValue:0, lowAlch:1560, highAlch:2340, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 10.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13416} -{name:"Skeletal helm", itemDescription:"Make your foes cower by wearing a skull as a helmet!", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 2.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 6.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13417} -{name:"Skeletal top", itemDescription:"The bones in this armour seems to vibrate with a magic quality...", shopValue:0, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:49.0, bonuses:[0.0, 0.0, 0.0, 8.0, -10.0, 35.0, 25.0, 42.0, 15.0, 0.0, 30.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13418} -{name:"Skeletal bottoms", itemDescription:"A superior set of strengthened slacks for any self respecting seer.", shopValue:0, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, -7.0, 22.0, 20.0, 24.0, 10.0, 0.0, 10.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13419} -{name:"Spined boots", itemDescription:"Some finely crafted Fremennik boots, made from spined dagannoth hide.", shopValue:0, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13420} -{name:"Rock-shell boots", itemDescription:"Some Fremennik boots, made from the shards of a rock crab's shell.", shopValue:0, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13421} -{name:"Skeletal boots", itemDescription:"Some finely crafted Fremennik boots, made from the bones of a Wallasalki.", shopValue:0, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13422} -{name:"Spined gloves", itemDescription:"Fremennik gloves stitched together from spined dagannoth hide.", shopValue:0, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13423} -{name:"Rock-shell gloves", itemDescription:"Fremennik gloves stitched together from rock crab shell shards.", shopValue:0, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13424} -{name:"Skeletal gloves", itemDescription:"Fremennik gloves stitched together from wallasalki bones fragments.", shopValue:0, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13425} -{name:"Seers' ring", itemDescription:"A mysterious ring that can fill the wearer with magical power...", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13426} -{name:"Archers' ring", itemDescription:"A fabled ring that improves the wearer's skill with a bow...", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13427} -{name:"Warrior ring", itemDescription:"A legendary ring once worn by Fremennik warriors.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13428} -{name:"Berserker ring", itemDescription:"A ring reputed to bring out a berserk fury in its wearer.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13429} -{name:"Dragon 2h sword", itemDescription:"A two-handed dragon sword.", shopValue:0, lowAlch:88000, highAlch:132000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, 92.0, 80.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13430} -{name:"Crayfish cage", itemDescription:"Useful for catching crayfish.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13431} -{name:"Crayfish cage", itemDescription:"Useful for catching crayfish.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13432} -{name:"Crayfish", itemDescription:"Some cooked crayfish.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13433} -{name:"Crayfish", itemDescription:"Some cooked crayfish.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13434} -{name:"Raw crayfish", itemDescription:"I should try cooking this.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13435} -{name:"Raw crayfish", itemDescription:"I should try cooking this.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13436} -{name:"Burnt crayfish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13437} -{name:"Burnt crayfish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13438} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13439} -{name:"Bag of runes", itemDescription:"This is a bag of runes for Sir Vant.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13440} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13441} -{name:"Amulet of fury", itemDescription:"A very powerful onyx amulet.", shopValue:0, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 0.0, 0.0, 0.0, 8.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13442} -{name:"Obsidian cape", itemDescription:"A cape woven of obsidian plates.", shopValue:0, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13443} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:0, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13444} -{name:"Granite maul", itemDescription:"Simplicity is the best weapon.", shopValue:0, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 81.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13445} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13446} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13447} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13448} -{name:"Dragon full helm", itemDescription:"Protects your head and looks impressive too.", shopValue:0, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 45.0, 48.0, 41.0, -1.0, 46.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13449} -{name:"Armadyl godsword", itemDescription:"A beautiful, heavy sword.", shopValue:0, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13450} -{name:"Bandos godsword", itemDescription:"A brutally heavy sword.", shopValue:0, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13451} -{name:"Saradomin godsword", itemDescription:"A gracious, heavy sword.", shopValue:0, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13452} -{name:"Zamorak godsword", itemDescription:"A terrifying, heavy sword.", shopValue:0, lowAlch:500000, highAlch:750000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 132.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13453} -{name:"Zamorakian spear", itemDescription:"An evil spear.", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:30.0, bonuses:[85.0, 65.0, 65.0, 0.0, 0.0, 13.0, 13.0, 12.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13454} -{name:"Armadyl helmet", itemDescription:"A helmet of great craftmanship.", shopValue:0, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[-5.0, -5.0, -5.0, -5.0, 10.0, 6.0, 6.0, 10.0, 10.0, 8.0, 12.0, 0.0, 5.0, 2.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13455} -{name:"Armadyl chestplate", itemDescription:"A chestplate of great craftsmanship", shopValue:0, lowAlch:24000, highAlch:36000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -15.0, 33.0, 56.0, 48.0, 61.0, 70.0, 57.0, 52.0, 0.0, 10.0, 5.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13456} -{name:"Armadyl chainskirt", itemDescription:"A chainskirt of great craftsmanship.", shopValue:0, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 20.0, 32.0, 26.0, 34.0, 40.0, 33.0, 25.0, 0.0, 7.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13457} -{name:"Bandos chestplate", itemDescription:"A sturdy chestplate.", shopValue:0, lowAlch:106000, highAlch:159000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, -15.0, -10.0, 98.0, 93.0, 105.0, -6.0, 133.0, 52.0, 4.0, 0.0, 9.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13458} -{name:"Bandos tassets", itemDescription:"A sturdy pair of tassets.", shopValue:0, lowAlch:109000, highAlch:163500, isStackable:false, isNoteable:false, weight:80.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 71.0, 63.0, 66.0, -4.0, 93.0, 25.0, 3.0, 0.0, 6.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13459} -{name:"Bandos boots", itemDescription:"Some sturdy boots", shopValue:0, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -5.0, -3.0, 17.0, 18.0, 19.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13460} -{name:"Saradomin sword", itemDescription:"The incredible blade of an Icyene.", shopValue:0, lowAlch:52000, highAlch:78000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 82.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13461} -{name:"Dragon boots", itemDescription:"These will protect my feet.", shopValue:0, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 16.0, 17.0, 18.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13462} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13463} -{name:"Task list", itemDescription:"This reminds me of my current job and who set me to the task.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13464} -{name:"Dragon dagger", itemDescription:"A powerful dagger.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13465} -{name:"Dragon dagger (p)", itemDescription:"A powerful dagger.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13466} -{name:"Dragon dagger (p+)", itemDescription:"A powerful dagger.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13467} -{name:"Dragon dagger (p++)", itemDescription:"A powerful dagger.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13468} -{name:"Rune hatchet", itemDescription:"A powerful hatchet.", shopValue:0, lowAlch:5120, highAlch:7680, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 26.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13469} -{name:"Dragon hatchet", itemDescription:"A very powerful hatchet.", shopValue:0, lowAlch:22000, highAlch:33000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 38.0, 32.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13470} -{name:"Rune battleaxe", itemDescription:"A vicious looking axe.", shopValue:0, lowAlch:16640, highAlch:24960, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 48.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 64.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13471} -{name:"Dragon battleaxe", itemDescription:"A vicious looking axe.", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 70.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13472} -{name:"Rune warhammer", itemDescription:"I don't think it's intended for joinery.", shopValue:0, lowAlch:16600, highAlch:24900, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 53.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13473} -{name:"Rune longsword", itemDescription:"A razor sharp longsword", shopValue:0, lowAlch:12800, highAlch:19200, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 47.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13474} -{name:"Dragon longsword", itemDescription:"A very powerful sword.", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[58.0, 69.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13475} -{name:"Rune scimitar", itemDescription:"A vicious, curved sword.", shopValue:0, lowAlch:10240, highAlch:15360, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13476} -{name:"Dragon scimitar", itemDescription:"A vicious, curved sword.", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[8.0, 67.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13477} -{name:"Dragon halberd", itemDescription:"A dragon halberd.", shopValue:0, lowAlch:130000, highAlch:195000, isStackable:false, isNoteable:false, weight:31.0, bonuses:[70.0, 95.0, 0.0, -4.0, 0.0, -1.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 89.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13478} -{name:"Dragon mace", itemDescription:"A spiky mace.", shopValue:0, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[40.0, -2.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13479} -{name:"Rune pickaxe", itemDescription:"Used for mining.", shopValue:0, lowAlch:12800, highAlch:19200, isStackable:false, isNoteable:false, weight:22.0, bonuses:[26.0, -2.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13480} -{name:"Dragon chainbody", itemDescription:"A series of connected metal rings.", shopValue:0, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13481} -{name:"Rune platebody", itemDescription:"Provides excellent protection.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13482} -{name:"Green d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:3120, highAlch:4680, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -20.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 40.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13483} -{name:"Blue d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:3744, highAlch:5616, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 20.0, 45.0, 37.0, 50.0, 30.0, 45.0, 45.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13484} -{name:"Red d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:4492, highAlch:6738, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 25.0, 50.0, 42.0, 55.0, 40.0, 50.0, 50.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13485} -{name:"Black d'hide body", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:5392, highAlch:8088, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13486} -{name:"Rune platelegs", itemDescription:"These look pretty heavy.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13487} -{name:"Dragon platelegs", itemDescription:"Looks pretty heavy.", shopValue:0, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13488} -{name:"Rune plateskirt", itemDescription:"Designer leg protection.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13489} -{name:"Dragon plateskirt", itemDescription:"This looks pretty heavy.", shopValue:0, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13490} -{name:"Green d'hide chaps", itemDescription:"100% real dragonhide.", shopValue:0, lowAlch:1560, highAlch:2340, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 15.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13491} -{name:"Blue d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:1728, highAlch:2592, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 25.0, 19.0, 27.0, 14.0, 25.0, 20.0, 0.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13492} -{name:"Red d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:2072, highAlch:3108, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 14.0, 28.0, 22.0, 30.0, 20.0, 28.0, 25.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13493} -{name:"Black d'hide chaps", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:2488, highAlch:3732, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 7.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13494} -{name:"Dragon med helm", itemDescription:"Makes the wearer pretty intimidating.", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13495} -{name:"Rune full helm", itemDescription:"A full face helmet.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13496} -{name:"Green d'hide vambraces", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13497} -{name:"Blue d'hide vambraces", itemDescription:"Made from 100% real dragonhide.", shopValue:0, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 9.0, 4.0, 3.0, 5.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13498} -{name:"Red d'hide vambraces", itemDescription:"Vambraces made from 100% real dragonhide.", shopValue:0, lowAlch:1440, highAlch:2160, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, -10.0, 10.0, 5.0, 4.0, 6.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13499} -{name:"Black d'hide vambraces", itemDescription:"Vambraces made from 100% real dragonhide.", shopValue:0, lowAlch:1728, highAlch:2592, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13500} -{name:"Splitbark helm", itemDescription:"A wooden helmet.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 3.0, -2.0, 10.0, 9.0, 11.0, 3.0, 0.0, 7.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13501} -{name:"Splitbark body", itemDescription:"Provides good protection.", shopValue:0, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 10.0, -10.0, 36.0, 26.0, 42.0, 15.0, 0.0, 40.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13502} -{name:"Splitbark legs", itemDescription:"These should protect my legs.", shopValue:0, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 7.0, -7.0, 22.0, 20.0, 25.0, 10.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13503} -{name:"Splitbark gauntlets", itemDescription:"These should keep my hands safe.", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13504} -{name:"Splitbark boots", itemDescription:"Wooden foot protection.", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 2.0, -1.0, 3.0, 2.0, 4.0, 2.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13505} -{name:"Dragon sq shield", itemDescription:"An ancient and powerful looking Dragon Square shield.", shopValue:0, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13506} -{name:"Rune kiteshield", itemDescription:"A large metal shield.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13507} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:0, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13508} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13509} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:0, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13510} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13511} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13512} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:0, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13513} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13514} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:0, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13515} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13516} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13517} -{name:"Mystic hat", itemDescription:" A magical hat. ", shopValue:0, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13518} -{name:"Mystic robe top", itemDescription:"The upper half of a magical robe.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13519} -{name:"Mystic robe bottom", itemDescription:"The lower half of a magical robe.", shopValue:0, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13520} -{name:"Mystic gloves", itemDescription:"Bright/Dark magical gloves.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13521} -{name:"Mystic boots", itemDescription:"Magical boots.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13522} -{name:"Maple longbow", itemDescription:"A nice sturdy bow made out of maple.", shopValue:0, lowAlch:256, highAlch:384, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13523} -{name:"Maple shortbow", itemDescription:"A shortbow made out of maple, still effective.", shopValue:0, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13524} -{name:"Yew longbow", itemDescription:"A nice sturdy bow made out of yew.", shopValue:0, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13525} -{name:"Yew shortbow", itemDescription:"A shortbow made out of yew, still effective.", shopValue:0, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13526} -{name:"Magic longbow", itemDescription:"A nice sturdy magical bow.", shopValue:0, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13527} -{name:"Magic shortbow", itemDescription:"Short and magical, but still effective.", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13528} -{name:"Seercull", itemDescription:"An ancient Fremennik bow that was once used to battle the Moon Clan.", shopValue:0, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13529} -{name:"Rune crossbow", itemDescription:"A runite crossbow.", shopValue:0, lowAlch:6480, highAlch:9720, isStackable:false, isNoteable:false, weight:60.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13530} -{name:"Red partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13531} -{name:"Yellow partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13532} -{name:"Blue partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13533} -{name:"Green partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13534} -{name:"Purple partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13535} -{name:"White partyhat", itemDescription:"A nice hat from a cracker.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13536} -{name:"Santa hat", itemDescription:"It's a Santa hat.", shopValue:0, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13537} -{name:"Green h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:0, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13538} -{name:"Blue h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:0, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13539} -{name:"Red h'ween mask", itemDescription:"Aaaarrrghhh ... I'm a monster.", shopValue:0, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:34.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13540} -{name:"Willow composite bow", itemDescription:"A powerful bow made from willow.", shopValue:0, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13541} -{name:"Yew composite bow", itemDescription:"A powerful bow made from yew wood.", shopValue:0, lowAlch:720, highAlch:1080, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13542} -{name:"Magic composite bow", itemDescription:"A powerful bow made from magic wood.", shopValue:0, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13543} -{name:"Third-age range top", itemDescription:"Ancient range protection crafted from white dragonhide.", shopValue:0, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 60.0, 55.0, 52.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13544} -{name:"Third-age range legs", itemDescription:"Fabulously ancient range protection crafted from white dragonhide.", shopValue:0, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 30.0, 31.0, 25.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13545} -{name:"Third-age range coif", itemDescription:"Ancient range protection crafted from white dragonhide.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -2.0, 9.0, 4.0, 7.0, 10.0, 5.0, 8.0, 12.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13546} -{name:"Third-age vambraces", itemDescription:"Fabulously ancient range protection crafted from white dragonhide.", shopValue:0, lowAlch:86000, highAlch:129000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -11.0, 11.0, 6.0, 5.0, 7.0, 9.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13547} -{name:"Third-age robe top", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:0, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 24.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13548} -{name:"Third-age robe", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:0, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 20.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13549} -{name:"Third-age mage hat", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 12.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13550} -{name:"Third-age amulet", itemDescription:"Ancient mage protection enchanted in the Third-Age.", shopValue:0, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13551} -{name:"Third-age platelegs", itemDescription:"Ancient armour beaten from magical silver.", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -25.0, -2.0, 78.0, 76.0, 83.0, -5.0, 75.0, 25.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13552} -{name:"Third-age platebody", itemDescription:"Ancient armour beaten from magical silver.", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -20.0, 0.0, 96.0, 108.0, 113.0, -4.0, 97.0, 52.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13553} -{name:"Third-age full helmet", itemDescription:"Ancient armour beaten from magical silver.", shopValue:0, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, -2.0, 47.0, 49.0, 43.0, -3.0, 48.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13554} -{name:"Third-age kiteshield", itemDescription:"Ancient armour beaten from magical silver.", shopValue:0, lowAlch:72000, highAlch:108000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, -4.0, 63.0, 65.0, 61.0, -3.0, 63.0, 60.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13555} -{name:"Ranger boots", itemDescription:"Lightweight boots ideal for rangers.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 2.0, 3.0, 4.0, 2.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13556} -{name:"Wizard boots", itemDescription:"Slightly magical boots.", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13557} -{name:"Robin hood hat", itemDescription:"Endorsed by Robin Hood.", shopValue:0, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 4.0, 6.0, 8.0, 4.0, 4.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13558} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13559} -{name:"Explorer's ring 1", itemDescription:"A Lumbridge explorer's ring.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13560} -{name:"Explorer's ring 2", itemDescription:"A Lumbridge explorer's ring.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13561} -{name:"Explorer's ring 3", itemDescription:"A Lumbridge explorer's ring.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13562} -{name:"Button mushroom", itemDescription:"An occasionally edible mushroom.", shopValue:38, lowAlch:15, highAlch:22, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13563} -{name:"Button mushroom", itemDescription:"An occasionally edible mushroom.", shopValue:38, lowAlch:15, highAlch:22, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13564} -{name:"Doll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13565} -{name:"Jennica's ring", itemDescription:"This magical ring once belonged to Summer's mother.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13566} -{name:"Cursed magic logs", itemDescription:"Logs cut from a cursed magic tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13567} -{name:"Cursed magic logs", itemDescription:"Logs cut from a cursed magic tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13568} -{name:"Enchanted key notes", itemDescription:"Notes on how to use the enchanted key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13569} -{name:"Bowl", itemDescription:"Useful for mixing things.", shopValue:0, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13570} -{name:"Bucket of milk", itemDescription:"It's a bucket of milk.", shopValue:0, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13571} -{name:"Clean guam", itemDescription:"A fresh herb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13572} -{name:"Bowl of honey", itemDescription:"A bowlful of bees' precious product.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13573} -{name:"Bowl of milk and honey", itemDescription:"A bowlful of milk and honey.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13574} -{name:"Bowl of milk, honey and guam", itemDescription:"A bowl full of milk, honey and guam.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13575} -{name:"Map of runescape", itemDescription:"Your best impression of a map of RuneScape.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13576} -{name:"Papyrus", itemDescription:"Used for making notes.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13577} -{name:"Charcoal", itemDescription:"A lump of charcoal.", shopValue:0, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13578} -{name:"Spade", itemDescription:"A slightly muddy spade. / Popular with farmers and treasure hunters.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13579} -{name:"Plant pot", itemDescription:"A plant pot filled with soil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13580} -{name:"Pear tree seedling", itemDescription:"A seedling has been sown in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13581} -{name:"Mango tree seedling", itemDescription:"A seedling has been sown in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13582} -{name:"Quince tree seedling", itemDescription:"A seedling has been sown in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13583} -{name:"Lemon tree seedling", itemDescription:"A seedling has been sown in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13584} -{name:"Avocado tree seedling", itemDescription:"A seedling has been sown in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13585} -{name:"Plum tree seedling", itemDescription:"A seedling has been sown in this plant pot.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13586} -{name:"Pestle and mortar", itemDescription:"I can grind things for potions in this.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13587} -{name:"Ground guam", itemDescription:"One of the ingredients for making fish food.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13588} -{name:"Bucket", itemDescription:"It's an empty bucket.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13589} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13590} -{name:"Enchanted key", itemDescription:"It changes temperature as I walk. (Meeting History)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13591} -{name:"A brooch", itemDescription:"Some ladies jewellery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13592} -{name:"Old tome", itemDescription:"It's falling apart, but full of knowledge.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13593} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13594} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13595} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13596} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13597} -{name:"Runecrafting guild teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13598} -{name:"Air altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13599} -{name:"Mind altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13600} -{name:"Water altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13601} -{name:"Earth altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13602} -{name:"Fire altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13603} -{name:"Body altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13604} -{name:"Cosmic altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13605} -{name:"Chaos altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13606} -{name:"Nature altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13607} -{name:"Law altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13608} -{name:"Death altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13609} -{name:"Blood altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13610} -{name:"Astral altar teleport", itemDescription:"A tablet containing a magic spell.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13611} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:20, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13612} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:20, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13613} -{name:"Runecrafter robe", itemDescription:"Heavy duty wizard robes.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13614} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13615} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13616} -{name:"Runecrafter skirt", itemDescription:"A heavy-duty wizard robe.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13617} -{name:"Runecrafter gloves", itemDescription:"Essence can be rough on the hands", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13618} -{name:"Runecrafter robe", itemDescription:"Heavy duty wizard robes.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13619} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13620} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13621} -{name:"Runecrafter skirt", itemDescription:"A heavy-duty wizard robe.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13622} -{name:"Runecrafter gloves", itemDescription:"Essence can be rough on the hands", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13623} -{name:"Runecrafter robe", itemDescription:"Heavy duty wizard robes.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13624} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13625} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13626} -{name:"Runecrafter skirt", itemDescription:"A heavy-duty wizard robe.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13627} -{name:"Runecrafter gloves", itemDescription:"Essence can be rough on the hands", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13628} -{name:"Runecrafting staff", itemDescription:"Staff with a holder for a talisman on top.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13629} -{name:"Air talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13630} -{name:"Mind talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13631} -{name:"Water talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13632} -{name:"Earth talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13633} -{name:"Fire talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13634} -{name:"Body talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13635} -{name:"Cosmic talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13636} -{name:"Chaos talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13637} -{name:"Nature talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13638} -{name:"Law talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13639} -{name:"Death talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13640} -{name:"Blood talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13641} -{name:"Omni-talisman staff", itemDescription:"A staff with a talisman on top.", shopValue:1500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 7.0, 5.0, 0.0, 2.0, 3.0, 1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13642} -{name:"Yellow attractor", itemDescription:"Attracts Runecrafting energy orbs in the rune altars.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13643} -{name:"Yellow repeller", itemDescription:"Repels Runecrafting energy orbs in the rune altars.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13644} -{name:"Green attractor", itemDescription:"Attracts Runecrafting energy orbs in the rune altars.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13645} -{name:"Green repeller", itemDescription:"Repels Runecrafting energy orbs in the rune altars.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13646} -{name:"Green barrier generator", itemDescription:"It creates barriers.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13647} -{name:"Yellow barrier generator", itemDescription:"It creates barriers.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13648} -{name:"Omni-talisman", itemDescription:"Many mysterious powers emanate from the talisman.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13649} -{name:"Runecrafting guild token", itemDescription:"Wizard Elriss will exchange these for rewards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13650} -{name:"Runecrafting guild token", itemDescription:"Wizard Elriss will exchange these for rewards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13651} -{name:"Runecrafting guild token", itemDescription:"Wizard Elriss will exchange these for rewards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13652} -{name:"Runecrafting guild token", itemDescription:"Wizard Elriss will exchange these for rewards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13653} -{name:"Runecrafting guild token", itemDescription:"Wizard Elriss will exchange these for rewards.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13654} -{name:"Omni-tiara", itemDescription:"A tiara infused with the properties of all talismans.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13655} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13656} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13657} -{name:"Runecrafter hat", itemDescription:"Comes with goggles, for extra safety while Runecrafting.", shopValue:75, lowAlch:30, highAlch:45, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13658} -{name:"Ring of fire", itemDescription:"It burns, burns, burns...", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13659} -{name:"Flame gloves", itemDescription:"The hottest gloves in town.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13660} -{name:"Inferno adze", itemDescription:" risk of fire.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, 9.0, 7.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13661} -{name:"Fire beacon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13662} -{name:"Circus ticket", itemDescription:"Tear ticket to exit the circus.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13663} -{name:"null", itemDescription:"It's a null.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13664} -{name:"null", itemDescription:"It's a null.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13665} -{name:"Giant's hand", itemDescription:"Let's give them a big hand!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13666} -{name:"Clown hat", itemDescription:"A clown hat!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13667} -{name:"Clown shirt", itemDescription:"Buttoning this up is tricky.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13668} -{name:"Clown leggings", itemDescription:"These are my funny pants.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13669} -{name:"Clown shoes", itemDescription:"For helping clowns stay upright.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13670} -{name:"Tambourine", itemDescription:"For making a happy noise.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13671} -{name:"Ringmaster hat", itemDescription:"Very stylish.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13672} -{name:"Ringmaster shirt", itemDescription:"Fits nicely.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13673} -{name:"Ringmaster pants", itemDescription:"Very stylish.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13674} -{name:"Ringmaster boots", itemDescription:"Shiny.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13675} -{name:"Mega-phonus", itemDescription:"For shouting at people.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13676} -{name:"Acrobat shirt", itemDescription:"Stretchy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13677} -{name:"Acrobat pants", itemDescription:"Very tight fitting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13678} -{name:"Acrobat shoes", itemDescription:"These keep your feet off the floor.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13679} -{name:"Acrobat hood", itemDescription:"Oh no, I'm bald! Just kidding.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13680} -{name:"Acrobat shirt", itemDescription:"Stretchy.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13681} -{name:"Acrobat pants", itemDescription:"Very tight fitting.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13682} -{name:"Acrobat shoes", itemDescription:"These keep your feet off the floor.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13683} -{name:"Acrobat hood", itemDescription:"Oh no, I'm bald! Just kidding.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13684} -{name:"A stylish hat", itemDescription:"Very dapper!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13685} -{name:"A stylish hat", itemDescription:"Very dapper!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13686} -{name:"A stylish hat", itemDescription:"Very dapper!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13687} -{name:"A stylish hat", itemDescription:"Very dapper!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13688} -{name:"A stylish hat", itemDescription:"Very dapper!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13689} -{name:"A stylish hat", itemDescription:"Very dapper!", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13690} -{name:"Shirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13691} -{name:"Shirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13692} -{name:"Shirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13693} -{name:"Shirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13694} -{name:"Shirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13695} -{name:"Shirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13696} -{name:"Leggings", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13697} -{name:"Leggings", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13698} -{name:"Leggings", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13699} -{name:"Skirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13700} -{name:"Skirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13701} -{name:"Skirt", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13702} -{name:"Shoes", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13703} -{name:"Shoes", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13704} -{name:"Shoes", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13705} -{name:"Shoes", itemDescription:"", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13706} -{name:"Tightrope 101", itemDescription:"Shows you the moves you need to succeed!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13707} -{name:"Tightrope 101", itemDescription:"Shows you the moves you need to succeed!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13708} -{name:"Balls (level 10 approx.)", itemDescription:"An Agility level of 10 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13709} -{name:"Plates (level 20 approx.)", itemDescription:"An Agility level of 20 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13710} -{name:"Eggs (level 30 approx.)", itemDescription:"An Agility level of 30 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13711} -{name:"Knives (level 40 approx.)", itemDescription:"An Agility level of 40 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13712} -{name:"Spades (level 50 approx.)", itemDescription:"An Agility level of 50 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13713} -{name:"Tuna (level 60 approx.)", itemDescription:"An Agility level of 60 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13714} -{name:"Soap (level 70 approx.)", itemDescription:"An Agility level of 70 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13715} -{name:"Cannon balls (level 80 approx.)", itemDescription:"An Agility level of 80 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13716} -{name:"Torches (level 90 approx.)", itemDescription:"An Agility level of 90 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13717} -{name:"Chinchompas (level 99 approx.)", itemDescription:"An Agility level of 99 is advised when juggling these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13718} -{name:"Performance shortbow", itemDescription:"Short, but effective.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13719} -{name:"Performance knife", itemDescription:"A finely balanced throwing knife.", shopValue:14, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13720} -{name:"Performance throwing axe", itemDescription:"A finely balanced throwing axe.", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13721} -{name:"Performance arrow", itemDescription:"Arrows with bronze heads.", shopValue:7, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13722} -{name:"Teleport spell", itemDescription:"A tablet containing a Magic spell.", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13723} -{name:"Levitation spell", itemDescription:"A tablet containing a Magic spell.", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13724} -{name:"Alchemy spell", itemDescription:"A tablet containing a Magic spell.", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13725} -{name:"Elemental spell", itemDescription:"A tablet containing a Magic spell.", shopValue:100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13726} -{name:"Stardust", itemDescription:"Small, shiny bits of rock.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13727} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13728} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13729} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13730} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13731} -{name:"Spy notebook", itemDescription:"Notes on the locations of penguin spies.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13732} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13733} -{name:"Spirit shield", itemDescription:"An ethereal shield.", shopValue:70000, lowAlch:28000, highAlch:42000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 41.0, 50.0, 1.0, 45.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13734} -{name:"Spirit shield", itemDescription:"An ethereal shield.", shopValue:70000, lowAlch:28000, highAlch:42000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 41.0, 50.0, 1.0, 45.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13735} -{name:"Blessed spirit shield", itemDescription:"An ethereal shield that has been blessed with holy powers.", shopValue:1400000, lowAlch:560000, highAlch:840000, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 55.0, 73.0, 2.0, 52.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13736} -{name:"Blessed spirit shield", itemDescription:"An ethereal shield that has been blessed with holy powers.", shopValue:1400000, lowAlch:560000, highAlch:840000, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 55.0, 73.0, 2.0, 52.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13737} -{name:"Arcane spirit shield", itemDescription:"An ethereal shield with an arcane sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:false, isNoteable:false, weight:26.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 53.0, 55.0, 73.0, 2.0, 52.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13738} -{name:"Arcane spirit shield", itemDescription:"An ethereal shield with an arcane sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:true, isNoteable:true, weight:26.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 53.0, 55.0, 73.0, 2.0, 52.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13739} -{name:"Divine spirit shield", itemDescription:"An ethereal shield with a divine sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 65.0, 75.0, 2.0, 57.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13740} -{name:"Divine spirit shield", itemDescription:"An ethereal shield with a divine sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 65.0, 75.0, 2.0, 57.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13741} -{name:"Elysian spirit shield", itemDescription:"An ethereal shield with an elysian sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 65.0, 75.0, 2.0, 57.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13742} -{name:"Elysian spirit shield", itemDescription:"An ethereal shield with an elysian sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 65.0, 75.0, 2.0, 57.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13743} -{name:"Spectral spirit shield", itemDescription:"An ethereal shield with a spectral sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:false, isNoteable:false, weight:26.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 55.0, 73.0, 30.0, 52.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13744} -{name:"Spectral spirit shield", itemDescription:"An ethereal shield with a spectral sigil attached to it.", shopValue:2000000, lowAlch:800000, highAlch:1200000, isStackable:true, isNoteable:true, weight:26.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 53.0, 55.0, 73.0, 30.0, 52.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13745} -{name:"Arcane sigil", itemDescription:"A sigil in the shape of an arcane rune.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13746} -{name:"Arcane sigil", itemDescription:"A sigil in the shape of an arcane rune.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13747} -{name:"Divine sigil", itemDescription:"A sigil in the shape of a divine symbol.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13748} -{name:"Divine sigil", itemDescription:"A sigil in the shape of a divine symbol.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13749} -{name:"Elysian sigil", itemDescription:"A sigil marked with elysian signs.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13750} -{name:"Elysian sigil", itemDescription:"A sigil marked with elysian signs.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13751} -{name:"Spectral sigil", itemDescription:"A sigil tempered with spectral powers.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13752} -{name:"Spectral sigil", itemDescription:"A sigil tempered with spectral powers.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13753} -{name:"Holy elixir", itemDescription:"A bottle of holy elixir.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13754} -{name:"Holy elixir", itemDescription:"A bottle of holy elixir.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13755} -{name:"Cursed willow logs", itemDescription:"Logs cut from cursed willow roots.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13756} -{name:"Hartwin", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13757} -{name:"Grubby key", itemDescription:"A key that was found while tracking zombies. (Defender of Varrock)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13758} -{name:"Scrap of paper", itemDescription:"The location of Camdozaal, given to me by Thurgo.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13759} -{name:"Bottle", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13760} -{name:"Bottle of mist", itemDescription:"A bottle of red mist.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13761} -{name:"List of elders", itemDescription:"This lists each of the founding members of the Council of Varrock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13762} -{name:"Cavalier and mask", itemDescription:"I hope I don't meet any roundheads...", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13763} -{name:"Rune claws", itemDescription:"A set of fighting claws.", shopValue:0, lowAlch:4800, highAlch:7200, isStackable:false, isNoteable:false, weight:9.0, bonuses:[26.0, 38.0, -4.0, 0.0, 0.0, 10.0, 19.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13764} -{name:"Rune dagger", itemDescription:"A powerful dagger.", shopValue:0, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13765} -{name:"Rune dagger (p)", itemDescription:"A powerful dagger.", shopValue:1, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13766} -{name:"Rune dagger (p+)", itemDescription:"A powerful dagger.", shopValue:1, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13767} -{name:"Rune dagger (p++)", itemDescription:"A powerful dagger.", shopValue:1, lowAlch:3200, highAlch:4800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13768} -{name:"Rune spear", itemDescription:"A rune tipped spear.", shopValue:0, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13769} -{name:"Dragon spear", itemDescription:"A dragon tipped spear.", shopValue:0, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13770} -{name:"Rune spear (p)", itemDescription:"A rune tipped spear.", shopValue:1, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13771} -{name:"Dragon spear (p)", itemDescription:"A dragon tipped spear.", shopValue:1, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13772} -{name:"Rune spear (p+)", itemDescription:"A rune tipped spear.", shopValue:1, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13773} -{name:"Dragon spear (p+)", itemDescription:"A dragon tipped spear.", shopValue:1, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13774} -{name:"Rune spear (p++)", itemDescription:"A rune tipped spear.", shopValue:1, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:22.0, bonuses:[36.0, 36.0, 36.0, 0.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13775} -{name:"Dragon spear (p++)", itemDescription:"A dragon tipped spear.", shopValue:1, lowAlch:24960, highAlch:37440, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13776} -{name:"Rune sword", itemDescription:"A razor sharp sword.", shopValue:0, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 26.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 39.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13777} -{name:"Rune 2h sword", itemDescription:"A two handed sword.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 69.0, 50.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13778} -{name:"Rune halberd", itemDescription:"A rune halberd.", shopValue:0, lowAlch:51200, highAlch:76800, isStackable:false, isNoteable:false, weight:3.0, bonuses:[48.0, 67.0, 0.0, -4.0, 0.0, -1.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13779} -{name:"Rune mace", itemDescription:"A spiky mace.", shopValue:0, lowAlch:5760, highAlch:8640, isStackable:false, isNoteable:false, weight:179.0, bonuses:[20.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13780} -{name:"Rune chainbody", itemDescription:"A series of connected metal rings.", shopValue:0, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 63.0, 72.0, 78.0, -3.0, 65.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13781} -{name:"Rune boots", itemDescription:"These will protect my feet.", shopValue:0, lowAlch:5000, highAlch:7500, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 12.0, 13.0, 14.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13782} -{name:"Rune med helm", itemDescription:"A medium sized helmet.", shopValue:0, lowAlch:7680, highAlch:11520, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 22.0, 23.0, 21.0, -1.0, 22.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13783} -{name:"Granite helm", itemDescription:"A stone helmet.", shopValue:0, lowAlch:18400, highAlch:27600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -9.0, -7.0, 31.0, 33.0, 29.0, -1.0, 39.0, 9.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13784} -{name:"Granite body", itemDescription:"Provides excellent protection.", shopValue:0, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:226.0, bonuses:[0.0, 0.0, 0.0, -22.0, -5.0, 87.0, 84.0, 79.0, -6.0, 97.0, 45.0, 4.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13785} -{name:"Granite legs", itemDescription:"These look pretty heavy.", shopValue:0, lowAlch:26400, highAlch:39600, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, -31.0, -18.0, 43.0, 45.0, 41.0, -4.0, 68.0, 20.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13786} -{name:"Rune sq shield", itemDescription:"A medium square shield.", shopValue:0, lowAlch:15360, highAlch:23040, isStackable:false, isNoteable:false, weight:364.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 38.0, 40.0, 36.0, 0.0, 38.0, 35.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13787} -{name:"Granite shield", itemDescription:"A solid stone shield.", shopValue:0, lowAlch:22400, highAlch:33600, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -12.0, -8.0, 40.0, 42.0, 38.0, 0.0, 65.0, 50.0, 5.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13788} -{name:"A powdered wig", itemDescription:"A big do about nothing.", shopValue:0, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13789} -{name:"Flared trousers", itemDescription:"These'll help me stay alive.", shopValue:0, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13790} -{name:"Pantaloons", itemDescription:"Alas, someone has slashed my pantaloons.", shopValue:0, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13791} -{name:"Sleeping cap", itemDescription:"A cap for wearing whil...zzzzzzzzz", shopValue:0, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13792} -{name:"Rune cane", itemDescription:"A diamond-topped cane.", shopValue:0, lowAlch:5760, highAlch:8640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, -2.0, 39.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13793} -{name:"Top hat", itemDescription:"Comes with a free rabbit!", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13794} -{name:"Sheep mask", itemDescription:"Shear elegance.", shopValue:0, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13795} -{name:"Penguin mask", itemDescription:"I can get the look right, but can I do the waddle too?", shopValue:0, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13796} -{name:"Bat mask", itemDescription:"The bats have left the belltower.", shopValue:0, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13797} -{name:"Cat mask", itemDescription:"It's the year of the cat!", shopValue:0, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13798} -{name:"Wolf mask", itemDescription:"I'm hungry like the wolf.", shopValue:0, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13799} -{name:"Rune platebody (g)", itemDescription:"Rune platebody with gold trim.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13800} -{name:"Rune platelegs (g)", itemDescription:"Rune platelegs with gold trim.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13801} -{name:"Rune plateskirt (g)", itemDescription:"Rune plateskirt with gold trim.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13802} -{name:"Rune full helm (g)", itemDescription:"Rune full helmet with gold trim.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13803} -{name:"Rune kiteshield (g)", itemDescription:"Rune kiteshield with gold trim", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13804} -{name:"Rune platebody (t)", itemDescription:"Rune platebody with trim.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13805} -{name:"Rune platelegs (t)", itemDescription:"Rune platelegs with trim!", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13806} -{name:"Rune plateskirt (t)", itemDescription:"Rune plateskirt with trim.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13807} -{name:"Rune full helm (t)", itemDescription:"Rune full helmet with trim.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13808} -{name:"Rune kiteshield (t)", itemDescription:"A large, metal shield with a nice trim.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13809} -{name:"Highwayman mask", itemDescription:"Your money or your life!", shopValue:0, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13810} -{name:"Blue beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:0, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13811} -{name:"Black beret", itemDescription:"Parlez-vous francais?(Do you speak French?)", shopValue:0, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13812} -{name:"White beret", itemDescription:"Parlez-vous francais? (Do you speak French?)", shopValue:0, lowAlch:32, highAlch:48, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13813} -{name:"Tan cavalier", itemDescription:"All for one and one for all!", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13814} -{name:"Dark cavalier", itemDescription:"All for one and one for all!", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13815} -{name:"Black cavalier", itemDescription:"All for one and one for all!", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13816} -{name:"Red headband", itemDescription:"A minimalist's hat.", shopValue:0, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13817} -{name:"Black headband", itemDescription:"A minimalist's hat.", shopValue:0, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13818} -{name:"Brown headband", itemDescription:"A minimalist's hat.", shopValue:0, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13819} -{name:"Zamorak platebody", itemDescription:"Rune platebody in the colours of Zamorak.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13820} -{name:"Zamorak platelegs", itemDescription:"Rune platelegs in the colours of Zamorak.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13821} -{name:"Zamorak plateskirt", itemDescription:"Rune plateskirt in the colours of Zamorak.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13822} -{name:"Zamorak full helm", itemDescription:"A full helmet in the colours of Zamorak.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13823} -{name:"Zamorak kiteshield", itemDescription:"A Rune kiteshield in the colours of Zamorak.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13824} -{name:"Saradomin platebody", itemDescription:"Rune platebody in the colours of Saradomin.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13825} -{name:"Saradomin platelegs", itemDescription:"Rune platelegs in the colours of Saradomin!", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13826} -{name:"Saradomin plateskirt", itemDescription:"Rune plateskirt in the colours of Saradomin.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13827} -{name:"Saradomin full helm", itemDescription:"Rune full helmet in the colours of Saradomin.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13828} -{name:"Saradomin kiteshield", itemDescription:"Rune kiteshield in the colours of Saradomin.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13829} -{name:"Guthix platebody", itemDescription:"Rune platebody in the colours of Guthix.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:907.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13830} -{name:"Guthix platelegs", itemDescription:"Rune platelegs in the colours of Guthix.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13831} -{name:"Guthix plateskirt", itemDescription:"Rune plateskirt in the colours of Guthix.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13832} -{name:"Guthix full helm", itemDescription:"A rune full helmet in the colours of Guthix.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13833} -{name:"Guthix kiteshield", itemDescription:"Rune kiteshield in the colours of Guthix.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13834} -{name:"Gilded platebody", itemDescription:"Rune platebody with complete gold trim & plating.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -6.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13835} -{name:"Gilded platelegs", itemDescription:"Rune platelegs with gold plate.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13836} -{name:"Gilded plateskirt", itemDescription:"Rune plateskirt with gold plate.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13837} -{name:"Gilded full helm", itemDescription:"Rune full helmet with gold plate.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13838} -{name:"Gilded kiteshield", itemDescription:"Rune kiteshield with gold plate.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 45.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13839} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13840} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13841} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13842} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13843} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13844} -{name:"Brawling gloves (melee)", itemDescription:"A pair of gloves that gives you bonus Atk, Def, Str and LP xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13845} -{name:"Brawling gloves (ranged)", itemDescription:"A pair of gloves that gives you bonus Ranged xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13846} -{name:"Brawling gloves (magic)", itemDescription:"A pair of gloves that gives you bonus Magic xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13847} -{name:"Brawling gloves (prayer)", itemDescription:"A pair of gloves that gives you bonus Prayer xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13848} -{name:"Brawling gloves (agility)", itemDescription:"A pair of gloves that gives you bonus Agility xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13849} -{name:"Brawling gloves (wc)", itemDescription:"A pair of gloves that gives you bonus Woodcutting xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13850} -{name:"Brawling gloves (fm)", itemDescription:"A pair of gloves that gives you bonus Firemaking xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13851} -{name:"Brawling gloves (mining)", itemDescription:"A pair of gloves that gives you bonus Mining xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13852} -{name:"Brawling gloves (hunter)", itemDescription:"A pair of gloves that gives you bonus Hunting xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13853} -{name:"Brawling gloves (thieving)", itemDescription:"A pair of gloves that gives you bonus Thieving xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13854} -{name:"Brawling gloves (smithing)", itemDescription:"A pair of gloves that gives you bonus Smithing xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13855} -{name:"Brawling gloves (fishing)", itemDescription:"A pair of gloves that gives you bonus Fishing xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13856} -{name:"Brawling gloves (cooking)", itemDescription:"A pair of gloves that gives you bonus Cooking xp.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13857} -{name:"Zuriel's robe top", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 35.0, -10.0, 63.0, 45.0, 74.0, 35.0, 0.0, 60.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13858} -{name:"Zuriel's robe top", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 35.0, -10.0, 63.0, 45.0, 74.0, 35.0, 0.0, 60.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13859} -{name:"Zuriel's robe top (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 35.0, -10.0, 63.0, 45.0, 74.0, 35.0, 0.0, 60.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13860} -{name:"Zuriel's robe bottom", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 25.0, -7.0, 38.0, 35.0, 44.0, 24.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13861} -{name:"Zuriel's robe bottom", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 25.0, -7.0, 38.0, 35.0, 44.0, 24.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13862} -{name:"Zuriel's robe bottom (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 25.0, -7.0, 38.0, 35.0, 44.0, 24.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13863} -{name:"Zuriel's hood", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, -2.0, 20.0, 16.0, 22.0, 8.0, 0.0, 15.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13864} -{name:"Zuriel's hood", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, -2.0, 20.0, 16.0, 22.0, 8.0, 0.0, 15.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13865} -{name:"Zuriel's hood (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:150000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, -2.0, 20.0, 16.0, 22.0, 8.0, 0.0, 15.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13866} -{name:"Zuriel's staff", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:72000, highAlch:108000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[13.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13867} -{name:"Zuriel's staff", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:72000, highAlch:108000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[13.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13868} -{name:"Zuriel's staff (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:180000, lowAlch:72000, highAlch:108000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[13.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13869} -{name:"Morrigan's leather body", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 36.0, 61.0, 53.0, 66.0, 75.0, 62.0, 60.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13870} -{name:"Morrigan's leather body", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 36.0, 61.0, 53.0, 66.0, 75.0, 62.0, 60.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13871} -{name:"Morrigan's leather body (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 36.0, 61.0, 53.0, 66.0, 75.0, 62.0, 60.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13872} -{name:"Morrigan's leather chaps", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 23.0, 35.0, 29.0, 37.0, 46.0, 35.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13873} -{name:"Morrigan's leather chaps", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 23.0, 35.0, 29.0, 37.0, 46.0, 35.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13874} -{name:"Morrigan's leather chaps (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -10.0, 23.0, 35.0, 29.0, 37.0, 46.0, 35.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13875} -{name:"Morrigan's coif", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, 13.0, 8.0, 11.0, 14.0, 8.0, 12.0, 15.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13876} -{name:"Morrigan's coif", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, 13.0, 8.0, 11.0, 14.0, 8.0, 12.0, 15.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13877} -{name:"Morrigan's coif (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:150000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -5.0, 13.0, 8.0, 11.0, 14.0, 8.0, 12.0, 15.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13878} -{name:"Morrigan's javelin", itemDescription:"A vicious javelin.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13879} -{name:"Morrigan's javelin (p)", itemDescription:"A vicious javelin.", shopValue:10000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13880} -{name:"Morrigan's javelin (p+)", itemDescription:"A vicious javelin.", shopValue:10000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13881} -{name:"Morrigan's javelin (p++)", itemDescription:"A vicious javelin.", shopValue:10000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13882} -{name:"Morrigan's throwing axe", itemDescription:"A vicious throwing axe.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 117.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13883} -{name:"Statius's platebody", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[5.0, 5.0, 7.0, -30.0, -10.0, 154.0, 145.0, 121.0, -6.0, 157.0, 60.0, 6.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13884} -{name:"Statius's platebody", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[5.0, 5.0, 7.0, -30.0, -10.0, 154.0, 145.0, 121.0, -6.0, 157.0, 60.0, 6.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13885} -{name:"Statius's platebody (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[5.0, 5.0, 7.0, -30.0, -10.0, 154.0, 145.0, 121.0, -6.0, 157.0, 60.0, 6.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13886} -{name:"Vesta's chainbody", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[5.0, 7.0, 7.0, -15.0, 0.0, 120.0, 131.0, 145.0, -3.0, 140.0, 60.0, 6.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13887} -{name:"Vesta's chainbody", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:6.0, bonuses:[5.0, 7.0, 7.0, -15.0, 0.0, 120.0, 131.0, 145.0, -3.0, 140.0, 60.0, 6.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13888} -{name:"Vesta's chainbody (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:6.0, bonuses:[5.0, 7.0, 7.0, -15.0, 0.0, 120.0, 131.0, 145.0, -3.0, 140.0, 60.0, 6.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13889} -{name:"Statius's platelegs", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 3.0, 5.0, -21.0, -7.0, 110.0, 106.0, 97.0, -4.0, 121.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13890} -{name:"Statius's platelegs", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[3.0, 3.0, 5.0, -21.0, -7.0, 110.0, 106.0, 97.0, -4.0, 121.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13891} -{name:"Statius's platelegs (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 3.0, 5.0, -21.0, -7.0, 110.0, 106.0, 97.0, -4.0, 121.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13892} -{name:"Vesta's plateskirt", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 5.0, 5.0, -17.0, -4.0, 86.0, 100.0, 112.0, -2.0, 118.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13893} -{name:"Vesta's plateskirt", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[3.0, 5.0, 5.0, -17.0, -4.0, 86.0, 100.0, 112.0, -2.0, 118.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13894} -{name:"Vesta's plateskirt (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 5.0, 5.0, -17.0, -4.0, 86.0, 100.0, 112.0, -2.0, 118.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13895} -{name:"Statius's full helm", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 3.0, 4.0, -6.0, -2.0, 65.0, 70.0, 63.0, -1.0, 71.0, 15.0, 3.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13896} -{name:"Statius's full helm", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[3.0, 3.0, 4.0, -6.0, -2.0, 65.0, 70.0, 63.0, -1.0, 71.0, 15.0, 3.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13897} -{name:"Statius' full helm (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:150000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 3.0, 4.0, -6.0, -2.0, 65.0, 70.0, 63.0, -1.0, 71.0, 15.0, 3.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13898} -{name:"Vesta's longsword", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[106.0, 121.0, -2.0, 0.0, 0.0, 1.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 118.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13899} -{name:"Vesta's longsword", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[106.0, 121.0, -2.0, 0.0, 0.0, 1.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 118.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13900} -{name:"Vesta's longsword (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:180000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[106.0, 121.0, -2.0, 0.0, 0.0, 1.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 118.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13901} -{name:"Statius's warhammer", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13902} -{name:"Statius's warhammer", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[-4.0, -4.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13903} -{name:"Statius' warhammer (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:180000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[-4.0, -4.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13904} -{name:"Vesta's spear", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[133.0, 113.0, 120.0, 0.0, 0.0, 18.0, 21.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 122.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13905} -{name:"Vesta's spear", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[133.0, 113.0, 120.0, 0.0, 0.0, 18.0, 21.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 122.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13906} -{name:"Vesta's spear (deg)", itemDescription:"This item degrades in combat, and will turn to dust.", shopValue:180000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[133.0, 113.0, 120.0, 0.0, 0.0, 18.0, 21.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 122.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13907} -{name:"Corrupt statius's platebody", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[5.0, 5.0, 7.0, -10.0, -30.0, 154.0, 145.0, 121.0, -6.0, 157.0, 60.0, 6.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13908} -{name:"Corrupt statius's platebody", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[5.0, 5.0, 7.0, -10.0, -30.0, 154.0, 145.0, 121.0, -6.0, 157.0, 60.0, 6.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13909} -{name:"Corrupt statius's platebody (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[5.0, 5.0, 7.0, -10.0, -30.0, 154.0, 145.0, 121.0, -6.0, 157.0, 60.0, 6.0, 0.0, 12.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13910} -{name:"Corrupt vesta's chainbody", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 7.0, 7.0, -15.0, 0.0, 120.0, 131.0, 145.0, -3.0, 140.0, 60.0, 6.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13911} -{name:"Corrupt vesta's chainbody", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[5.0, 7.0, 7.0, -15.0, 0.0, 120.0, 131.0, 145.0, -3.0, 140.0, 60.0, 6.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13912} -{name:"Corrupt vesta's chainbody (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 7.0, 7.0, -15.0, 0.0, 120.0, 131.0, 145.0, -3.0, 140.0, 60.0, 6.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13913} -{name:"Corrupt statius's platelegs", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[3.0, 3.0, 5.0, -21.0, -7.0, 110.0, 106.0, 97.0, -4.0, 121.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13914} -{name:"Corrupt statius's platelegs", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[3.0, 3.0, 5.0, -21.0, -7.0, 110.0, 106.0, 97.0, -4.0, 121.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13915} -{name:"Corrupt statius's platelegs (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[3.0, 3.0, 5.0, -21.0, -7.0, 110.0, 106.0, 97.0, -4.0, 121.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13916} -{name:"Corrupt vesta's plateskirt", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 5.0, 5.0, -17.0, -4.0, 86.0, 100.0, 112.0, -2.0, 118.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13917} -{name:"Corrupt vesta's plateskirt", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[3.0, 5.0, 5.0, -17.0, -4.0, 86.0, 100.0, 112.0, -2.0, 118.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13918} -{name:"Corrupt vesta's plateskirt (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[3.0, 5.0, 5.0, -17.0, -4.0, 86.0, 100.0, 112.0, -2.0, 118.0, 30.0, 4.0, 0.0, 8.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13919} -{name:"Corrupt statius's full helm", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[3.0, 3.0, 4.0, -6.0, -2.0, 65.0, 70.0, 63.0, -1.0, 71.0, 15.0, 3.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13920} -{name:"Corrupt statius's full helm", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[3.0, 3.0, 4.0, -6.0, -2.0, 65.0, 70.0, 63.0, -1.0, 71.0, 15.0, 3.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13921} -{name:"Corrupt statius' full helm (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:30000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[3.0, 3.0, 4.0, -6.0, -2.0, 65.0, 70.0, 63.0, -1.0, 71.0, 15.0, 3.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13922} -{name:"Corrupt vesta's longsword", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[106.0, 121.0, -2.0, 0.0, 0.0, 1.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 118.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13923} -{name:"Corrupt vesta's longsword", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[106.0, 121.0, -2.0, 0.0, 0.0, 1.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 118.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13924} -{name:"C. vesta's longsword (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[106.0, 121.0, -2.0, 0.0, 0.0, 1.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 118.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13925} -{name:"Corrupt statius's warhammer", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:15.0, bonuses:[-4.0, -4.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13926} -{name:"Corrupt statius's warhammer", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:15.0, bonuses:[-4.0, -4.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13927} -{name:"C. statius's warhammer (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:15.0, bonuses:[-4.0, -4.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13928} -{name:"Corrupt vesta's spear", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[133.0, 113.0, 120.0, 0.0, 0.0, 18.0, 21.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 122.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13929} -{name:"Corrupt vesta's spear", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[133.0, 113.0, 120.0, 0.0, 0.0, 18.0, 21.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 122.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13930} -{name:"Corrupt vesta's spear (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[133.0, 113.0, 120.0, 0.0, 0.0, 18.0, 21.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 122.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13931} -{name:"Corrupt zuriel's robe top", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 35.0, -10.0, 63.0, 45.0, 74.0, 35.0, 0.0, 60.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13932} -{name:"Corrupt zuriel's robe top", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 35.0, -10.0, 63.0, 45.0, 74.0, 35.0, 0.0, 60.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13933} -{name:"Corrupt zuriel's robe top (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 35.0, -10.0, 63.0, 45.0, 74.0, 35.0, 0.0, 60.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13934} -{name:"Corrupt zuriel's robe bottom", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 25.0, -7.0, 38.0, 35.0, 44.0, 24.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13935} -{name:"Corrupt zuriel's robe bottom", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 25.0, -7.0, 38.0, 35.0, 44.0, 24.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13936} -{name:"Corrupt zuriel's robe bottom (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 25.0, -7.0, 38.0, 35.0, 44.0, 24.0, 0.0, 30.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13937} -{name:"Corrupt zuriel's hood", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, -2.0, 20.0, 16.0, 22.0, 8.0, 0.0, 15.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13938} -{name:"Corrupt zuriel's hood", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, -2.0, 20.0, 16.0, 22.0, 8.0, 0.0, 15.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13939} -{name:"Corrupt zuriel's hood (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:30000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, -2.0, 20.0, 16.0, 22.0, 8.0, 0.0, 15.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13940} -{name:"Corrupt zuriel's staff", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:28000, highAlch:42000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[13.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13941} -{name:"Corrupt zuriel's staff", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:28000, highAlch:42000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[13.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13942} -{name:"Corrupt zuriel's staff (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:70000, lowAlch:28000, highAlch:42000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[13.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13943} -{name:"Corrupt morrigan's leather body", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -15.0, 36.0, 61.0, 53.0, 66.0, 75.0, 62.0, 60.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13944} -{name:"Corrupt morrigan's leather body", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -15.0, 36.0, 61.0, 53.0, 66.0, 75.0, 62.0, 60.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13945} -{name:"Corrupt morrigan's leather body (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -15.0, 36.0, 61.0, 53.0, 66.0, 75.0, 62.0, 60.0, 0.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13946} -{name:"Corrupt morrigan's leather chaps", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 23.0, 35.0, 29.0, 37.0, 46.0, 35.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13947} -{name:"Corrupt morrigan's leather chaps", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 23.0, 35.0, 29.0, 37.0, 46.0, 35.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13948} -{name:"Corrupt morrigan's leather chaps (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:75000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 23.0, 35.0, 29.0, 37.0, 46.0, 35.0, 30.0, 0.0, 8.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13949} -{name:"Corrupt morrigan's coif", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -5.0, 13.0, 8.0, 11.0, 14.0, 8.0, 12.0, 15.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13950} -{name:"Corrupt morrigan's coif", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -5.0, 13.0, 8.0, 11.0, 14.0, 8.0, 12.0, 15.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13951} -{name:"Corrupt morrigan's coif (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:30000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -5.0, 13.0, 8.0, 11.0, 14.0, 8.0, 12.0, 15.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13952} -{name:"Corrupt morrigan's javelin", itemDescription:"A vicious javelin.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13953} -{name:"C. morrigan's javelin (p)", itemDescription:"A vicious javelin.", shopValue:10000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13954} -{name:"C. morrigan's javelin (p+)", itemDescription:"A vicious javelin.", shopValue:10000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13955} -{name:"C. morrigan's javelin (p++)", itemDescription:"A vicious javelin.", shopValue:10000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13956} -{name:"C. morrigan's throwing axe", itemDescription:"A vicious throwing axe.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 117.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13957} -{name:"Corrupt dragon chainbody", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:28800, highAlch:43200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13958} -{name:"Corrupt dragon chainbody", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:28800, highAlch:43200, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13959} -{name:"Corrupt dragon chainbody (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:72000, lowAlch:28800, highAlch:43200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 81.0, 93.0, 98.0, -3.0, 82.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13960} -{name:"Corrupt dragon med helm", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:60000, lowAlch:14400, highAlch:21600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13961} -{name:"Corrupt dragon med helm", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:60000, lowAlch:14400, highAlch:21600, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13962} -{name:"Corrupt dragon med helm (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:36000, lowAlch:14400, highAlch:21600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 33.0, 35.0, 32.0, -1.0, 34.0, 10.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13963} -{name:"Corrupt dragon sq shield", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13964} -{name:"Corrupt dragon sq shield", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13965} -{name:"Corrupt dragon sq shield (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:72000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13966} -{name:"Corrupt dragon plateskirt", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13967} -{name:"Corrupt dragon plateskirt", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13968} -{name:"Corrupt dragon plateskirt (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:72000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13969} -{name:"Corrupt dragon platelegs", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13970} -{name:"Corrupt dragon platelegs", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13971} -{name:"Corrupt dragon platelegs (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:72000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13972} -{name:"Corrupt dragon battleaxe", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:28800, highAlch:43200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-2.0, 70.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13973} -{name:"Corrupt dragon battleaxe", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:120000, lowAlch:28800, highAlch:43200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[-2.0, 70.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13974} -{name:"C. dragon battleaxe (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:72000, lowAlch:28800, highAlch:43200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-2.0, 70.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 85.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13975} -{name:"Corrupt dragon dagger", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13976} -{name:"Corrupt dragon dagger", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13977} -{name:"C. dragon dagger (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:18000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13978} -{name:"Corrupt dragon scimitar", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[8.0, 67.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13979} -{name:"Corrupt dragon scimitar", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[8.0, 67.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13980} -{name:"C. dragon scimitar (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:60000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[8.0, 67.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13981} -{name:"Corrupt dragon longsword", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[58.0, 69.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13982} -{name:"Corrupt dragon longsword", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[58.0, 69.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13983} -{name:"C. dragon longsword (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:60000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[58.0, 69.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 71.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13984} -{name:"Corrupt dragon mace", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[40.0, -2.0, 60.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13985} -{name:"Corrupt dragon mace", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:50000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[40.0, -2.0, 60.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13986} -{name:"Corrupt dragon mace (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[40.0, -2.0, 60.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13987} -{name:"Corrupt dragon spear", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:40000, lowAlch:8800, highAlch:13200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13988} -{name:"Corrupt dragon spear", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:40000, lowAlch:8800, highAlch:13200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13989} -{name:"Corrupt dragon spear (deg)", itemDescription:"This item degrades while worn, and will turn to dust.", shopValue:24000, lowAlch:8800, highAlch:13200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[55.0, 55.0, 55.0, 0.0, 0.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13990} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13991} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13992} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13993} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13994} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13995} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13996} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13997} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13998} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:13999} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14000} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14001} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14002} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14003} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14004} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14005} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14006} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14007} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14008} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14009} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14010} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14011} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14012} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14013} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14014} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14015} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14016} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14017} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14018} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14019} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14020} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14021} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14022} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14023} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14024} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14025} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14026} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14027} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14028} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14029} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14030} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14031} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14032} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14033} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14034} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14035} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14036} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14037} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14038} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14039} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14040} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14041} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14042} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14043} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14044} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14045} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14046} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14047} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14048} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14049} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14050} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14051} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14052} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14053} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14054} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14055} -{name:"Wilderness manual", itemDescription:"A book about the Wilderness.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14056} -{name:"Broomstick", itemDescription:"A threat to dusty corners everywhere.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14057} -{name:"Goulash", itemDescription:"What a curious and ghoulish smell!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14058} -{name:"null", itemDescription:"It's a null.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14059} -{name:"null", itemDescription:"It's a null.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14060} -{name:"Magic unguent", itemDescription:"Purple and pungent.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14061} -{name:"Broom ointment", itemDescription:"To be used on brooms.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14062} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14063} -{name:"Newt", itemDescription:"A newt from Hetty's basement.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14064} -{name:"Newt label", itemDescription:"A label for a shipping crate.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14065} -{name:"Toad label", itemDescription:"A label for a shipping crate.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14066} -{name:"Newts and toads label", itemDescription:"A label for a shipping crate.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14067} -{name:"Betty's wand", itemDescription:"Warm to the touch.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14068} -{name:"Magic slate", itemDescription:"What a view!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14069} -{name:"Reptile", itemDescription:"Desert dweller.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14070} -{name:"Blackbird", itemDescription:"Bleak and beaky.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14071} -{name:"Bat", itemDescription:"An annoying flappy thing.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14072} -{name:"Spider", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14073} -{name:"Rat", itemDescription:"A popular dwarven delicacy.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14074} -{name:"Snail", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14075} -{name:"Warlock top", itemDescription:"The height of warlock fashion.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14076} -{name:"Warlock legs", itemDescription:"Tattered but trendy.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14077} -{name:"Witch top", itemDescription:"The height of witchly fashion.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14078} -{name:"Witch skirt", itemDescription:"Tattered but trendy.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14079} -{name:"Witch cloak", itemDescription:"Ragged but rugged.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14080} -{name:"Warlock cloak", itemDescription:"Ragged but rugged.", shopValue:15, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14081} -{name:"Popcorn ball", itemDescription:"A sticky orb of popped corn.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14082} -{name:"Chocolate drop", itemDescription:"Chocolatey goodness.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14083} -{name:"Wrapped candy", itemDescription:"Sugary bliss.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14084} -{name:"Armadyl communiqu?", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14085} -{name:"Witch top", itemDescription:"The height of witchly fashion.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14086} -{name:"Witch skirt", itemDescription:"Tattered but trendy.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14087} -{name:"Witch cloak", itemDescription:"Ragged but rugged.", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14088} -{name:"Pet kitten", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14089} -{name:"Pet cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14090} -{name:"Lazy cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14091} -{name:"Overgrown cat", itemDescription:" This kitten seems to like you. (Kitten)This cat definitely likes you. (Cat)This cat is so well fed it can hardly move. (Overgrown)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14092} -{name:"Wily cat", itemDescription:" Wild. (wily)Lethargic. (lazy)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14093} -{name:"Sacred clay platebody", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:43333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14094} -{name:"Sacred clay platelegs", itemDescription:"The sacred clay bottom has transformed into spiked, platemail legs.", shopValue:42667, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14095} -{name:"Sacred clay helm", itemDescription:"The sacred clay hat has transformed into a spined helm.", shopValue:23467, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14096} -{name:"Sacred clay scimitar", itemDescription:"The sacred clay weapon has transformed into a sharp scimitar.", shopValue:17066, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14097} -{name:"Volatile clay tool", itemDescription:"This can turn into a variety of tools.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14098} -{name:"Volatile clay pickaxe", itemDescription:"Your volatile tool wants to mine some rocks.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[4.0, -2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14099} -{name:"Volatile clay hatchet", itemDescription:"Your volatile tool wants to cut some wood.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 26.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14100} -{name:"Volatile clay harpoon", itemDescription:"Your volatile tool wants to spear some big fish.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14101} -{name:"Volatile clay butterfly net", itemDescription:"Your volatile tool wants to catch some butterflies.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14102} -{name:"Volatile clay fletching knife", itemDescription:"Your volatile tool wants to make some bows or arrows.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14103} -{name:"Volatile clay hammer", itemDescription:"Your volatile tool wants to work metal or build furniture.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14104} -{name:"Volatile clay needle", itemDescription:"Your volatile tool wants to make some leather armour.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14105} -{name:"Proto-tool", itemDescription:"This can turn into a variety of tools.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14106} -{name:"Sacred clay pickaxe", itemDescription:"Your sacred clay tool has transformed into a pickaxe.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[4.0, -2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14107} -{name:"Sacred clay hatchet", itemDescription:"Your sacred clay tool has transformed into a hatchet.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 4.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14108} -{name:"Sacred clay harpoon", itemDescription:"Your sacred clay tool has transformed into a harpoon.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14109} -{name:"Sacred clay butterfly net", itemDescription:"Your sacred clay tool has transformed into a butterfly net.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[4.0, -2.0, 2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14110} -{name:"Sacred clay fletching knife", itemDescription:"The sacred clay has transformed into a knife.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14111} -{name:"Sacred clay hammer", itemDescription:"Your sacred clay tool has transformed into a hammer.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14112} -{name:"Sacred clay needle", itemDescription:"The sacred clay has transformed into a needle.", shopValue:21333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14113} -{name:"Sacred clay robe top", itemDescription:"The sacred clay top has transformed into a heavy, magical robe.", shopValue:43333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14114} -{name:"Sacred clay robe bottom", itemDescription:"The sacred clay bottom has transformed into a heavy, magical robe.", shopValue:42667, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14115} -{name:"Sacred clay hat", itemDescription:"The sacred clay hat has transformed into a wizard hat.", shopValue:23467, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14116} -{name:"Sacred clay staff", itemDescription:"The sacred clay weapon has transformed into a magical staff.", shopValue:17066, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14117} -{name:"Sacred clay body", itemDescription:"The sacred clay top has transformed into a leather body.", shopValue:43333, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -15.0, 15.0, 40.0, 32.0, 45.0, 20.0, 40.0, 40.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14118} -{name:"Sacred clay chaps", itemDescription:"The sacred clay bottom has been transformed into a set of chaps.", shopValue:42667, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -10.0, 8.0, 22.0, 16.0, 24.0, 8.0, 22.0, 15.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14119} -{name:"Sacred clay coif", itemDescription:"The sacred clay hat has transformed into a coif.", shopValue:23467, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -1.0, 2.0, 4.0, 6.0, 8.0, 4.0, 4.0, 5.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14120} -{name:"Sacred clay bow", itemDescription:"The sacred clay weapon has transformed into a bow.", shopValue:17066, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14121} -{name:"Pickaxe (class 1)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14122} -{name:"Pickaxe (class 1)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14123} -{name:"Pickaxe (class 2)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14124} -{name:"Pickaxe (class 2)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14125} -{name:"Pickaxe (class 3)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14126} -{name:"Pickaxe (class 3)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14127} -{name:"Pickaxe (class 4)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14128} -{name:"Pickaxe (class 4)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14129} -{name:"Pickaxe (class 5)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14130} -{name:"Pickaxe (class 5)", itemDescription:"The sacred clay has become hard enough to chip stone.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14131} -{name:"Hatchet (class 1)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14132} -{name:"Hatchet (class 1)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14133} -{name:"Hatchet (class 2)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14134} -{name:"Hatchet (class 2)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14135} -{name:"Hatchet (class 3)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14136} -{name:"Hatchet (class 3)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14137} -{name:"Hatchet (class 4)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14138} -{name:"Hatchet (class 4)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14139} -{name:"Hatchet (class 5)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14140} -{name:"Hatchet (class 5)", itemDescription:"The sacred clay has become sharp enough to cut wood.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14141} -{name:"Harpoon (class 1)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14142} -{name:"Harpoon (class 1)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14143} -{name:"Harpoon (class 2)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14144} -{name:"Harpoon (class 2)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14145} -{name:"Harpoon (class 3)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14146} -{name:"Harpoon (class 3)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14147} -{name:"Harpoon (class 4)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14148} -{name:"Harpoon (class 4)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14149} -{name:"Harpoon (class 5)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14150} -{name:"Harpoon (class 5)", itemDescription:"The sacred clay has become long enough to reach the depths of pools.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14151} -{name:"Butterfly net (class 1)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14152} -{name:"Butterfly net (class 1)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14153} -{name:"Butterfly net (class 2)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14154} -{name:"Butterfly net (class 2)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14155} -{name:"Butterfly net (class 3)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14156} -{name:"Butterfly net (class 3)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14157} -{name:"Butterfly net (class 4)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14158} -{name:"Butterfly net (class 4)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14159} -{name:"Butterfly net (class 5)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14160} -{name:"Butterfly net (class 5)", itemDescription:"The sacred clay has become light enough to swing at floating shards.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14161} -{name:"Food (class 1)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14162} -{name:"Food (class 1)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14163} -{name:"Food (class 2)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14164} -{name:"Food (class 2)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14165} -{name:"Food (class 3)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14166} -{name:"Food (class 3)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14167} -{name:"Food (class 4)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14168} -{name:"Food (class 4)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14169} -{name:"Food (class 5)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14170} -{name:"Food (class 5)", itemDescription:"The sacred clay has transformed into something bland, but edible.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14171} -{name:"Barrier (class 1)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14172} -{name:"Barrier (class 1)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14173} -{name:"Barrier (class 2)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14174} -{name:"Barrier (class 2)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14175} -{name:"Barrier (class 3)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14176} -{name:"Barrier (class 3)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14177} -{name:"Barrier (class 4)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14178} -{name:"Barrier (class 4)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14179} -{name:"Barrier (class 5)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14180} -{name:"Barrier (class 5)", itemDescription:"The clay has transformed into an expandable wall.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14181} -{name:"Sacred clay (class 1)", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14182} -{name:"Sacred clay (class 1)", itemDescription:"See article", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14183} -{name:"Sacred clay (class 2)", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14184} -{name:"Sacred clay (class 2)", itemDescription:"See article", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14185} -{name:"Sacred clay (class 3)", itemDescription:"See article", shopValue:45, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14186} -{name:"Sacred clay (class 3)", itemDescription:"See article", shopValue:45, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14187} -{name:"Sacred clay (class 4)", itemDescription:"See article", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14188} -{name:"Sacred clay (class 4)", itemDescription:"See article", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14189} -{name:"Sacred clay (class 5)", itemDescription:"See article", shopValue:75, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14190} -{name:"Sacred clay (class 5)", itemDescription:"See article", shopValue:75, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14191} -{name:"Bow (class 1)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14192} -{name:"Bow (class 1)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14193} -{name:"Bow (class 2)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14194} -{name:"Bow (class 2)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14195} -{name:"Bow (class 3)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14196} -{name:"Bow (class 3)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14197} -{name:"Bow (class 4)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 180.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14198} -{name:"Bow (class 4)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 180.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14199} -{name:"Bow (class 5)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 225.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14200} -{name:"Bow (class 5)", itemDescription:"The sacred clay has transformed into a wood-like substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 225.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14201} -{name:"Arrows (class 1)", itemDescription:"The Sacred Clay has transformed into a wood-like substance.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14202} -{name:"Arrows (class 2)", itemDescription:"The Sacred Clay has transformed into a wood-like substance.", shopValue:4, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14203} -{name:"Arrows (class 3)", itemDescription:"The Sacred Clay has transformed into a wood-like substance.", shopValue:6, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14204} -{name:"Arrows (class 4)", itemDescription:"The Sacred Clay has transformed into a wood-like substance.", shopValue:8, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14205} -{name:"Arrows (class 5)", itemDescription:"The Sacred Clay has transformed into a wood-like substance.", shopValue:10, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14206} -{name:"Prayer potion (5)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:150, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14207} -{name:"Prayer potion (5)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:150, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14208} -{name:"Prayer potion (4)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:120, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14209} -{name:"Prayer potion (4)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:120, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14210} -{name:"Prayer potion (3)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:90, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14211} -{name:"Prayer potion (3)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:90, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14212} -{name:"Prayer potion (2)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:60, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14213} -{name:"Prayer potion (2)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:60, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14214} -{name:"Prayer potion (1)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:30, lowAlch:61, highAlch:91, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14215} -{name:"Prayer potion (1)", itemDescription:"(X) doses of Prayer restore potion.", shopValue:30, lowAlch:61, highAlch:91, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14216} -{name:"Energy potion (5)", itemDescription:"X doses of energy potion.", shopValue:150, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14217} -{name:"Energy potion (5)", itemDescription:"X doses of energy potion.", shopValue:150, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14218} -{name:"Energy potion (4)", itemDescription:"X doses of energy potion.", shopValue:120, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14219} -{name:"Energy potion (4)", itemDescription:"X doses of energy potion.", shopValue:120, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14220} -{name:"Energy potion (3)", itemDescription:"X doses of energy potion.", shopValue:90, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14221} -{name:"Energy potion (3)", itemDescription:"X doses of energy potion.", shopValue:90, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14222} -{name:"Energy potion (2)", itemDescription:"X doses of energy potion.", shopValue:60, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14223} -{name:"Energy potion (2)", itemDescription:"X doses of energy potion.", shopValue:60, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14224} -{name:"Energy potion (1)", itemDescription:"X doses of energy potion.", shopValue:30, lowAlch:44, highAlch:66, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14225} -{name:"Energy potion (1)", itemDescription:"X doses of energy potion.", shopValue:30, lowAlch:44, highAlch:66, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14226} -{name:"Super attack (5)", itemDescription:"X dose(s) of super Attack potion.", shopValue:150, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14227} -{name:"Super attack (5)", itemDescription:"X dose(s) of super Attack potion.", shopValue:150, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14228} -{name:"Super attack (4)", itemDescription:"X dose(s) of super Attack potion.", shopValue:120, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14229} -{name:"Super attack (4)", itemDescription:"X dose(s) of super Attack potion.", shopValue:120, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14230} -{name:"Super attack (3)", itemDescription:"X dose(s) of super Attack potion.", shopValue:90, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14231} -{name:"Super attack (3)", itemDescription:"X dose(s) of super Attack potion.", shopValue:90, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14232} -{name:"Super attack (2)", itemDescription:"X dose(s) of super Attack potion.", shopValue:60, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14233} -{name:"Super attack (2)", itemDescription:"X dose(s) of super Attack potion.", shopValue:60, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14234} -{name:"Super attack (1)", itemDescription:"X dose(s) of super Attack potion.", shopValue:30, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14235} -{name:"Super attack (1)", itemDescription:"X dose(s) of super Attack potion.", shopValue:30, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14236} -{name:"Super strength (5)", itemDescription:"X dose(s) of super Strength potion.", shopValue:150, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14237} -{name:"Super strength (5)", itemDescription:"X dose(s) of super Strength potion.", shopValue:150, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14238} -{name:"Super strength (4)", itemDescription:"X dose(s) of super Strength potion.", shopValue:120, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14239} -{name:"Super strength (4)", itemDescription:"X dose(s) of super Strength potion.", shopValue:120, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14240} -{name:"Super strength (3)", itemDescription:"X dose(s) of super Strength potion.", shopValue:90, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14241} -{name:"Super strength (3)", itemDescription:"X dose(s) of super Strength potion.", shopValue:90, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14242} -{name:"Super strength (2)", itemDescription:"X dose(s) of super Strength potion.", shopValue:60, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14243} -{name:"Super strength (2)", itemDescription:"X dose(s) of super Strength potion.", shopValue:60, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14244} -{name:"Super strength (1)", itemDescription:"X dose(s) of super Strength potion.", shopValue:30, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14245} -{name:"Super strength (1)", itemDescription:"X dose(s) of super Strength potion.", shopValue:30, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14246} -{name:"Ranging potion (5)", itemDescription:"X doses of ranging potion.", shopValue:150, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14247} -{name:"Ranging potion (5)", itemDescription:"X doses of ranging potion.", shopValue:150, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14248} -{name:"Ranging potion (4)", itemDescription:"X doses of ranging potion.", shopValue:120, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14249} -{name:"Ranging potion (4)", itemDescription:"X doses of ranging potion.", shopValue:120, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14250} -{name:"Ranging potion (3)", itemDescription:"X doses of ranging potion.", shopValue:90, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14251} -{name:"Ranging potion (3)", itemDescription:"X doses of ranging potion.", shopValue:90, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14252} -{name:"Ranging potion (2)", itemDescription:"X doses of ranging potion.", shopValue:60, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14253} -{name:"Ranging potion (2)", itemDescription:"X doses of ranging potion.", shopValue:60, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14254} -{name:"Ranging potion (1)", itemDescription:"X doses of ranging potion.", shopValue:30, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14255} -{name:"Ranging potion (1)", itemDescription:"X doses of ranging potion.", shopValue:30, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14256} -{name:"Defence potion (5)", itemDescription:"(x) doses of Defence Potion.", shopValue:150, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14257} -{name:"Defence potion (5)", itemDescription:"(x) doses of Defence Potion.", shopValue:150, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14258} -{name:"Defence potion (4)", itemDescription:"(x) doses of Defence Potion.", shopValue:120, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14259} -{name:"Defence potion (4)", itemDescription:"(x) doses of Defence Potion.", shopValue:120, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14260} -{name:"Defence potion (3)", itemDescription:"(x) doses of Defence Potion.", shopValue:90, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14261} -{name:"Defence potion (3)", itemDescription:"(x) doses of Defence Potion.", shopValue:90, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14262} -{name:"Defence potion (2)", itemDescription:"(x) doses of Defence Potion.", shopValue:60, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14263} -{name:"Defence potion (2)", itemDescription:"(x) doses of Defence Potion.", shopValue:60, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14264} -{name:"Defence potion (1)", itemDescription:"(x) doses of Defence Potion.", shopValue:30, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14265} -{name:"Defence potion (1)", itemDescription:"(x) doses of Defence Potion.", shopValue:30, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14266} -{name:"Magic potion (5)", itemDescription:"X dose(s) of Magic potion.", shopValue:150, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14267} -{name:"Magic potion (5)", itemDescription:"X dose(s) of Magic potion.", shopValue:150, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14268} -{name:"Magic potion (4)", itemDescription:"X dose(s) of Magic potion.", shopValue:120, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14269} -{name:"Magic potion (4)", itemDescription:"X dose(s) of Magic potion.", shopValue:120, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14270} -{name:"Magic potion (3)", itemDescription:"X dose(s) of Magic potion.", shopValue:90, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14271} -{name:"Magic potion (3)", itemDescription:"X dose(s) of Magic potion.", shopValue:90, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14272} -{name:"Magic potion (2)", itemDescription:"X dose(s) of Magic potion.", shopValue:60, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14273} -{name:"Magic potion (2)", itemDescription:"X dose(s) of Magic potion.", shopValue:60, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14274} -{name:"Magic potion (1)", itemDescription:"X dose(s) of Magic potion.", shopValue:30, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14275} -{name:"Magic potion (1)", itemDescription:"X dose(s) of Magic potion.", shopValue:30, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14276} -{name:"Summoning potion (5)", itemDescription:"(X) doses of Summoning potion.", shopValue:150, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14277} -{name:"Summoning potion (5)", itemDescription:"(X) doses of Summoning potion.", shopValue:150, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14278} -{name:"Summoning potion (4)", itemDescription:"(X) doses of Summoning potion.", shopValue:120, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14279} -{name:"Summoning potion (4)", itemDescription:"(X) doses of Summoning potion.", shopValue:120, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14280} -{name:"Summoning potion (3)", itemDescription:"(X) doses of Summoning potion.", shopValue:90, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14281} -{name:"Summoning potion (3)", itemDescription:"(X) doses of Summoning potion.", shopValue:90, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14282} -{name:"Summoning potion (2)", itemDescription:"(X) doses of Summoning potion.", shopValue:60, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14283} -{name:"Summoning potion (2)", itemDescription:"(X) doses of Summoning potion.", shopValue:60, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14284} -{name:"Summoning potion (1)", itemDescription:"(X) doses of Summoning potion.", shopValue:30, lowAlch:76, highAlch:114, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14285} -{name:"Summoning potion (1)", itemDescription:"(X) doses of Summoning potion.", shopValue:30, lowAlch:76, highAlch:114, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14286} -{name:"Scimitar (class 1)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14287} -{name:"Scimitar (class 1)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14288} -{name:"Scimitar (class 2)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14289} -{name:"Scimitar (class 2)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14290} -{name:"Scimitar (class 3)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 145.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14291} -{name:"Scimitar (class 3)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 145.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14292} -{name:"Scimitar (class 4)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 180.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14293} -{name:"Scimitar (class 4)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 180.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14294} -{name:"Scimitar (class 5)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 225.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14295} -{name:"Scimitar (class 5)", itemDescription:"The sacred clay has transformed into a vicious, curved sword.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 225.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14296} -{name:"Dagger (class 1)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[41.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14297} -{name:"Dagger (class 1)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[41.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14298} -{name:"Dagger (class 2)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[68.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14299} -{name:"Dagger (class 2)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[68.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14300} -{name:"Dagger (class 3)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[101.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14301} -{name:"Dagger (class 3)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[101.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14302} -{name:"Dagger (class 4)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14303} -{name:"Dagger (class 4)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14304} -{name:"Dagger (class 5)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[168.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14305} -{name:"Dagger (class 5)", itemDescription:"The sacred clay transformed into a sharp dagger.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[168.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14306} -{name:"Warhammer (class 1)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 83.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14307} -{name:"Warhammer (class 1)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 83.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14308} -{name:"Warhammer (class 2)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14309} -{name:"Warhammer (class 2)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14310} -{name:"Warhammer (class 3)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 202.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14311} -{name:"Warhammer (class 3)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 202.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14312} -{name:"Warhammer (class 4)", itemDescription:"The Sacred Clay has transformed into a heavy warhammer.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 270.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14313} -{name:"Warhammer (class 4)", itemDescription:"The Sacred Clay has transformed into a heavy warhammer.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 270.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14314} -{name:"Warhammer (class 5)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 338.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14315} -{name:"Warhammer (class 5)", itemDescription:"The sacred clay has transformed into a heavy warhammer.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 338.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14316} -{name:"Robe top (class 1)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14317} -{name:"Robe top (class 1)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14318} -{name:"Robe top (class 2)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14319} -{name:"Robe top (class 2)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14320} -{name:"Robe top (class 3)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14321} -{name:"Robe top (class 3)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14322} -{name:"Robe top (class 4)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14323} -{name:"Robe top (class 4)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14324} -{name:"Robe top (class 5)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14325} -{name:"Robe top (class 5)", itemDescription:"The sacred clay has transformed into a light, cloth-like substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 100.0, 0.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14326} -{name:"Robe bottom (class 1)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14327} -{name:"Robe bottom (class 1)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14328} -{name:"Robe bottom (class 2)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14329} -{name:"Robe bottom (class 2)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14330} -{name:"Robe bottom (class 3)", itemDescription:"The sacred clay transformed into a light, cloth-like material.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14331} -{name:"Robe bottom (class 3)", itemDescription:"The sacred clay transformed into a light, cloth-like material.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14332} -{name:"Robe bottom (class 4)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14333} -{name:"Robe bottom (class 4)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 60.0, 0.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14334} -{name:"Robe bottom (class 5)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14335} -{name:"Robe bottom (class 5)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 75.0, 0.0, 75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14336} -{name:"Hat (class 1)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14337} -{name:"Hat (class 1)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14338} -{name:"Hat (class 2)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14339} -{name:"Hat (class 2)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14340} -{name:"Hat (class 3)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14341} -{name:"Hat (class 3)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14342} -{name:"Hat (class 4)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14343} -{name:"Hat (class 4)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14344} -{name:"Hat (class 5)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14345} -{name:"Hat (class 5)", itemDescription:"The sacred clay has transformed into a light, cloth-like material.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14346} -{name:"Platebody (class 1)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 20.0, 20.0, -10.0, 10.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14347} -{name:"Platebody (class 1)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 20.0, 20.0, -10.0, 10.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14348} -{name:"Platebody (class 2)", itemDescription:"The sacred clay transformed into a hard, metallic substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 40.0, 40.0, 40.0, -10.0, 20.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14349} -{name:"Platebody (class 2)", itemDescription:"The sacred clay transformed into a hard, metallic substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 40.0, 40.0, 40.0, -10.0, 20.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14350} -{name:"Platebody (class 3)", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 60.0, 60.0, 60.0, -10.0, 30.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14351} -{name:"Platebody (class 3)", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 60.0, 60.0, 60.0, -10.0, 30.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14352} -{name:"Platebody (class 4)", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 80.0, 80.0, 80.0, -10.0, 40.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14353} -{name:"Platebody (class 4)", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 80.0, 80.0, 80.0, -10.0, 40.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14354} -{name:"Platebody (class 5)", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 100.0, 100.0, 100.0, -10.0, 50.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14355} -{name:"Platebody (class 5)", itemDescription:"The sacred clay top has transformed into a spiked, platemail body.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 100.0, 100.0, 100.0, -10.0, 50.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14356} -{name:"Platelegs (class 1)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 15.0, 15.0, 15.0, -10.0, 7.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14357} -{name:"Platelegs (class 1)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 15.0, 15.0, 15.0, -10.0, 7.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14358} -{name:"Platelegs (class 2)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 30.0, 30.0, 30.0, -10.0, 15.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14359} -{name:"Platelegs (class 2)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 30.0, 30.0, 30.0, -10.0, 15.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14360} -{name:"Platelegs (class 3)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 45.0, 45.0, 45.0, -10.0, 23.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14361} -{name:"Platelegs (class 3)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 45.0, 45.0, 45.0, -10.0, 23.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14362} -{name:"Platelegs (class 4)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 60.0, 60.0, 60.0, -10.0, 30.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14363} -{name:"Platelegs (class 4)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 60.0, 60.0, 60.0, -10.0, 30.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14364} -{name:"Platelegs (class 5)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 75.0, 75.0, 75.0, -10.0, 37.0, 75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14365} -{name:"Platelegs (class 5)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 75.0, 75.0, 75.0, -10.0, 37.0, 75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14366} -{name:"Helm (class 1)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 10.0, 10.0, 10.0, -10.0, 5.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14367} -{name:"Helm (class 1)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 10.0, 10.0, 10.0, -10.0, 5.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14368} -{name:"Helm (class 2)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 20.0, 20.0, -10.0, 10.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14369} -{name:"Helm (class 2)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 20.0, 20.0, -10.0, 10.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14370} -{name:"Helm (class 3)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 30.0, 30.0, 30.0, -10.0, 15.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14371} -{name:"Helm (class 3)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 30.0, 30.0, 30.0, -10.0, 15.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14372} -{name:"Helm (class 4)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 40.0, 40.0, 40.0, -10.0, 20.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14373} -{name:"Helm (class 4)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 40.0, 40.0, 40.0, -10.0, 20.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14374} -{name:"Helm (class 5)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 50.0, 50.0, 50.0, -10.0, 25.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14375} -{name:"Helm (class 5)", itemDescription:"The sacred clay has transformed into a hard, metallic substance.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 50.0, 50.0, 50.0, -10.0, 25.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14376} -{name:"Staff (class 1)", itemDescription:"The sacred clay has transformed into a light weight, magical stick.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14377} -{name:"Staff (class 1)", itemDescription:"The sacred clay has transformed into a light weight, magical stick.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14378} -{name:"Staff (class 2)", itemDescription:"The sacred clay has transformed into a light weight, magical stick.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14379} -{name:"Staff (class 2)", itemDescription:"The sacred clay has transformed into a light weight, magical stick.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14380} -{name:"Staff (class 3)", itemDescription:"The sacred clay has transformed into a lightweight, magical stick.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14381} -{name:"Staff (class 3)", itemDescription:"The sacred clay has transformed into a lightweight, magical stick.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 135.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14382} -{name:"Staff (class 4)", itemDescription:"The sacred clay has transformed into a lightweight, magical stick.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 180.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14383} -{name:"Staff (class 4)", itemDescription:"The sacred clay has transformed into a lightweight, magical stick.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 180.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14384} -{name:"Staff (class 5)", itemDescription:"The sacred clay has transformed into a lightweight, magical stick.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 225.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14385} -{name:"Staff (class 5)", itemDescription:"The sacred clay has transformed into a lightweight, magical stick.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 225.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14386} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14387} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14388} -{name:"Cape", itemDescription:"A (bright/thick/warm) <colour> cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14389} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14390} -{name:"Leather body (class 1)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14391} -{name:"Leather body (class 1)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 10.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14392} -{name:"Leather body (class 2)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14393} -{name:"Leather body (class 2)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 20.0, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14394} -{name:"Leather body (class 3)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 60.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14395} -{name:"Leather body (class 3)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 60.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14396} -{name:"Leather body (class 4)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14397} -{name:"Leather body (class 4)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 80.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14398} -{name:"Leather body (class 5)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14399} -{name:"Leather body (class 5)", itemDescription:"The sacred clay has transformed into a flexible mesh.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 50.0, 50.0, 50.0, 50.0, 100.0, 100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14400} -{name:"Chaps (class 1)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 15.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14401} -{name:"Chaps (class 1)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 7.0, 7.0, 0.0, 15.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14402} -{name:"Chaps (class 2)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 0.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14403} -{name:"Chaps (class 2)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 0.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14404} -{name:"Chaps (class 3)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 23.0, 0.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14405} -{name:"Chaps (class 3)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 23.0, 23.0, 0.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14406} -{name:"Chaps (class 4)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 0.0, 60.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14407} -{name:"Chaps (class 4)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 0.0, 60.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14408} -{name:"Chaps (class 5)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 37.0, 37.0, 0.0, 75.0, 75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14409} -{name:"Chaps (class 5)", itemDescription:"The sacred clay transformed into a flexible mesh.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 37.0, 37.0, 0.0, 75.0, 75.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14410} -{name:"Coif (class 1)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14411} -{name:"Coif (class 1)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 5.0, 5.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14412} -{name:"Coif (class 2)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 0.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14413} -{name:"Coif (class 2)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 10.0, 10.0, 0.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14414} -{name:"Coif (class 3)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 0.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14415} -{name:"Coif (class 3)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 15.0, 15.0, 0.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14416} -{name:"Coif (class 4)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 0.0, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14417} -{name:"Coif (class 4)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 20.0, 20.0, 0.0, 40.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14418} -{name:"Coif (class 5)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 25.0, 0.0, 50.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14419} -{name:"Coif (class 5)", itemDescription:"The sacred clay has transformed into a flexible, protective mesh.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 25.0, 0.0, 50.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14420} -{name:"Clay deposit scroll", itemDescription:"This scroll will make your familiar deposit its items at your base.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14421} -{name:"Sacred clay pouch (class 1)", itemDescription:"I can summon a very low quality clay familiar with this.", shopValue:30, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14422} -{name:"Sacred clay pouch (class 1)", itemDescription:"I can summon a very low quality clay familiar with this.", shopValue:30, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14423} -{name:"Sacred clay pouch (class 2)", itemDescription:"I can summon a low quality clay familiar with this.", shopValue:60, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14424} -{name:"Sacred clay pouch (class 2)", itemDescription:"I can summon a low quality clay familiar with this.", shopValue:60, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14425} -{name:"Sacred clay pouch (class 3)", itemDescription:"I can summon a medium quality clay familiar with this.", shopValue:90, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14426} -{name:"Sacred clay pouch (class 3)", itemDescription:"I can summon a medium quality clay familiar with this.", shopValue:90, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14427} -{name:"Sacred clay pouch (class 4)", itemDescription:"I can summon a high quality clay familiar with this.", shopValue:120, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14428} -{name:"Sacred clay pouch (class 4)", itemDescription:"I can summon a high quality clay familiar with this.", shopValue:120, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14429} -{name:"Sacred clay pouch (class 5)", itemDescription:"I can summon a very high quality clay familiar with this.", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14430} -{name:"Sacred clay pouch (class 5)", itemDescription:"I can summon a very high quality clay familiar with this.", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14431} -{name:"Null sacred clay", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14432} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14433} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14434} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14435} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14436} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14437} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14438} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14439} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14440} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14441} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14442} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14443} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14444} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14445} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14446} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14447} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14448} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14449} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14450} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14451} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14452} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14453} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14454} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14455} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14456} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14457} -{name:"Vine flower", itemDescription:"A vine flower grown through magical means.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14458} -{name:"Unconscious broav", itemDescription:"Its unconscious, poor thing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14459} -{name:"Dirty laundry", itemDescription:"Some dirty clothes that apparently belong to Movario.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14460} -{name:"Waste-paper basket", itemDescription:"A receptacle for rubbish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14461} -{name:"Ruby key", itemDescription:"A superbly made key with a fine ruby inserted into it. (While Guthix Sleeps)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14462} -{name:"Notes on pressure", itemDescription:"A collection of notes made by an absent-minded fellow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14463} -{name:"Movario's notes (volume 1)", itemDescription:"A loose-leaf collection of research notes, found on Movario's study desk.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14464} -{name:"Movario's notes (volume 2)", itemDescription:"A loose-leaf collection of research notes, found in Movario's bed chest.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14465} -{name:"Weight (1kg)", itemDescription:"A 1kg weight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14466} -{name:"Weight (2kg)", itemDescription:"A 2kg weight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14467} -{name:"Weight (5kg)", itemDescription:"A 5kg weight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14468} -{name:"Strange key loop", itemDescription:"The loop half of a strange key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14469} -{name:"Strange key teeth", itemDescription:"The teeth half of a strange key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14470} -{name:"Dragonkin key", itemDescription:"The completed dragonkin key.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14471} -{name:"Ruined dragon armour lump", itemDescription:"A badly damaged lump of dragon metal.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14472} -{name:"Ruined dragon armour lump", itemDescription:"A badly damaged lump of dragon metal.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14473} -{name:"Ruined dragon armour slice", itemDescription:"A badly damaged slice of dragon metal.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14474} -{name:"Ruined dragon armour slice", itemDescription:"A badly damaged slice of dragon metal.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14475} -{name:"Ruined dragon armour shard", itemDescription:"A badly damaged shard of dragon metal.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14476} -{name:"Ruined dragon armour shard", itemDescription:"A badly damaged shard of dragon metal.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14477} -{name:"Blast fusion hammer", itemDescription:"A very powerful Smithing hammer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14478} -{name:"Dragon platebody", itemDescription:"Provides excellent protection.", shopValue:1760000, lowAlch:704000, highAlch:1056000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14479} -{name:"Dragon platebody", itemDescription:"Provides excellent protection.", shopValue:1760000, lowAlch:704000, highAlch:1056000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14480} -{name:"Dragon platebody", itemDescription:"Provides excellent protection.", shopValue:0, lowAlch:704000, highAlch:1056000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14481} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14482} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14483} -{name:"Dragon claws", itemDescription:"A set of fighting claws.", shopValue:67500, lowAlch:54000, highAlch:81000, isStackable:false, isNoteable:false, weight:50.0, bonuses:[41.0, 57.0, -4.0, 0.0, 0.0, 13.0, 26.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14484} -{name:"Dragon claws", itemDescription:"A set of fighting claws.", shopValue:67500, lowAlch:54000, highAlch:81000, isStackable:true, isNoteable:true, weight:50.0, bonuses:[41.0, 57.0, -4.0, 0.0, 0.0, 13.0, 26.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14485} -{name:"Dragon claws", itemDescription:"A set of fighting claws.", shopValue:0, lowAlch:54000, highAlch:81000, isStackable:false, isNoteable:false, weight:50.0, bonuses:[41.0, 57.0, -4.0, 0.0, 0.0, 13.0, 26.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 56.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14486} -{name:"Enriched snapdragon", itemDescription:"An enriched snapdragon herb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14487} -{name:"Super truth serum", itemDescription:"Fluid sloshes innocently in this vial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14488} -{name:"Suspect sketch", itemDescription:"A sketch of the suspect known as Dark Squall.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14489} -{name:"Elite black platelegs", itemDescription:"These look pretty heavy, but very elite.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -14.0, -6.0, 52.0, 50.0, 25.0, -1.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14490} -{name:"Elite black platelegs", itemDescription:"These look pretty heavy, but very elite.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -14.0, -6.0, 52.0, 50.0, 25.0, -1.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14491} -{name:"Elite black platebody", itemDescription:"Provides excellent protection, and is elite.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -20.0, -8.0, 80.0, 85.0, 40.0, -2.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14492} -{name:"Elite black platebody", itemDescription:"Provides excellent protection, and is elite.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -20.0, -8.0, 80.0, 85.0, 40.0, -2.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14493} -{name:"Elite black full helm", itemDescription:"A full face helmet, and elite.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -4.0, -2.0, 31.0, 33.0, 15.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14494} -{name:"Elite black full helm", itemDescription:"A full face helmet, and elite.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -4.0, -2.0, 31.0, 33.0, 15.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14495} -{name:"Cell key", itemDescription:"Opens the cells beneath the Black Knights' Fortress. (While Guthix Sleeps)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14496} -{name:"Dagon'hai robe top", itemDescription:"A robe worn by members of the Dagon'hai.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14497} -{name:"Dagon'hai robe top", itemDescription:"A robe worn by members of the Dagon'hai.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14498} -{name:"Dagon'hai hat", itemDescription:"A hat worn by members of the Dagon'hai.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14499} -{name:"Dagon'hai hat", itemDescription:"A hat worn by members of the Dagon'hai.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14500} -{name:"Dagon'hai robe bottom", itemDescription:"A robe worn by members of the Dagon'hai.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 2.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14501} -{name:"Dagon'hai robe bottom", itemDescription:"A robe worn by members of the Dagon'hai.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 2.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14502} -{name:"Silif", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14503} -{name:"Silif", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14504} -{name:"Teleorb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14505} -{name:"Enriched snapdragon seed", itemDescription:"An enriched snapdragon seed. The herb that grows from this seed will be extra potent!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14506} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14507} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14508} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14509} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14510} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14511} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14512} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14513} -{name:"Dolmen", itemDescription:"Part of a stone circle.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14514} -{name:"Air key", itemDescription:"An elemental key of air.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14515} -{name:"Earth key", itemDescription:"An elemental key of earth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14516} -{name:"Fire key", itemDescription:"An elemental key of fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14517} -{name:"Water key", itemDescription:"An elemental key of water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14518} -{name:"Air key", itemDescription:"An elemental key of air.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14519} -{name:"Earth key", itemDescription:"An elemental key of earth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14520} -{name:"Fire key", itemDescription:"An elemental key of fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14521} -{name:"Water key", itemDescription:"An elemental key of water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14522} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14523} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14524} -{name:"Dagon'hai robes set", itemDescription:"Grand Exchange set containing hat, top and bottoms.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14525} -{name:"Dagon'hai robes set", itemDescription:"Grand Exchange set containing hat, top and bottoms.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:16.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14526} -{name:"Elite black armour set", itemDescription:"Grand Exchange set containing Elite black full helm, platebody and legs.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -38.0, -16.0, 163.0, 168.0, 80.0, -3.0, 159.0, 62.0, 6.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14527} -{name:"Elite black armour set", itemDescription:"Grand Exchange set containing Elite black full helm, platebody and legs.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -38.0, -16.0, 163.0, 168.0, 80.0, -3.0, 159.0, 62.0, 6.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14528} -{name:"Dragon plate armour set (lg)", itemDescription:"Grand Exchange set containing Dragon full helm, platebody, legs.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:20.0, bonuses:[0.0, 0.0, 0.0, -57.0, -9.0, 222.0, 221.0, 201.0, -11.0, 217.0, 82.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14529} -{name:"Dragon plate armour set (lg)", itemDescription:"Grand Exchange set containing Dragon full helm, platebody, legs.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:20.0, bonuses:[0.0, 0.0, 0.0, -57.0, -9.0, 222.0, 221.0, 201.0, -11.0, 217.0, 82.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14530} -{name:"Dragon plate armour set (sk)", itemDescription:"Grand Exchange set containing Dragon full helm, platebody, skirt.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -57.0, -9.0, 222.0, 221.0, 201.0, -11.0, 217.0, 82.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14531} -{name:"Dragon plate armour set (sk)", itemDescription:"Grand Exchange set containing Dragon full helm, platebody, skirt.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -57.0, -9.0, 222.0, 221.0, 201.0, -11.0, 217.0, 82.0, 9.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14532} -{name:"Broav", itemDescription:" A Mort Myre mushroom-muncher.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14533} -{name:"Strange teleorb", itemDescription:"This orb can used to teleport people...somehow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14534} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14535} -{name:"Turkey book", itemDescription:"Notes on the locations of turkeys.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14536} -{name:"Cornucopia", itemDescription:" A Horn of plenty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14537} -{name:"Cornucopia", itemDescription:" A Horn of plenty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14538} -{name:"Raw turkey", itemDescription:"A raw turkey. (2008) A rather large raw turkey. (2009) A raw turkey. (2011)", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14539} -{name:"Cooked turkey", itemDescription:"Mmm, this looks tasty.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14540} -{name:"Burnt turkey", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14541} -{name:"Raw turkey drumstick", itemDescription:"I need to cook this first.", shopValue:9, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14542} -{name:"Cooked turkey drumstick", itemDescription:"Mmm, this looks tasty.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14543} -{name:"Burnt turkey drumstick", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14544} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14545} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14546} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14547} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14548} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14549} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14550} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14551} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14552} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14553} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14554} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14555} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14556} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14557} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14558} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14559} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14560} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14561} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14562} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14563} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14564} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14565} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14566} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14567} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14568} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14569} -{name:"Cornucopia", itemDescription:" A Horn of plenty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14570} -{name:"Fremennik sea boots 1", itemDescription:"Not-so-sturdy boots for northern winters.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 2.0, 3.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14571} -{name:"Fremennik sea boots 2", itemDescription:"Sturdy boots for northern winters.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 8.0, 9.0, 10.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14572} -{name:"Fremennik sea boots 3", itemDescription:"Very sturdy boots for northern winters.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 12.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14573} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14574} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14575} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14576} -{name:"Falador shield 1", itemDescription:"A buckler shield from Falador.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 17.0, 19.0, 18.0, -1.0, 18.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14577} -{name:"Falador shield 2", itemDescription:"A kiteshield from Falador.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 18.0, 22.0, 20.0, -1.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14578} -{name:"Falador shield 3", itemDescription:"A tower shield from Falador.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:72.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14579} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:1000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14580} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:5000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14581} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14582} -{name:"White lily", itemDescription:"A white lily seed - plant in a flower patch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14583} -{name:"Money crest voucher", itemDescription:"I can take this to the Herald to get my money crest back for free.", shopValue:500000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14584} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14585} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14586} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14587} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14588} -{name:"White lily seed", itemDescription:"", shopValue:1250, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14589} -{name:"Enchanted lyre (5)", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14590} -{name:"Enchanted lyre (6)", itemDescription:"This will teleport me to Rellekka when I play it. A musical intrument that I can magically play.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14591} -{name:"Elite black platelegs", itemDescription:"These look pretty heavy, but very elite.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -14.0, -6.0, 52.0, 50.0, 25.0, -1.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14592} -{name:"Elite black platebody", itemDescription:"Provides excellent protection, and is elite.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -20.0, -8.0, 80.0, 85.0, 40.0, -2.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14593} -{name:"Elite black full helm", itemDescription:"A full face helmet, and elite.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -4.0, -2.0, 31.0, 33.0, 15.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14594} -{name:"Santa costume top", itemDescription:"A red and jolly top.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14595} -{name:"Ice amulet", itemDescription:"A spikey amulet made of ice crystals. It has been enchanted so it will not melt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14596} -{name:"Stones", itemDescription:"Explorer Jack's 'riches'. They have a suspicious look to them.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14597} -{name:"Enchanted stones", itemDescription:"According to the snow imps, this is enchanted, frozen yeti dung.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14598} -{name:"Ice amulet", itemDescription:"A spikey amulet made of ice crystals. It has been enchanted so it will not melt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14599} -{name:"Santa costume top", itemDescription:"A red and jolly top.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14600} -{name:"Santa costume top", itemDescription:"A red and jolly top.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14601} -{name:"Santa costume gloves", itemDescription:"Some black and jolly gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14602} -{name:"Santa costume legs", itemDescription:"Some red and jolly legs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14603} -{name:"Santa costume legs", itemDescription:"Some red and jolly legs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14604} -{name:"Santa costume boots", itemDescription:"Some black and jolly boots.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14605} -{name:"Cinnamon twigs", itemDescription:"Aromatic twigs from a cinnamon tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14606} -{name:"Sassafras twigs", itemDescription:"Aromatic twigs from a sassafras tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14607} -{name:"Ailanthus twigs", itemDescription:"Aromatic twigs from a ailanthus tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14608} -{name:"Cedar twigs", itemDescription:"Aromatic twigs from a cedar tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14609} -{name:"Mastic twigs", itemDescription:"Aromatic twigs from a mastic tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14610} -{name:"Cinnamon weaving ribbon", itemDescription:"Cinnamon twigs, fletched into ribbons of wood and ready to be woven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14611} -{name:"Sassafras weaving ribbon", itemDescription:"Sassafras twigs, fletched into ribbons of wood and ready to be woven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14612} -{name:"Ailanthus weaving ribbon", itemDescription:"Ailanthus twigs, fletched into ribbons of wood and ready to be woven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14613} -{name:"Cedar weaving ribbon", itemDescription:"Cedar twigs, fletched into ribbons of wood and ready to be woven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14614} -{name:"Mastic weaving ribbon", itemDescription:"Mastic twigs, fletched into ribbons of wood and ready to be woven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14615} -{name:"Phoenix quill", itemDescription:"The phoenix gave me this, as thanks for rebirthing it.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14616} -{name:"Phoenix quill", itemDescription:"The phoenix gave me this, as thanks for rebirthing it.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14617} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14618} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14619} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14620} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14621} -{name:"Rise from the ashes scroll", itemDescription:"", shopValue:498, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14622} -{name:"Phoenix pouch", itemDescription:"", shopValue:4986, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14623} -{name:"Phoenix pouch", itemDescription:"", shopValue:4986, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14624} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14625} -{name:"Phoenix eggling", itemDescription:" A baby phoenix and it's bad to the bone!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14626} -{name:"Phoenix eggling", itemDescription:" A baby phoenix and it's bad to the bone!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14627} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14628} -{name:"Phoenix egg", itemDescription:"I found this egg in the Phoenix's Lair, and clapped at it!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14629} -{name:"Cracked phoenix egg", itemDescription:"I found this egg in the Phoenix's Lair, and kicked it!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14630} -{name:"Seer's headband 1", itemDescription:"A headband with an eye embroidered on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14631} -{name:"Enhanced excalibur", itemDescription:"This used to belong to King Arthur and has since been improved.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[38.0, 47.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14632} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14633} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14634} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14635} -{name:"Slayer helmet (e)", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 32.0, 27.0, 0.0, 30.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14636} -{name:"Slayer helmet (charged)", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 32.0, 27.0, 0.0, 30.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14637} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14638} -{name:"Soul fragment", itemDescription:"Pulses with energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14639} -{name:"Bandages", itemDescription:"A box of bandages for healing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14640} -{name:"Red cape", itemDescription:"A bright red cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14641} -{name:"Blue cape", itemDescription:"A thick blue cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14642} -{name:"Barricade", itemDescription:"Handy for hindering the enemy team's movement.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14643} -{name:"Explosive potion", itemDescription:"I could use this to destroy things...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14644} -{name:"Blue cape", itemDescription:"A thick blue cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14645} -{name:"Soul fragment", itemDescription:"Pulses with energy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14646} -{name:"Soul wars guide", itemDescription:"It's full of interesting stuff.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14647} -{name:"Bandages", itemDescription:"A box of bandages for healing.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14648} -{name:"Barricade", itemDescription:"Handy for hindering the enemy team's movement.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14649} -{name:"Explosive potion", itemDescription:"I could use this to destroy things...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14650} -{name:"Abyssal minion", itemDescription:"A denizen of the Abyss.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14651} -{name:"Creeping hand", itemDescription:"Gimme five!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14652} -{name:"Minitrice", itemDescription:"Too small to turn people into boulders.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14653} -{name:"Baby basilisk", itemDescription:"Too small to turn people into boulders.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14654} -{name:"Baby kurask", itemDescription:"It's small, but still heavy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14655} -{name:"Abyssal minion", itemDescription:"A denizen of the Abyss.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14656} -{name:"Creeping hand", itemDescription:"Gimme five!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14657} -{name:"Minitrice", itemDescription:"Too small to turn people into boulders.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14658} -{name:"Baby basilisk", itemDescription:"Too small to turn people into boulders.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14659} -{name:"Baby kurask", itemDescription:"It's small, but still heavy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14660} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:1, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14661} -{name:"Seer's headband 2", itemDescription:"A headband with an eye embroidered on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14662} -{name:"Seer's headband 3", itemDescription:"A headband with an eye embroidered on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14663} -{name:"Random event gift", itemDescription:"Open the box and choose a gift.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14664} -{name:"Doughnut", itemDescription:"A tasty doughnut.", shopValue:10, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14665} -{name:"Evil tree kindling", itemDescription:"Kindling from an evil tree's root.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14666} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14667} -{name:"Captain undak", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14668} -{name:"Zanik", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14669} -{name:"Zanik", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14670} -{name:"Brian's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14671} -{name:"William's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14672} -{name:"Charles's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14673} -{name:"Sam's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14674} -{name:"Christopher's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14675} -{name:"Daniel's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14676} -{name:"Michael's letter", itemDescription:"You stole this letter from a H.A.M. agent in Sigmund's H.A.M. base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14677} -{name:"H.a.m. prison key", itemDescription:"You found this key in Sigmund's H.A.M base", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14678} -{name:"Granite mace", itemDescription:"The favoured weapon of Bandos.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[30.0, -2.0, 49.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14679} -{name:"Granite mace", itemDescription:"The favoured weapon of Bandos.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:36.0, bonuses:[30.0, -2.0, 49.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14680} -{name:"Granite mace", itemDescription:"The favoured weapon of Bandos.", shopValue:0, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[30.0, -2.0, 49.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14681} -{name:"Pendant", itemDescription:"It doesn't look so impressive now./I saw a glint in the corner of my eye. (When it is sitting on Bandos' throne when the player controls Zanik.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14682} -{name:"Pendant", itemDescription:"It doesn't look so impressive now./I saw a glint in the corner of my eye. (When it is sitting on Bandos' throne when the player controls Zanik.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14683} -{name:"Zanik's crossbow", itemDescription:"The crossbow that defeated the avatar of Bandos.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14684} -{name:"Crossbow", itemDescription:"This fires crossbow bolts.", shopValue:0, lowAlch:28, highAlch:42, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14685} -{name:"Zanik's crossbow", itemDescription:"The crossbow that defeated the avatar of Bandos.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14686} -{name:"Energy projectors", itemDescription:"Some magical equipment for Oldak's plan.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14687} -{name:"Focusing chamber", itemDescription:"Some magical equipment for Oldak's plan", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14688} -{name:"Zanik's crossbow", itemDescription:"The crossbow that defeated the avatar of Bandos.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14689} -{name:"Time capsule", itemDescription:"The scribe asked you to give this to Mistag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14690} -{name:"Box of artefacts", itemDescription:"Miscellaneous artefacts from Dorgesh-Kaan. You should give it to the scribe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14691} -{name:"Bandos throne room sphere", itemDescription:"Oldak's-Marvellous-moving-over-Distance-Sphere", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14692} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14693} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14694} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14695} -{name:"Prophecy tablet", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14696} -{name:"Unfinished astral rune", itemDescription:"It definitely doesn't belong to any of the adventurers you know about.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14697} -{name:"Nial's throwing axe", itemDescription:"It has 'N.S' etched into the runite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14698} -{name:"Cave directions", itemDescription:"Directions to the cave of the ice creature.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14699} -{name:"A scrap of paper", itemDescription:"A loose page written in an unsteady hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14700} -{name:"Herb pouch", itemDescription:"It looks to be of Mountain Clan design.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14701} -{name:"Vial of mountain water", itemDescription:"A glass vial, full of Asleif's spring water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14702} -{name:"Diamond root", itemDescription:"The dried root of an extinct plant.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14703} -{name:"Diamond root dust", itemDescription:"The dust of a finely ground extinct plant.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14704} -{name:"Enchanted diamond root dust", itemDescription:"The dust of a finely ground extinct plant, enchanted with magic.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14705} -{name:"Mountain irit potion (unf)", itemDescription:"A glass vial containing irit and Asleif's spring water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14706} -{name:"Diamond dust potion (unf)", itemDescription:"A glass vial containing Asleif's spring water, irit and enchanted diamond root dust.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14707} -{name:"Yeti curse cure", itemDescription:"A cure for the curse affecting King Vargas.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14708} -{name:"Yeti hair", itemDescription:"It's the coarse hair of a yeti.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14709} -{name:"Tome of glorious deeds", itemDescription:"It has been passed down Manni's family.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14710} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14711} -{name:"Beer", itemDescription:"A glass of frothy ale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14712} -{name:"Easter carrot", itemDescription:"Spreading carroty goodness since 2009.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-100.0, -100.0, -100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14713} -{name:"Sunflower seeds", itemDescription:"A small pile of sunflower seeds.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14714} -{name:"Cracker bits", itemDescription:"A small pile of crumbled crackers.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14715} -{name:"Worm bits", itemDescription:"A small pile of wriggly worms' bits.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14716} -{name:"Poppy seeds", itemDescription:"A small pile of poppy seeds.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14717} -{name:"Chimney", itemDescription:"A chimney that looks like it will fit on the incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14718} -{name:"Cog", itemDescription:" A broken cog.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14719} -{name:"Pistons", itemDescription:"Looks like these might fit onto the incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14720} -{name:"Wet pipe", itemDescription:"Looks like this might fit onto the incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14721} -{name:"Clean pipe", itemDescription:"It looks clean. (2009)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14722} -{name:"Sooty pipe", itemDescription:"Looks like this might fit onto the incubator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14723} -{name:"Incubator blueprint", itemDescription:"Instructions on how to build Incubator 9000.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14724} -{name:"Impling net", itemDescription:"For catching implings...", shopValue:24, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14725} -{name:"Impling jar", itemDescription:"It's got little holes in the top.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14726} -{name:"Easter impling jar", itemDescription:"An Easter impling in a jar. That's a bit cruel.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14727} -{name:"Easter carrot", itemDescription:"Spreading carroty goodness since 2009.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-100.0, -100.0, -100.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14728} -{name:"Elite black platelegs", itemDescription:"These look pretty heavy, but very elite.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -14.0, -6.0, 52.0, 50.0, 25.0, -1.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14729} -{name:"Elite black platebody", itemDescription:"Provides excellent protection, and is elite.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -20.0, -8.0, 80.0, 85.0, 40.0, -2.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14730} -{name:"Elite black full helm", itemDescription:"A full face helmet, and elite.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -4.0, -2.0, 31.0, 33.0, 15.0, 0.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14731} -{name:"Dagon'hai robe top", itemDescription:"A robe worn by members of the Dagon'hai.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14732} -{name:"Dagon'hai hat", itemDescription:"A hat worn by members of the Dagon'hai.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14733} -{name:"Dagon'hai robe bottom", itemDescription:"A robe worn by members of the Dagon'hai.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 15.0, 2.0, 1.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14734} -{name:"Driftwood", itemDescription:"It's old and weathered, but it could still float.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14735} -{name:"Fire raft", itemDescription:"It's not the safest mode of transport.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14736} -{name:"Log", itemDescription:"A number of wooden logs.", shopValue:2, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14737} -{name:"Jhallan object", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14738} -{name:"Muspah tail", itemDescription:"It's the tail of the Muspah!", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14739} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14740} -{name:"Erjolf", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14741} -{name:"Lily of the valley", itemDescription:"A little and fragrant, bell-shaped Spring flower. It will vanish with the next update.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14742} -{name:"Burgundy afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14743} -{name:"Burgundy afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14744} -{name:"Red afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14745} -{name:"Red afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14746} -{name:"Vermilion afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14747} -{name:"Vermilion afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14748} -{name:"Pink afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14749} -{name:"Pink afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14750} -{name:"Orange afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14751} -{name:"Orange afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14752} -{name:"Yellow afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14753} -{name:"Yellow afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14754} -{name:"Peach afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14755} -{name:"Peach afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14756} -{name:"Brown afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14757} -{name:"Brown afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14758} -{name:"Dark brown afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14759} -{name:"Dark brown afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14760} -{name:"Light brown afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14761} -{name:"Light brown afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14762} -{name:"Mint green afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14763} -{name:"Mint green afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14764} -{name:"Green afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14765} -{name:"Green afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14766} -{name:"Dark green afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14767} -{name:"Dark green afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14768} -{name:"Dark blue afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14769} -{name:"Dark blue afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14770} -{name:"Turquoise afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14771} -{name:"Turquoise afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14772} -{name:"Light blue afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14773} -{name:"Light blue afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14774} -{name:"Purple afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14775} -{name:"Purple afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14776} -{name:"Violet afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14777} -{name:"Violet afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14778} -{name:"Indigo afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14779} -{name:"Indigo afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14780} -{name:"Dark grey afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14781} -{name:"Dark grey afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14782} -{name:"Military grey afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14783} -{name:"Military grey afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14784} -{name:"White afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14785} -{name:"White afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14786} -{name:"Light grey afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14787} -{name:"Light grey afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14788} -{name:"Taupe afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14789} -{name:"Taupe afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14790} -{name:"Black afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14791} -{name:"Black afro", itemDescription:"Perfect for parties!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14792} -{name:"Ourg bones", itemDescription:"Ancient ogre bones from the burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14793} -{name:"Ourg bones", itemDescription:"Ancient ogre bones from the burial tomb.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14794} -{name:"Wilderness manual", itemDescription:"A book about the Wilderness.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14795} -{name:"Scroll of the dead", itemDescription:"Ancient writings recently translated.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14796} -{name:"Tatty bag", itemDescription:"AMCE reliable swag bag - maximum load 2 ounces.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14797} -{name:"Shattered axes", itemDescription:"ACME ultra axe - keep point away from eyes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14798} -{name:"Defective spades", itemDescription:"AMCE superior digging tools - remove foot from excavation area.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14799} -{name:"Suboptimal flask", itemDescription:"AMCE splendiferous desert beverages - not for external use.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14800} -{name:"Useless ration boxes", itemDescription:"ACME luxury desert rations - leave room for your desert beverages.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14801} -{name:"Sub-optimal lantern", itemDescription:"AMCE indestructible lightsource - not for underwater use", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14802} -{name:"Pyramid journal", itemDescription:"It belonged to a literate looter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14803} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14804} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14805} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14806} -{name:"Canopic jar", itemDescription:"Varies. See Types", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14807} -{name:"Scroll of praise", itemDescription:"Written in an ancient language.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14808} -{name:"Senliten's mummy", itemDescription:"Complete and ready for re-burial.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14809} -{name:"Mummy hand", itemDescription:"Just a hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14810} -{name:"Mummy with no hand", itemDescription:"Give her a hand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14811} -{name:"Mummy's name papyrus", itemDescription:"This is an ancient original.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14812} -{name:"Copied name papyrus", itemDescription:"Is a modern copy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14813} -{name:"Tumneken's shadow remains", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14814} -{name:"Spiced wine", itemDescription:"Spiced in a way unpalatable to modern tastes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14815} -{name:"Pot of grain", itemDescription:"There is grain in this pot or The perfect food stuff for those long dead.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14816} -{name:"Leela", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14817} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14818} -{name:"Telegram", itemDescription:"Contains information about the submarine.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14819} -{name:"Conch shell", itemDescription:"For summoning submarines.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14820} -{name:"Toolbox", itemDescription:"Where the tools live.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14821} -{name:"Kgp id card", itemDescription:"So you can be a penguin too!", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14822} -{name:"Puffer", itemDescription:"Puffed up.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14823} -{name:"Octopus", itemDescription:"Inky.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14824} -{name:"Monkfish", itemDescription:"A tasty fish.", shopValue:10, lowAlch:92, highAlch:138, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14825} -{name:"Ray", itemDescription:"Doh ray me.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14826} -{name:"Crab claw", itemDescription:"If it is good enough for crabs, it's good enough for me.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 4.0, 2.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14827} -{name:"Shark tooth", itemDescription:"A sturdy shark's tooth.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14828} -{name:"Electric eel", itemDescription:"Shocking.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14829} -{name:"Seaweed", itemDescription:"Slightly damp seaweed.", shopValue:10, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14830} -{name:"Swordfish", itemDescription:"I'd better be careful eating this!", shopValue:10, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14831} -{name:"Penguin", itemDescription:"", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14832} -{name:"Kgp agent", itemDescription:"The polar bear will want to interrogate him.", shopValue:40, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14833} -{name:"Driftwood", itemDescription:"It's old and weathered, but it could still float.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14834} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14835} -{name:"Grimy wergali", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14836} -{name:"Grimy wergali", itemDescription:"I need to clean this herb before I can use it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14837} -{name:"Crafting potion (4)", itemDescription:"(x) doses of Crafting potion.", shopValue:215, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14838} -{name:"Crafting potion (4)", itemDescription:"(x) doses of Crafting potion.", shopValue:215, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14839} -{name:"Crafting potion (3)", itemDescription:"(x) doses of Crafting potion.", shopValue:160, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14840} -{name:"Crafting potion (3)", itemDescription:"(x) doses of Crafting potion.", shopValue:160, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14841} -{name:"Crafting potion (2)", itemDescription:"(x) doses of Crafting potion.", shopValue:105, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14842} -{name:"Crafting potion (2)", itemDescription:"(x) doses of Crafting potion.", shopValue:105, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14843} -{name:"Crafting potion (1)", itemDescription:"(x) doses of Crafting potion.", shopValue:52, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14844} -{name:"Crafting potion (1)", itemDescription:"(x) doses of Crafting potion.", shopValue:52, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14845} -{name:"Fletching potion (4)", itemDescription:"X doses of Fletching potion.", shopValue:215, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14846} -{name:"Fletching potion (4)", itemDescription:"X doses of Fletching potion.", shopValue:215, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14847} -{name:"Fletching potion (3)", itemDescription:"X doses of Fletching potion.", shopValue:160, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14848} -{name:"Fletching potion (3)", itemDescription:"X doses of Fletching potion.", shopValue:160, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14849} -{name:"Fletching potion (2)", itemDescription:"X doses of Fletching potion.", shopValue:105, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14850} -{name:"Fletching potion (2)", itemDescription:"X doses of Fletching potion.", shopValue:105, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14851} -{name:"Fletching potion (1)", itemDescription:"X doses of Fletching potion.", shopValue:52, lowAlch:86, highAlch:129, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14852} -{name:"Fletching potion (1)", itemDescription:"X doses of Fletching potion.", shopValue:52, lowAlch:86, highAlch:129, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14853} -{name:"Clean wergali", itemDescription:"A fresh herb.", shopValue:44, lowAlch:17, highAlch:26, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14854} -{name:"Clean wergali", itemDescription:"A fresh herb.", shopValue:44, lowAlch:17, highAlch:26, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14855} -{name:"Wergali potion (unf)", itemDescription:"I need another ingredient to finish this wergali potion.", shopValue:44, lowAlch:17, highAlch:26, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14856} -{name:"Wergali potion (unf)", itemDescription:"I need another ingredient to finish this wergali potion.", shopValue:44, lowAlch:17, highAlch:26, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14857} -{name:"Unfinished net", itemDescription:"A strong net with no closing wire.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14858} -{name:"Empty seaweed net", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14859} -{name:"Seaweed net (1)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14860} -{name:"Seaweed net (2)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14861} -{name:"Seaweed net (3)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14862} -{name:"Seaweed net (4)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14863} -{name:"Seaweed net (5)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14864} -{name:"Seaweed net (6)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14865} -{name:"Seaweed net (7)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14866} -{name:"Seaweed net (8)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14867} -{name:"Seaweed net (9)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14868} -{name:"Seaweed net (10)", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:0, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14869} -{name:"Wergali seed", itemDescription:"", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14870} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14871} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14872} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14873} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14874} -{name:"Empty seaweed net", itemDescription:"A sturdy net with closing wire / A sturdy net containing seaweed", shopValue:60, lowAlch:24, highAlch:36, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14875} -{name:"Ancient statuette", itemDescription:"A mysterious statuette of ancient times.", shopValue:5000000, lowAlch:2000000, highAlch:3000000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14876} -{name:"Seren statuette", itemDescription:"A small statuette that appears to be entirely made of crystal.", shopValue:1000000, lowAlch:400000, highAlch:600000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14877} -{name:"Armadyl statuette", itemDescription:"A dedication to Armadyl, carved from the wing bones of his fallen warriors.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14878} -{name:"Zamorak statuette", itemDescription:"A small, obsidian statuette in the shape of a black demon.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14879} -{name:"Saradomin statuette", itemDescription:"An angel statuette dedicated to Saradomin.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14880} -{name:"Bandos statuette", itemDescription:"A statuette resembling an ork-like creature.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14881} -{name:"Ruby chalice", itemDescription:"A small obsidian chalice with a finely cut ruby in it.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14882} -{name:"Guthixian brazier", itemDescription:"A bronze ritual brazier, trimmed with jade and emeralds.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14883} -{name:"Armadyl totem", itemDescription:"A painted, wooden eagle in fine condition.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14884} -{name:"Zamorak medallion", itemDescription:"A black, metal symbol decorated with three blood red rubies.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14885} -{name:"Saradomin carving", itemDescription:"A wooden angel icon dedicated to Saradomin.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14886} -{name:"Bandos scrimshaw", itemDescription:"A stylish ogre, crafted out of bone.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14887} -{name:"Saradomin amphora", itemDescription:"A ceramic vase with a Saradomin symbol painted on it.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14888} -{name:"Ancient psaltery bridge", itemDescription:"A part of an old instrument.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14889} -{name:"Bronzed dragon claw", itemDescription:"This big claw was once part of a ceremonial necklace.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14890} -{name:"Third age carafe", itemDescription:"A very old clay carafe.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14891} -{name:"Broken statue headdress", itemDescription:"This was once part of a big statue.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14892} -{name:"Ancient statuette", itemDescription:"A mysterious statuette of ancient times.", shopValue:5000000, lowAlch:2000000, highAlch:3000000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14893} -{name:"Seren statuette", itemDescription:"A small statuette that appears to be entirely made of crystal.", shopValue:1000000, lowAlch:400000, highAlch:600000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14894} -{name:"Armadyl statuette", itemDescription:"A dedication to Armadyl, carved from the wing bones of his fallen warriors.", shopValue:750000, lowAlch:300000, highAlch:450000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14895} -{name:"Zamorak statuette", itemDescription:"A small, obsidian statuette in the shape of a black demon.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14896} -{name:"Saradomin statuette", itemDescription:"An angel statuette dedicated to Saradomin.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14897} -{name:"Bandos statuette", itemDescription:"A statuette resembling an ork-like creature.", shopValue:300000, lowAlch:120000, highAlch:180000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14898} -{name:"Ruby chalice", itemDescription:"A small obsidian chalice with a finely cut ruby in it.", shopValue:250000, lowAlch:100000, highAlch:150000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14899} -{name:"Guthixian brazier", itemDescription:"A bronze ritual brazier, trimmed with jade and emeralds.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14900} -{name:"Armadyl totem", itemDescription:"A painted, wooden eagle in fine condition.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14901} -{name:"Zamorak medallion", itemDescription:"A black, metal symbol decorated with three blood red rubies.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14902} -{name:"Saradomin carving", itemDescription:"A wooden angel icon dedicated to Saradomin.", shopValue:75000, lowAlch:30000, highAlch:45000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14903} -{name:"Bandos scrimshaw", itemDescription:"A stylish ogre, crafted out of bone.", shopValue:50000, lowAlch:20000, highAlch:30000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14904} -{name:"Saradomin amphora", itemDescription:"A ceramic vase with a Saradomin symbol painted on it.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14905} -{name:"Ancient psaltery bridge", itemDescription:"A part of an old instrument.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14906} -{name:"Bronzed dragon claw", itemDescription:"This big claw was once part of a ceremonial necklace.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14907} -{name:"Third age carafe", itemDescription:"A very old clay carafe.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14908} -{name:"Broken statue headdress", itemDescription:"This was once part of a big statue.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14909} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14910} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14911} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14912} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14913} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14914} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14915} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14916} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14917} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14918} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14919} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14920} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14921} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14922} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14923} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14924} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14925} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14926} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14927} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14928} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14929} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14930} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14931} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14932} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14933} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14934} -{name:"null", itemDescription:"It's a null.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14935} -{name:"Agile top", itemDescription:"It seems to be made of incredibly light, but durable materials.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 40.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14936} -{name:"Agile top", itemDescription:"It seems to be made of incredibly light, but durable materials.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 40.0, 40.0, 40.0, 40.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14937} -{name:"Agile legs", itemDescription:"They seem to be made of incredibly light but durable material.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 30.0, 25.0, 25.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14938} -{name:"Agile legs", itemDescription:"They seem to be made of incredibly light but durable material.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 25.0, 30.0, 25.0, 25.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14939} -{name:"Special unit contract", itemDescription:"I can use this in battle for extra assistance.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14940} -{name:"Dwarf squad (light)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14941} -{name:"Dwarf squad (level 2) (light)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14942} -{name:"Dwarf squad (level 3) (light)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14943} -{name:"Dwarf squad (level 4) (light)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14944} -{name:"Dwarf squad (level 5) (light)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14945} -{name:"Dwarf squad (heavy)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14946} -{name:"Dwarf squad (level 2) (heavy)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14947} -{name:"Dwarf squad (level 3) (heavy)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14948} -{name:"Dwarf squad (level 4) (heavy)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14949} -{name:"Dwarf squad (level 5) (heavy)", itemDescription:"A contract for a dwarf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14950} -{name:"Goblin squad (light)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14951} -{name:"Goblin squad (level 2) (light)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14952} -{name:"Goblin squad (level 3) (light)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14953} -{name:"Goblin squad (level 4) (light)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14954} -{name:"Goblin squad (level 5) (light)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14955} -{name:"Goblin squad (heavy)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14956} -{name:"Goblin squad (level 2) (heavy)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14957} -{name:"Goblin squad (level 3) (heavy)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14958} -{name:"Goblin squad (level 4) (heavy)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14959} -{name:"Goblin squad (level 5) (heavy)", itemDescription:"A contract for a goblin squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14960} -{name:"Elf squad (light)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14961} -{name:"Elf squad (level 2) (light)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14962} -{name:"Elf squad (level 3) (light)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14963} -{name:"Elf squad (level 4) (light)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14964} -{name:"Elf squad (level 5) (light)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14965} -{name:"Elf squad (heavy)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14966} -{name:"Elf squad (level 2) (heavy)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14967} -{name:"Elf squad (level 3) (heavy)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14968} -{name:"Elf squad (level 4) (heavy)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14969} -{name:"Elf squad (level 5) (heavy)", itemDescription:"A contract for an elf squad.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14970} -{name:"Dwarf squad (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14971} -{name:"Dwarf squad (level 2) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14972} -{name:"Dwarf squad (level 3) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14973} -{name:"Dwarf squad (level 4) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14974} -{name:"Dwarf squad (level 5) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14975} -{name:"Dwarf squad (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14976} -{name:"Dwarf squad (level 2) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14977} -{name:"Dwarf squad (level 3) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14978} -{name:"Dwarf squad (level 4) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14979} -{name:"Dwarf squad (level 5) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14980} -{name:"Goblin squad (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14981} -{name:"Goblin squad (level 2) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14982} -{name:"Goblin squad (level 3) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14983} -{name:"Goblin squad (level 4) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14984} -{name:"Goblin squad (level 5) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14985} -{name:"Goblin squad (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14986} -{name:"Goblin squad (level 2) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14987} -{name:"Goblin squad (level 3) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14988} -{name:"Goblin squad (level 4) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14989} -{name:"Goblin squad (level 5) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14990} -{name:"Elf squad (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14991} -{name:"Elf squad (level 2) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14992} -{name:"Elf squad (level 3) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14993} -{name:"Elf squad (level 4) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14994} -{name:"Elf squad (level 5) (light) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14995} -{name:"Elf squad (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14996} -{name:"Elf squad (level 2) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14997} -{name:"Elf squad (level 3) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14998} -{name:"Elf squad (level 4) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:14999} -{name:"Elf squad (level 5) (heavy) (defeated)", itemDescription:"The squad recruiters will resupply this defeated contract for me.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15000} -{name:"Quest kit (basic)", itemDescription:"I can keep my adventuring items in here.", shopValue:11500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15001} -{name:"Quest kit (medium)", itemDescription:"I can keep my adventuring items in here.", shopValue:18500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15002} -{name:"Quest kit (advanced)", itemDescription:"I can keep my adventuring items in here.", shopValue:23100, lowAlch:9240, highAlch:13860, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15003} -{name:"Quest kit (elite)", itemDescription:"I can keep my adventuring items in here.", shopValue:30000, lowAlch:12000, highAlch:18000, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15004} -{name:"Inferior locator", itemDescription:"Helps me to get to useful resources.", shopValue:4600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15005} -{name:"Poor locator", itemDescription:"Helps me to get to useful resources.", shopValue:6900, lowAlch:2760, highAlch:4140, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15006} -{name:"Good locator", itemDescription:"Helps me to get to useful resources.", shopValue:9250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15007} -{name:"Superior locator", itemDescription:"Helps me to get to useful resources.", shopValue:11500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15008} -{name:"Gold ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15009} -{name:"Sapphire ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15010} -{name:"Emerald ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies.", shopValue:1275, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15011} -{name:"Ruby ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies.", shopValue:2025, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[3.0, 3.0, 4.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15012} -{name:"Diamond ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies.", shopValue:3525, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15013} -{name:"Dragonstone ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies.", shopValue:17625, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15014} -{name:"Lunar ring (i)", itemDescription:"A mysterious ring, imbued at Mobilising Armies.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15015} -{name:"Ring of charos (a)(i)", itemDescription:"This ring has been activated and imbued", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 4.0, 4.0, 4.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15016} -{name:"Onyx ring (i)", itemDescription:"A valuable ring, imbued at Mobilising Armies", shopValue:3750000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15017} -{name:"Seers' ring (i)", itemDescription:"A mysterious ring that has been imbued at Mobilising Armies.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15018} -{name:"Archers' ring (i)", itemDescription:"Improves the wearer's skill with a bow. This has been imbued.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15019} -{name:"Warrior ring (i)", itemDescription:"A legendary ring once worn by Fremennik warriors. This has been imbued.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15020} -{name:"Serjeant cap", itemDescription:"A cap displaying low rank.", shopValue:6900, lowAlch:2760, highAlch:4140, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15021} -{name:"Serjeant top", itemDescription:"This is my shirt, there are many like it, but this is my very own.", shopValue:9250, lowAlch:3700, highAlch:5550, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15022} -{name:"Serjeant trousers", itemDescription:"With creases like knives.", shopValue:9250, lowAlch:3700, highAlch:5550, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15023} -{name:"Serjeant skirt", itemDescription:"For the more feminine army.", shopValue:9250, lowAlch:3700, highAlch:5550, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15024} -{name:"Serjeant boots", itemDescription:"For standing attention.", shopValue:6900, lowAlch:2760, highAlch:4140, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15025} -{name:"Serjeant gloves", itemDescription:"Smart and functional.", shopValue:6900, lowAlch:2760, highAlch:4140, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15026} -{name:"Commander cap", itemDescription:"A cap displaying a middle rank.", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15027} -{name:"Commander top", itemDescription:"This is my shirt, there are many like it, but this is my very own.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15028} -{name:"Commander trousers", itemDescription:"With creases like knives.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15029} -{name:"Commander skirt", itemDescription:"For the more feminine army.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15030} -{name:"Commander boots", itemDescription:"For standing to attention.", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15031} -{name:"Commander gloves", itemDescription:"Smart and functional.", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15032} -{name:"War-chief cap", itemDescription:"A cap displaying a fairly high rank.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15033} -{name:"War-chief top", itemDescription:"This is my shirt, there are many like it, but this is my very own.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15034} -{name:"War-chief trousers", itemDescription:"With creases like knives.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15035} -{name:"War-chief skirt", itemDescription:"For the more feminine army.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15036} -{name:"War-chief boots", itemDescription:"For standing to attention.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15037} -{name:"War-chief gloves", itemDescription:"Smart and functional.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15038} -{name:"Lord marshal cap", itemDescription:"A cap displaying a high rank.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15039} -{name:"Lord marshal top", itemDescription:"This is my shirt. There are many like it, but this is my own.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15040} -{name:"Lord marshal trousers", itemDescription:"With creases like knives.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15041} -{name:"Lord marshal skirt", itemDescription:"For the more feminine army.", shopValue:20800, lowAlch:8320, highAlch:12480, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15042} -{name:"Lord marshal boots", itemDescription:"For standing to attention.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15043} -{name:"Lord marshal gloves", itemDescription:"Smart and functional.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15044} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15045} -{name:"Magic skullball", itemDescription:"A magic skull, waiting for questions.", shopValue:12, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15046} -{name:"Magic skullball", itemDescription:"A magic skull, waiting for questions.", shopValue:12, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15047} -{name:"Magic skullball (long)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15048} -{name:"Magic skullball (long)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15049} -{name:"Magic skullball (yes/no)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15050} -{name:"Magic skullball (yes/no)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15051} -{name:"Magic skullball (activities)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15052} -{name:"Magic skullball (activities)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15053} -{name:"Magic skullball (colours)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15054} -{name:"Magic skullball (colours)", itemDescription:"A magic skull, waiting for questions.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15055} -{name:"Ticker", itemDescription:"It helps you count things/It's storing a number for you.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15056} -{name:"Ticker", itemDescription:"It helps you count things/It's storing a number for you.", shopValue:3, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15057} -{name:"Ticker (a)", itemDescription:"It helps you count things/It's storing a number for you.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15058} -{name:"Empty bag caller", itemDescription:"Proves to your friends that you aren't carrying anything.", shopValue:14, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15059} -{name:"Empty bag caller", itemDescription:"Proves to your friends that you aren't carrying anything.", shopValue:14, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15060} -{name:"Timepiece (stopped)", itemDescription:"I have hands but no arms.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15061} -{name:"Timepiece (stopped)", itemDescription:"I have hands but no arms.", shopValue:18, lowAlch:7, highAlch:10, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15062} -{name:"Timepiece (running)", itemDescription:"I have hands but no arms.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15063} -{name:"Timepiece (paused)", itemDescription:"I have hands but no arms.", shopValue:18, lowAlch:7, highAlch:10, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15064} -{name:"Racing boots", itemDescription:"No false starts with these on.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15065} -{name:"Racing boots", itemDescription:"No false starts with these on.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15066} -{name:"Starting horn", itemDescription:"It starts races fairly.", shopValue:45, lowAlch:18, highAlch:27, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15067} -{name:"Starting horn", itemDescription:"It starts races fairly.", shopValue:45, lowAlch:18, highAlch:27, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15068} -{name:"Voting hat (red)", itemDescription:"Show your support of the red/blue team or turn it inside out for blue/red.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15069} -{name:"Voting hat (red)", itemDescription:"Show your support of the red/blue team or turn it inside out for blue/red.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15070} -{name:"Voting hat (blue)", itemDescription:"Show your support of the red/blue team or turn it inside out for blue/red.", shopValue:6, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15071} -{name:"Voting hat (blue)", itemDescription:"Show your support of the red/blue team or turn it inside out for blue/red.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15072} -{name:"Orb of counting", itemDescription:"A mystical orb with a penchant for counting hats.", shopValue:36, lowAlch:14, highAlch:21, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15073} -{name:"Orb of counting", itemDescription:"A mystical orb with a penchant for counting hats.", shopValue:36, lowAlch:14, highAlch:21, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15074} -{name:"Marker seeds", itemDescription:"Seeds for growing marker plants.", shopValue:65, lowAlch:26, highAlch:39, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15075} -{name:"Marker seeds", itemDescription:"Seeds for growing marker plants.", shopValue:65, lowAlch:26, highAlch:39, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15076} -{name:"Faruq's toolonomicon", itemDescription:"The book of the Tools for Games.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15077} -{name:"Ring of seeking (hide)", itemDescription:"Wear it and challenge people to find you.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15078} -{name:"Ring of seeking (hide)", itemDescription:"Wear it and challenge people to find you.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15079} -{name:"Ring of seeking (seek)", itemDescription:"Wear it to find hiding rings.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15080} -{name:"Ring of seeking (seek)", itemDescription:"Wear it to find hiding rings.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15081} -{name:"Ring of seeking (both)", itemDescription:"The ring can find or be found.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15082} -{name:"Ring of seeking (both)", itemDescription:"The ring can find or be found.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15083} -{name:"Dice bag", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15084} -{name:"Dice bag", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15085} -{name:"Die (6 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15086} -{name:"Die (6 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15087} -{name:"Dice (2, 6 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15088} -{name:"Dice (2, 6 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15089} -{name:"Die (8 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15090} -{name:"Die (8 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15091} -{name:"Die (10 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15092} -{name:"Die (10 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15093} -{name:"Die (12 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15094} -{name:"Die (12 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15095} -{name:"Die (20 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15096} -{name:"Die (20 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15097} -{name:"Dice (up to 100)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15098} -{name:"Dice (up to 100)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15099} -{name:"Die (4 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15100} -{name:"Die (4 sides)", itemDescription:"It's a bag of dice.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15101} -{name:"Faruq's toolonomicon", itemDescription:"The book of the Tools for Games.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15102} -{name:"Stone tablet", itemDescription:"An old stone slab with writing on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15103} -{name:"Granite tablet", itemDescription:"An old chipped granite tablet", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15104} -{name:"Slate tablet", itemDescription:"An old chipped slate tablet", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15105} -{name:"Shale tablet", itemDescription:"An old chipped shale tablet.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15106} -{name:"Base plans", itemDescription:"Some rolled up plans.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15107} -{name:"Base key", itemDescription:"A key which may be for Zemouregal's base.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15108} -{name:"Oil in a canopic jar", itemDescription:"A canopic jar full of oil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15109} -{name:"Oil and berries in a jar", itemDescription:"A canopic jar full of oil and dwellberries", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15110} -{name:"Full canopic jar", itemDescription:"A canopic jar full of heart-preserving gloop.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15111} -{name:"Empty canopic jar", itemDescription:"An ancient canopic jar, currently empty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15112} -{name:"Heart in a canopic jar", itemDescription:"A heart suspended in fluid within a canopic jar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15113} -{name:"Code key", itemDescription:"A card with some sort of code on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15114} -{name:"Decoder strips", itemDescription:"A collection of decoder strips.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15115} -{name:"Notes (a-j)", itemDescription:"Some notes about various Mahjarrat.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15116} -{name:"Notes (k-z)", itemDescription:"Some notes about various Mahjarrat", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15117} -{name:"Arrav", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15118} -{name:"Ranger's aid", itemDescription:"The honey flavour really hits the spot!", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15119} -{name:"Ranger's aid", itemDescription:"The honey flavour really hits the spot!", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15120} -{name:"Ranger's aid (m)", itemDescription:"The honey flavour really, really hits the spot!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15121} -{name:"Ranger's aid (m)", itemDescription:"The honey flavour really, really hits the spot!", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15122} -{name:"Skewered kebab", itemDescription:"Meat and veg run through with an arrow.", shopValue:25, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15123} -{name:"Skewered kebab", itemDescription:"Meat and veg run through with an arrow.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15124} -{name:"Aquanite", itemDescription:"It has a light on its forehead. What a pretty light... So shiny!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15125} -{name:"Amulet of ranging", itemDescription:"A sharp fang amulet, which looks good on rangers and surfers alike.", shopValue:45000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15126} -{name:"Amulet of ranging", itemDescription:"A sharp fang amulet, which looks good on rangers and surfers alike.", shopValue:45000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15127} -{name:"Foot bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15128} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15129} -{name:"Polished foot bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15130} -{name:"Sabre-like teeth", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15131} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15132} -{name:"Polished sabre-like teeth", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15133} -{name:"Long, sharp claws", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15134} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15135} -{name:"Polished long, sharp claws", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15136} -{name:"Fibula bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15137} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15138} -{name:"Polished fibula bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15139} -{name:"Hand bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15140} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15141} -{name:"Polished hand bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15142} -{name:"Green dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15143} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15144} -{name:"Polished green dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15145} -{name:"Blue dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15146} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15147} -{name:"Polished blue dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15148} -{name:"Red dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15149} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15150} -{name:"Polished red dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15151} -{name:"Black dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15152} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15153} -{name:"Polished black dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15154} -{name:"Skeletal wyvern tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15155} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15156} -{name:"Polished skeletal wyvern tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15157} -{name:"Bronze dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15158} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15159} -{name:"Polished bronze dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15160} -{name:"Iron dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15161} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15162} -{name:"Polished iron dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15163} -{name:"Steel dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15164} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15165} -{name:"Polished steel dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15166} -{name:"Mithril dragon tail-bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15167} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15168} -{name:"Polished mithril dragon tail-bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15169} -{name:"Neck bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15170} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15171} -{name:"Polished neck bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15172} -{name:"Shoulder bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15173} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15174} -{name:"Polished shoulder bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15175} -{name:"Giant snake spine", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15176} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15177} -{name:"Polished giant snake spine", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15178} -{name:"Pelvis bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15179} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15180} -{name:"Polished pelvis bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15181} -{name:"Femur bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15182} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15183} -{name:"Polished femur bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15184} -{name:"Humerus bone", itemDescription:"This needs a good polish.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15185} -{name:"Bone in vinegar", itemDescription:"See article", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15186} -{name:"Polished humerus bone", itemDescription:"This belongs in a museum!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15187} -{name:"Rock crab carcass", itemDescription:"This would need to be prepared...in theory.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15188} -{name:"Scrubbed rock crab carcass", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15189} -{name:"Fox pelt", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15190} -{name:"Scrubbed fox pelt", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15191} -{name:"Tanned fox pelt", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15192} -{name:"Unicorn hide", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15193} -{name:"Scrubbed unicorn hide", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15194} -{name:"Tanned unicorn hide", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15195} -{name:"Black unicorn hide", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15196} -{name:"Scrubbed black unicorn hide", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15197} -{name:"Tanned black unicorn hide", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15198} -{name:"Bear pelt", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15199} -{name:"Scrubbed bear pelt", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15200} -{name:"Tanned bear pelt", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15201} -{name:"Fenris wolf pelt", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15202} -{name:"Scrubbed fenris wolf pelt", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15203} -{name:"Tanned fenris wolf pelt", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15204} -{name:"Cave crawler skin", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15205} -{name:"Scrubbed cave crawler skin", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15206} -{name:"Tanned cave crawler skin", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15207} -{name:"Cockatrice skin", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15208} -{name:"Scrubbed cockatrice skin", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15209} -{name:"Tanned cockatrice skin", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15210} -{name:"Hobgoblin skin", itemDescription:"This needs to be prepared.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15211} -{name:"Scrubbed hobgoblin skin", itemDescription:"It has been scrubbed with salt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15212} -{name:"Tanned hobgoblin skin", itemDescription:"This fur is ready to be turned into a stuffed animal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15213} -{name:"Ram skull helm(e)", itemDescription:"This will allow me to teleport to the skeletal horror once a week.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, -2.0, 22.0, 24.0, 19.0, 0.0, 22.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15214} -{name:"Bonesack(e)", itemDescription:"This will allow me to teleport to the skeletal horror once a week.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 6.0, 6.0, 6.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15215} -{name:"Old diary", itemDescription:"A tattered old diary - property of the Odd Old man.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15216} -{name:"Arm", itemDescription:" It's alive, ALIVE!.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15217} -{name:"Arm", itemDescription:" It's alive, ALIVE!.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15218} -{name:"Tail", itemDescription:" I wonder if it'd make a nice pet... Probably not.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15219} -{name:"Berserker ring (i)", itemDescription:"A ring reputed to bring out a berserk fury in its wearer. This has been imbued.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15220} -{name:"Menagerie", itemDescription:"", shopValue:30000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15221} -{name:"Garden habitat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15222} -{name:"Jungle habitat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15223} -{name:"Desert habitat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15224} -{name:"Polar habitat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15225} -{name:"Volcanic habitat", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15226} -{name:"Oak pet house", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15227} -{name:"Teak pet house", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15228} -{name:"Mahogany pet house", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15229} -{name:"Consecrated pet house", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15230} -{name:"Desecrated pet house", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15231} -{name:"Natural pet house", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15232} -{name:"Oak pet feeder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15233} -{name:"Teak pet feeder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15234} -{name:"Mahogany pet feeder", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15235} -{name:"Mini obelisk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15236} -{name:"Bagged cactus", itemDescription:"You can plant this in your garden.", shopValue:18000, lowAlch:7200, highAlch:10800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15237} -{name:"Bagged cactus", itemDescription:"You can plant this in your garden.", shopValue:18000, lowAlch:7200, highAlch:10800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15238} -{name:"Bagged evergreen", itemDescription:"You can plant this in your garden.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15239} -{name:"Bagged evergreen", itemDescription:"You can plant this in your garden.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15240} -{name:"Hand cannon", itemDescription:"A miniature dwarven cannon.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15241} -{name:"Hand cannon", itemDescription:"A miniature dwarven cannon.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:36.0, bonuses:[0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15242} -{name:"Hand cannon shot", itemDescription:"The bag contains shot and powder for the hand cannon.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 150.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15243} -{name:"Commander veldaban", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15244} -{name:"Mysterious slip", itemDescription:"The hand cannoner in the watchtower dropped this slip.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15245} -{name:"Package", itemDescription:"A large, oddly shaped package.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15246} -{name:"Boot", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15247} -{name:"Bowl", itemDescription:"Useful for mixing things.", shopValue:0, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15248} -{name:"Rod", itemDescription:"A metal rod with a handle on one and a square tip on the other.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15249} -{name:"Yellow stone", itemDescription:"There is a strange yellow marking on this stone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15250} -{name:"Green stone", itemDescription:"There is a strange green marking on this stone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15251} -{name:"Metal rectangle", itemDescription:"A thin but rigid rectangle of steel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15252} -{name:"Turnscrew", itemDescription:"A device for turning screws.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15253} -{name:"Guardsman's stout", itemDescription:"A special stout brewed for the dwarven Black Guard", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15254} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15255} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15256} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15257} -{name:"Ra3 dwarf trader head", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15258} -{name:"Dragon pickaxe", itemDescription:"Used for mining.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[38.0, -2.0, 32.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15259} -{name:"Dragon pickaxe", itemDescription:"Used for mining.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[38.0, -2.0, 32.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15260} -{name:"Dragon pickaxe", itemDescription:"Used for mining.", shopValue:0, lowAlch:50000, highAlch:75000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[38.0, -2.0, 32.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 42.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15261} -{name:"Spirit shard pack", itemDescription:"A pack of 5,000 spirit shards.", shopValue:125000, lowAlch:50000, highAlch:75000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15262} -{name:"Living minerals", itemDescription:"These minerals appear to be alive.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15263} -{name:"Raw cavefish", itemDescription:"I should try cooking this.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15264} -{name:"Raw cavefish", itemDescription:"I should try cooking this.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15265} -{name:"Cavefish", itemDescription:"Some nicely cooked cavefish.", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15266} -{name:"Cavefish", itemDescription:"Some nicely cooked cavefish.", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15267} -{name:"Burnt cavefish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15268} -{name:"Burnt cavefish", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15269} -{name:"Raw rocktail", itemDescription:"I should try cooking this.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15270} -{name:"Raw rocktail", itemDescription:"I should try cooking this.", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15271} -{name:"Rocktail", itemDescription:"Some nicely cooked rocktail.", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15272} -{name:"Rocktail", itemDescription:"Some nicely cooked rocktail.", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:33.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15273} -{name:"Burnt rocktail", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15274} -{name:"Burnt rocktail", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15275} -{name:"Plank", itemDescription:"A plank of wood!", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15276} -{name:"Drugged meat", itemDescription:"This meat has been treated with sleeping potion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15277} -{name:"Cloth", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15278} -{name:"Oily cloth", itemDescription:"A tatty old bit of cloth, now soaked in oil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15279} -{name:"Rag", itemDescription:"A tatty old rag of cloth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15280} -{name:"Oily rag", itemDescription:"A tatty old rag of cloth, now soaked in oil.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15281} -{name:"Fuse", itemDescription:"A fuse.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15282} -{name:"Fuse", itemDescription:"A fuse.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15283} -{name:"Sir vant's oil can", itemDescription:"A can of oil belonging to Sir Vant.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15284} -{name:"Root chippings", itemDescription:"Some root chippings.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15285} -{name:"Stone clippings", itemDescription:"Fragments of stone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15286} -{name:"Leaflet", itemDescription:"A beginner's guide to using a bank.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15287} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15288} -{name:"Special teak log", itemDescription:"The sawmill vendor might be interested in this.", shopValue:60, lowAlch:24, highAlch:36, isStackable:false, isNoteable:false, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15289} -{name:"Special mahogany log", itemDescription:"The sawmill vendor might be interested in this.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:14.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15290} -{name:"Plank", itemDescription:"A plank of wood!", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15291} -{name:"Short plank", itemDescription:"A short plank.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15292} -{name:"Long plank", itemDescription:"A long plank.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15293} -{name:"Diagonal-cut plank", itemDescription:"A diagonally-cut plank.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15294} -{name:"Tooth plank", itemDescription:"A plank with a tooth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15295} -{name:"Groove plank", itemDescription:"Groovy!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15296} -{name:"Curved plank", itemDescription:"A long plank with a curved end.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15297} -{name:"Iron hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:56, lowAlch:22, highAlch:33, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-2.0, 5.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15298} -{name:"Iron hatchet", itemDescription:"A woodcutter's hatchet.", shopValue:56, lowAlch:22, highAlch:33, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-2.0, 5.0, 3.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15299} -{name:"Recover special (4)", itemDescription:"X dose(s) of Recover special potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15300} -{name:"Recover special (3)", itemDescription:"X dose(s) of Recover special potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15301} -{name:"Recover special (2)", itemDescription:"X dose(s) of Recover special potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15302} -{name:"Recover special (1)", itemDescription:"X dose(s) of Recover special potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15303} -{name:"Super antifire (4)", itemDescription:"X Dose(s) of Super anti-fire potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15304} -{name:"Super antifire (3)", itemDescription:"X Dose(s) of Super anti-fire potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15305} -{name:"Super antifire (2)", itemDescription:"X Dose(s) of Super anti-fire potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15306} -{name:"Super antifire (1)", itemDescription:"X Dose(s) of Super anti-fire potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15307} -{name:"Extreme attack (4)", itemDescription:"X dose(s) of Extreme attack potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15308} -{name:"Extreme attack (3)", itemDescription:"X dose(s) of Extreme attack potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15309} -{name:"Extreme attack (2)", itemDescription:"X dose(s) of Extreme attack potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15310} -{name:"Extreme attack (1)", itemDescription:"X dose(s) of Extreme attack potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15311} -{name:"Extreme strength (4)", itemDescription:"X dose(s) of Extreme strength potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15312} -{name:"Extreme strength (3)", itemDescription:"X dose(s) of Extreme strength potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15313} -{name:"Extreme strength (2)", itemDescription:"X dose(s) of Extreme strength potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15314} -{name:"Extreme strength (1)", itemDescription:"X dose(s) of Extreme strength potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15315} -{name:"Extreme defence (4)", itemDescription:"X dose(s) of Extreme defence potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15316} -{name:"Extreme defence (3)", itemDescription:"X dose(s) of Extreme defence potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15317} -{name:"Extreme defence (2)", itemDescription:"X dose(s) of Extreme defence potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15318} -{name:"Extreme defence (1)", itemDescription:"X dose(s) of Extreme defence potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15319} -{name:"Extreme magic (4)", itemDescription:"X doses of Extreme magic potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15320} -{name:"Extreme magic (3)", itemDescription:"X doses of Extreme magic potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15321} -{name:"Extreme magic (2)", itemDescription:"X doses of Extreme magic potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15322} -{name:"Extreme magic (1)", itemDescription:"X doses of Extreme magic potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15323} -{name:"Extreme ranging (4)", itemDescription:"X dose(s) of Extreme ranging potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15324} -{name:"Extreme ranging (3)", itemDescription:"X dose(s) of Extreme ranging potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15325} -{name:"Extreme ranging (2)", itemDescription:"X dose(s) of Extreme ranging potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15326} -{name:"Extreme ranging (1)", itemDescription:"X dose(s) of Extreme ranging potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15327} -{name:"Super prayer (4)", itemDescription:"X dose(s) of Super prayer potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15328} -{name:"Super prayer (3)", itemDescription:"X dose(s) of Super prayer potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15329} -{name:"Super prayer (2)", itemDescription:"X dose(s) of Super prayer potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15330} -{name:"Super prayer (1)", itemDescription:"X dose(s) of Super prayer potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15331} -{name:"Overload (4)", itemDescription:"X doses of overload potion.", shopValue:275, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15332} -{name:"Overload (3)", itemDescription:"X doses of overload potion.", shopValue:220, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15333} -{name:"Overload (2)", itemDescription:"X doses of overload potion.", shopValue:165, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15334} -{name:"Overload (1)", itemDescription:"X doses of overload potion.", shopValue:110, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15335} -{name:"Serjeant cap", itemDescription:"A cap displaying low rank.", shopValue:6900, lowAlch:2760, highAlch:4140, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15336} -{name:"Commander cap", itemDescription:"A cap displaying a middle rank.", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15337} -{name:"War-chief cap", itemDescription:"A cap displaying a fairly high rank.", shopValue:13850, lowAlch:5540, highAlch:8310, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15338} -{name:"Lord marshal cap", itemDescription:"A cap displaying a high rank.", shopValue:16150, lowAlch:6460, highAlch:9690, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15339} -{name:"Arianwyn", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15340} -{name:"Blank teleport crystal", itemDescription:"A tiny unenchanted crystal.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15341} -{name:"Enchanted teleport crystal", itemDescription:"A tiny enchanted crystal that's bound to the Temple of Light caverns.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15342} -{name:"Notes", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15343} -{name:"Report", itemDescription:"It looks about ready to fall apart.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15344} -{name:"Ardougne cloak 1", itemDescription:"A shadowy Ardougne cloak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15345} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15346} -{name:"Ardougne cloak 2", itemDescription:"A shadowy Ardougne cloak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[4.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15347} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15348} -{name:"Ardougne cloak 3", itemDescription:"A shadowy Ardougne cloak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[6.0, 0.0, 0.0, 6.0, 0.0, 6.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15349} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15350} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15351} -{name:"Web cloak", itemDescription:"A very fancy cloak made from black silk and gossamer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15352} -{name:"Eek", itemDescription:"Eek, a spider!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15353} -{name:"Calling beads", itemDescription:"This should call your loyal, banner-carrying follower.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15354} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15355} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15356} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15357} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15358} -{name:"Champion's scroll", itemDescription:"A scroll once used by a champion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15359} -{name:"Scroll of knowledge", itemDescription:"Unknown edit", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15360} -{name:"Talisman", itemDescription:"A mysterious power emanates from the talisman...", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15361} -{name:"Vial pack", itemDescription:"A pack of 50 noted vials.", shopValue:250, lowAlch:100, highAlch:150, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15362} -{name:"Vial of water pack", itemDescription:"A pack of 50 noted vials of water.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15363} -{name:"Eye of newt pack", itemDescription:"A pack of 50 noted eyes of newt.", shopValue:150, lowAlch:60, highAlch:90, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15364} -{name:"Raw bird meat pack", itemDescription:"A pack of 50 noted pieces of raw bird meat.", shopValue:3150, lowAlch:1260, highAlch:1890, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15365} -{name:"Basket pack", itemDescription:"A pack of 50 noted baskets.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15366} -{name:"Empty sack pack", itemDescription:"A pack of 50 noted empty sacks.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15367} -{name:"Statue", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15368} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15369} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15370} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15371} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15372} -{name:"Roddeck's pipe", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15373} -{name:"Magnifying glass", itemDescription:"A tool for sleuths.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15374} -{name:"Raw turkey", itemDescription:"A raw turkey. (2008) A rather large raw turkey. (2009) A raw turkey. (2011)", shopValue:2, lowAlch:3, highAlch:5, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15375} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15376} -{name:"Dr nabanik", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15377} -{name:"Barrows icon", itemDescription:"An icon of an unknown deity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15378} -{name:"Heat globe", itemDescription:"In spite of its name it feels cold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15379} -{name:"Heat globe", itemDescription:"In spite of its name it feels cold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15380} -{name:"Heat globe", itemDescription:"In spite of its name it feels cold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15381} -{name:"Heat globe", itemDescription:"In spite of its name it feels cold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15382} -{name:"Imperfect heat globe", itemDescription:"This globe seems to have chucks of rock attached to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15383} -{name:"Heat globe", itemDescription:"In spite of its name it feels cold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15384} -{name:"Relic", itemDescription:" The assassin's plunder from the church on Entrana.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15385} -{name:"Frostenhorn", itemDescription:"Recovered from an icy foe.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15386} -{name:"Ruined backpack", itemDescription:"It's about to fall apart.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15387} -{name:"Battered letter", itemDescription:"It looks like it's had a few adventures of its own.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15388} -{name:"Experience lamp", itemDescription:"A mystical lamp engraved with scenes of city life.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15389} -{name:"Combat lamp", itemDescription:"A mystical lamp, engraved with scenes of carnage.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15390} -{name:"Ancient hymnal", itemDescription:"A tome of Zarosian curses.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15391} -{name:"Restoration certificate", itemDescription:"The certificate that Azzanadra asked you to procure.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15392} -{name:"Ali's pendant (1)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15393} -{name:"Ali's pendant (2)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15394} -{name:"Ali's pendant (3)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15395} -{name:"Ali's pendant (4)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15396} -{name:"Ali's pendant (5)", itemDescription:"An enchanted necklace.", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15397} -{name:"Ferocious ring (5)", itemDescription:"(5): It looks in pretty good condition. (4): It looks in pretty good condition. (3): It looks quite worn. (2): It looks pretty worn. (1): It looks like it's going to break soon.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15398} -{name:"Ferocious ring (4)", itemDescription:"(5): It looks in pretty good condition. (4): It looks in pretty good condition. (3): It looks quite worn. (2): It looks pretty worn. (1): It looks like it's going to break soon.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15399} -{name:"Ferocious ring (3)", itemDescription:"(5): It looks in pretty good condition. (4): It looks in pretty good condition. (3): It looks quite worn. (2): It looks pretty worn. (1): It looks like it's going to break soon.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15400} -{name:"Ferocious ring (2)", itemDescription:"(5): It looks in pretty good condition. (4): It looks in pretty good condition. (3): It looks quite worn. (2): It looks pretty worn. (1): It looks like it's going to break soon.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15401} -{name:"Ferocious ring (1)", itemDescription:"(5): It looks in pretty good condition. (4): It looks in pretty good condition. (3): It looks quite worn. (2): It looks pretty worn. (1): It looks like it's going to break soon.", shopValue:1275, lowAlch:510, highAlch:765, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15402} -{name:"Balmung", itemDescription:"A raiding axe from an island kingdom.", shopValue:225000, lowAlch:90000, highAlch:135000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 95.0, 80.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -3.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15403} -{name:"Prophecy tablet (lighthouse)", itemDescription:"This one was found in Silas's dream lighthouse.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15404} -{name:"Prophecy tablet (hatchery)", itemDescription:"This one was found by King Vargas in the dagannoth hatchery.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15405} -{name:"Prophecy tablet (lunar)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15406} -{name:"Prophecy tablet (caves)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15407} -{name:"Letter", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15408} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15409} -{name:"Ancient bones", itemDescription:"Bones are for burying.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15410} -{name:"Cook-o-matic manual", itemDescription:"Everything you've always wanted to know about the Cook-o-Matic 25.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15411} -{name:"Super large egg", itemDescription:"That is pretty big.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15412} -{name:"Top-quality milk", itemDescription:"The best milk from a prize-winning cow.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15413} -{name:"Extra fine flour", itemDescription:"The perfect flour for a perfect cake.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15414} -{name:"Black wool", itemDescription:"I think this came from a sheep.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15415} -{name:"Ball of black wool", itemDescription:"Spun from black wool.", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15416} -{name:"Stake hammer", itemDescription:"Specially made for driving stakes into vampyres.", shopValue:13, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15417} -{name:"Ice amulet(09)", itemDescription:"A spikey amulet made of ice crystals. It has been enchanted so it will not melt.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15418} -{name:"Bedsheets", itemDescription:"Crisp, cheap bedsheets.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15419} -{name:"Present", itemDescription:"Thanks for all your help! Love, Bob & Neite.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15420} -{name:"Chains", itemDescription:"Strong, though slightly rusty, iron chains.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15421} -{name:"Christmas ghost hood", itemDescription:"This hood has been hewn from bedsheets.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15422} -{name:"Christmas ghost top", itemDescription:"This robe top has been hewn from bedsheets and wrapped in chains.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15423} -{name:"Christmas ghost top", itemDescription:"This robe top has been hewn from bedsheets and wrapped in chains.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15424} -{name:"Christmas ghost bottoms", itemDescription:"These robe bottoms have been hewn from bedsheets and wrapped in chains.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15425} -{name:"Candy cane", itemDescription:"A must-have Christmas accessory.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15426} -{name:"Bucket of icy water", itemDescription:"It's a bucket of ice-cold water.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15427} -{name:"Turkey drumstick", itemDescription:"Mmmm, this looks tasty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15428} -{name:"Roast potatoes", itemDescription:"Mmm, these look good.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15429} -{name:"Yule log", itemDescription:"Yum, that looks scrumptious.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15430} -{name:"Mulled wine", itemDescription:"Nice, mulled wine.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15431} -{name:"Red cape", itemDescription:"A bright red cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15432} -{name:"Blue cape", itemDescription:"A thick blue cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15433} -{name:"Red cape", itemDescription:"A bright red cape.", shopValue:60000, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15434} -{name:"Blue cape", itemDescription:"A thick blue cape.", shopValue:60000, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15435} -{name:"Elemental fuel", itemDescription:"Looks to be mainly made from coal.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15436} -{name:"Stone slab", itemDescription:"A flawed block of obsidian from the Karamja volcano.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15437} -{name:"Penance trident", itemDescription:"A mage weapon made from the carcasses of Penance creatures.", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15438} -{name:"Penance horn", itemDescription:"An ornate horn with a fading inscription.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15439} -{name:"Penance master horn", itemDescription:"An ornate horn with a fading inscription.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15440} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:120001, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15441} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:120001, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15442} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:120001, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15443} -{name:"Abyssal whip", itemDescription:"A weapon from the Abyss.", shopValue:120001, lowAlch:48000, highAlch:75000, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15444} -{name:"Attacker lvl 1", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15445} -{name:"Attacker lvl 2", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15446} -{name:"Attacker lvl 3", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15447} -{name:"Attacker lvl 4", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15448} -{name:"Attacker lvl 5", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15449} -{name:"Collector lvl 1", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15450} -{name:"Collector lvl 2", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15451} -{name:"Collector lvl 3", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15452} -{name:"Collector lvl 4", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15453} -{name:"Collector lvl 5", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15454} -{name:"Defender lvl 1", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15455} -{name:"Defender lvl 2", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15456} -{name:"Defender lvl 3", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15457} -{name:"Defender lvl 4", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15458} -{name:"Defender lvl 5", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15459} -{name:"Healer lvl 1", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15460} -{name:"Healer lvl 2", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15461} -{name:"Healer lvl 3", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15462} -{name:"Healer lvl 4", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15463} -{name:"Healer lvl 5", itemDescription:"Your icon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15464} -{name:"Barbarian assault wave 2 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15465} -{name:"Barbarian assault wave 3 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15466} -{name:"Barbarian assault wave 4 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15467} -{name:"Barbarian assault wave 5 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15468} -{name:"Barbarian assault wave 6 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15469} -{name:"Barbarian assault wave 7 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15470} -{name:"Barbarian assault wave 8 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15471} -{name:"Barbarian assault wave 9 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15472} -{name:"Barbarian assault wave 10 ticket", itemDescription:"Grants access to wave [2-10].", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15473} -{name:"Blue cape", itemDescription:"A thick blue cape.", shopValue:0, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15474} -{name:"Combination runes", itemDescription:"", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15475} -{name:"Edvin's tool", itemDescription:"For making rune guardians.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15476} -{name:"Enchanted emerald", itemDescription:"An enchanted emerald.", shopValue:500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15477} -{name:"Guardian head", itemDescription:"The head of a rune guardian.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15478} -{name:"Guardian body", itemDescription:"The body of a rune guardian.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15479} -{name:"Guardian arms", itemDescription:"The arms of a rune guardian.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15480} -{name:"Guardian legs", itemDescription:"The legs of a rune guardian.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15481} -{name:"Rune essence", itemDescription:"An uncharged Rune Stone.", shopValue:1, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15482} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15483} -{name:"Orb of oculus", itemDescription:"An orb of mystical excellence.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, -20.0, -20.0, -20.0, -20.0, -20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15484} -{name:"Penance master trident", itemDescription:"A mage weapon made from the carcasses of Penance creatures (upgraded)", shopValue:130000, lowAlch:52000, highAlch:78000, isStackable:false, isNoteable:false, weight:31.0, bonuses:[63.0, -1.0, 28.0, 17.0, 0.0, 2.0, 3.0, 1.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15485} -{name:"Staff of light", itemDescription:"Humming with power. / Humming with power. It's also red/blue/yellow/green (Recoloured)", shopValue:95000, lowAlch:30000, highAlch:57000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[55.0, 70.0, 0.0, 17.0, 0.0, 0.0, 3.0, 2.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15486} -{name:"Staff of light", itemDescription:"Humming with power. / Humming with power. It's also red/blue/yellow/green (Recoloured)", shopValue:95000, lowAlch:30000, highAlch:57000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[55.0, 70.0, 0.0, 17.0, 0.0, 0.0, 3.0, 2.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15487} -{name:"Hexcrest", itemDescription:"It has quite a streamlined look to it.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 5.0, 5.0, 5.0, 5.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15488} -{name:"Hexcrest", itemDescription:"It has quite a streamlined look to it.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 5.0, 5.0, 5.0, 5.0, -5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15489} -{name:"Focus sight", itemDescription:"It looks like it'll help my aim.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 3.0, -5.0, -5.0, -5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15490} -{name:"Focus sight", itemDescription:"It looks like it'll help my aim.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 3.0, -5.0, -5.0, -5.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15491} -{name:"Full slayer helmet", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 3.0, 3.0, 30.0, 32.0, 27.0, 10.0, 30.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15492} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15493} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15494} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15495} -{name:"Full slayer helmet (e)", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 3.0, 3.0, 30.0, 32.0, 27.0, 10.0, 30.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15496} -{name:"Full slayer helmet (charged)", itemDescription:"You don't want to wear it inside-out.", shopValue:650, lowAlch:260, highAlch:390, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 3.0, 3.0, 30.0, 32.0, 27.0, 10.0, 30.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15497} -{name:"Desert strykewyrm", itemDescription:"I dread to think of how many of these are in the sand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15498} -{name:"Jungle strykewyrm", itemDescription:"Who said worms were small and harmless?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15499} -{name:"Ice strykewyrm", itemDescription:"Now that's just cold.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15500} -{name:"Box of summoning ingredients", itemDescription:"Open the box and find summoning pouch components.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15501} -{name:"Staff of light", itemDescription:"Humming with power. / Humming with power. It's also red/blue/yellow/green (Recoloured)", shopValue:0, lowAlch:30000, highAlch:57000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[55.0, 70.0, 0.0, 17.0, 0.0, 0.0, 3.0, 2.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15502} -{name:"Royal shirt", itemDescription:"The shirt of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15503} -{name:"Royal shirt", itemDescription:"The shirt of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15504} -{name:"Royal leggings", itemDescription:"The leggings of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15505} -{name:"Royal leggings", itemDescription:"The leggings of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15506} -{name:"Royal sceptre", itemDescription:"The sceptre of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15507} -{name:"Royal sceptre", itemDescription:"The sceptre of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15508} -{name:"Royal crown", itemDescription:"The crown of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15509} -{name:"Royal crown", itemDescription:"The crown of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15510} -{name:"Royal amulet", itemDescription:"The amulet of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15511} -{name:"Royal amulet", itemDescription:"The amulet of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15512} -{name:"Spirit impling jar", itemDescription:"Spirit impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15513} -{name:"Spirit impling jar", itemDescription:"Spirit impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15514} -{name:"Zombie impling jar", itemDescription:"Zombie impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15515} -{name:"Zombie impling jar", itemDescription:"Zombie impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15516} -{name:"Kingly impling jar", itemDescription:"Kingly impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15517} -{name:"Kingly impling jar", itemDescription:"Kingly impling in a jar.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15518} -{name:"Royal shirt", itemDescription:"The shirt of royalty!", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15519} -{name:"Statue list", itemDescription:"A list of the pieces I've added to the statue in Varrock Museum.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15520} -{name:"Statue plinth", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15521} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15522} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15523} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15524} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15525} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15526} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15527} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15528} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15529} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15530} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15531} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15532} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15533} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15534} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15535} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15536} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15537} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15538} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15539} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15540} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15541} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15542} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15543} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15544} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15545} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15546} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15547} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15548} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15549} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15550} -{name:"Strange rock", itemDescription:"Various (see below)", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15551} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15552} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15553} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15554} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15555} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15556} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15557} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15558} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15559} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15560} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15561} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15562} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15563} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15564} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15565} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15566} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15567} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15568} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15569} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15570} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15571} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15572} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15573} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15574} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15575} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15576} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15577} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15578} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15579} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15580} -{name:"Replica statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15581} -{name:"Statue piece", itemDescription:"An intricately carved replica statue piece.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15582} -{name:"Statue", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15583} -{name:"Jade demon statuette", itemDescription:"An ornate statuette of a demon holding a large jade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15584} -{name:"Topaz demon statuette", itemDescription:"An ornate statuette of a demon holding a large topaz.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15585} -{name:"Sapphire demon statuette", itemDescription:"An ornate statuette of a demon holding a large sapphire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15586} -{name:"Emerald demon statuette", itemDescription:"An ornate statuette of a demon holding a large emerald.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15587} -{name:"Ruby demon statuette", itemDescription:"An ornate statuette of a demon holding a large ruby.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15588} -{name:"Diamond demon statuette", itemDescription:"An ornate statuette of a demon holding a large diamond.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15589} -{name:"Mask of dragith nurn", itemDescription:"The mask of the undead necromancer Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15590} -{name:"Mask part 1", itemDescription:"One of five parts of the Mask of Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15591} -{name:"Mask part 2", itemDescription:"One of five parts of the Mask of Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15592} -{name:"Mask part 3", itemDescription:"One of five parts of the Mask of Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15593} -{name:"Mask part 4", itemDescription:"One of five parts of the Mask of Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15594} -{name:"Mask part 5", itemDescription:"One of five parts of the Mask of Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15595} -{name:"Reese's sword", itemDescription:"Old, battered, and not very sharp.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 4.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15596} -{name:"Kayle's sling", itemDescription:"A brightly coloured sling.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15597} -{name:"Caitlin's staff", itemDescription:"A spell casting aid; barely more than an ornamental stick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 11.0, 0.0, 2.0, 2.0, 1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15598} -{name:"Helmet of trials", itemDescription:"A helmet of epic accomplishment for a hero with 300 Quest Points.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15599} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15600} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15601} -{name:"Infinity hat", itemDescription:"A mystic hat.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15602} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15603} -{name:"Infinity bottoms", itemDescription:"Mystical robes.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 17.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15604} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15605} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15606} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15607} -{name:"Infinity hat", itemDescription:"A mystic hat.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15608} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15609} -{name:"Infinity bottoms", itemDescription:"Mystical robes.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 17.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15610} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15611} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15612} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15613} -{name:"Infinity hat", itemDescription:"A mystic hat.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15614} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15615} -{name:"Infinity bottoms", itemDescription:"Mystical robes.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 17.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15616} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15617} -{name:"Infinity top", itemDescription:"Mystical robes.", shopValue:140000, lowAlch:56000, highAlch:84000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 20.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15618} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15619} -{name:"Infinity hat", itemDescription:"A mystic hat.", shopValue:17000, lowAlch:6800, highAlch:10200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15620} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15621} -{name:"Infinity bottoms", itemDescription:"Mystical robes.", shopValue:90000, lowAlch:36000, highAlch:54000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 17.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 17.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15622} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15623} -{name:"Helmet of trials", itemDescription:"A helmet of epic accomplishment for a hero with 300 Quest Points.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15624} -{name:"Mask of dragith nurn", itemDescription:"The mask of the undead necromancer Dragith Nurn.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15625} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15626} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15627} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15628} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15629} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15630} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15631} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15632} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15633} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15634} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15635} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15636} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15637} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15638} -{name:"Rune guardian", itemDescription:"A rune guardian from the Mage Training Arena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15639} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15640} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15641} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15642} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15643} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15644} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15645} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15646} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15647} -{name:"Fish flingers scorecard", itemDescription:"Contains details about your Fish Flingers results.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15648} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15649} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15650} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15651} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15652} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15653} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15654} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15655} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15656} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15657} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15658} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15659} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15660} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15661} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15662} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15663} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15664} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15665} -{name:"Beginner's tackle box", itemDescription:"Stores fishing equipment and bait.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15666} -{name:"Basic tackle box", itemDescription:"Stores fishing equipment and bait", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15667} -{name:"Standard tackle box", itemDescription:"Stores fishing equipment and bait.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15668} -{name:"Professional tackle box", itemDescription:"Stores fishing equipment, bait and gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15669} -{name:"Champion's tackle box", itemDescription:"Stores fishing equipment, bait, and gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15670} -{name:"Manual", itemDescription:"Looks like some kind of manual.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15671} -{name:"Roddeck's diary", itemDescription:"The diary of an elderly gentleman with eccentric habits.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15672} -{name:"Squirrel ears", itemDescription:"A lovely set of squirrel ears.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15673} -{name:"Delivery box", itemDescription:"You can check on your delivery details here", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15674} -{name:"Delivery map", itemDescription:"A map of RuneScape with three locations marked upon it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15675} -{name:"Clean cog", itemDescription:"Looks like this might fit onto the oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15676} -{name:"Clean pipe", itemDescription:"It looks clean. (2009)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15677} -{name:"Clean pistons", itemDescription:"Looks like this might fit onto the oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15678} -{name:"Dirty cog", itemDescription:"Looks like this might fit onto the oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15679} -{name:"Dirty pipe", itemDescription:"Looks like this might fit onto the oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15680} -{name:"Dirty pistons", itemDescription:"Looks like these might fit onto the oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15681} -{name:"Glaze crate", itemDescription:"A create filled with coloured glazes", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15682} -{name:"Glaze colour wheel", itemDescription:"Unknown", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15683} -{name:"Vial of red glaze", itemDescription:"A vial of red glaze.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15684} -{name:"Vial of yellow glaze", itemDescription:"A vial of yellow glaze.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15685} -{name:"Vial of blue glaze", itemDescription:"A vial of blue glaze.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15686} -{name:"Bowl", itemDescription:"Useful for mixing things.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15687} -{name:"Bowl of black mess", itemDescription:"A black sticky mess.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15688} -{name:"Bowl of blue glaze", itemDescription:"It's a bowl of sticky blue glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15689} -{name:"Bowl of red glaze", itemDescription:"It's a bowl of sticky red glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15690} -{name:"Bowl of yellow glaze", itemDescription:"It's a bowl of sticky yellow glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15691} -{name:"Bowl of orange glaze", itemDescription:"It's a bowl of sticky orange glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15692} -{name:"Bowl of green glaze", itemDescription:"It's a bowl of sticky green glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15693} -{name:"Bowl of purple glaze", itemDescription:"It's a bowl of sticky purple glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15694} -{name:"Bowl of vermillion glaze", itemDescription:"It's a bowl of sticky vermillion glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15695} -{name:"Bowl of amber glaze", itemDescription:"It's a bowl of sticky amber glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15696} -{name:"Bowl of chartreuse glaze", itemDescription:"It's a bowl of sticky chartreuse glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15697} -{name:"Bowl of aquamarine glaze", itemDescription:"It's a bowl of sticky aquamarine glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15698} -{name:"Bowl of indigo glaze", itemDescription:"It's a bowl of sticky indigo glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15699} -{name:"Bowl of magenta glaze", itemDescription:"It's a bowl of sticky magenta glaze.", shopValue:4, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15700} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:120002, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15701} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:120002, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15702} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:120002, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15703} -{name:"Dark bow", itemDescription:"A bow from a darker dimension.", shopValue:120002, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15704} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15705} -{name:"Dungeoneering cape", itemDescription:"The cape worn by veterans of Daemonheim.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15706} -{name:"Ring of kinship", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15707} -{name:"Mysterious chronicle (part 1)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15708} -{name:"Mysterious chronicle (part 2)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15709} -{name:"Mysterious chronicle (part 3)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15710} -{name:"Mysterious chronicle (part 4)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15711} -{name:"Mysterious chronicle (part 5)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15712} -{name:"Mysterious chronicle (part 6)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15713} -{name:"Mysterious chronicle (part 7)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15714} -{name:"Mysterious chronicle (part 8)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15715} -{name:"Mysterious chronicle (part 9)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15716} -{name:"Mysterious chronicle (part 10)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15717} -{name:"Mysterious chronicle (part 11)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15718} -{name:"Mysterious chronicle (part 12)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15719} -{name:"Mysterious chronicle (part 13)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15720} -{name:"Mysterious chronicle (part 14)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15721} -{name:"Mysterious chronicle (part 15)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15722} -{name:"Mysterious chronicle (part 16)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15723} -{name:"Mysterious chronicle (part 17)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15724} -{name:"Mysterious chronicle (part 18)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15725} -{name:"Astea frostweb's journal", itemDescription:"A very old journal.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15726} -{name:"Troll scrawlings", itemDescription:"This was written by a troll.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15727} -{name:"Behemoth notes (part 1)", itemDescription:"An unknown mage's notes on the behemoths.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15728} -{name:"Environmental effects (part 1)", itemDescription:"An unknown mage's notes on the environmental effects of the area.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15729} -{name:"Stalker notes (part 1)", itemDescription:"An unknown mage's notes on the stalkers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15730} -{name:"Kal'gerion notes (part 1)", itemDescription:"An unknown mage's notes on the Kal'Gerion demons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15731} -{name:"Divine skinweaver's journal", itemDescription:"The personal journal of a gorajo skinweaver.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15732} -{name:"Hobgoblin scrawlings", itemDescription:"This was written by a hobgoblin.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15733} -{name:"Behemoth notes (part 2)", itemDescription:"An unknown mage's notes on the behemoths.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15734} -{name:"The price of betrayal", itemDescription:"This is written in blood.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15735} -{name:"Equipment requisition receipts", itemDescription:"These look quite recent.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15736} -{name:"Behemoth notes (part 3)", itemDescription:"An unknown mage's notes on the behemoths.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15737} -{name:"Kal'gerion notes (part 2)", itemDescription:"An unknown mage's notes on the Kal'Gerion demons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15738} -{name:"Lexicus runewright's journal", itemDescription:"A very old journal.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15739} -{name:"Ammunition requisition orders", itemDescription:"Orders from a sagittare officer.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15740} -{name:"Stalker notes (part 2)", itemDescription:"An unknown mage's notes on the stalkers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15741} -{name:"Stalker notes (part 3)", itemDescription:"An unknown mage's notes on the stalkers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15742} -{name:"Kal'gerion notes (part 3)", itemDescription:"An unknown mage's notes on the Kal'Gerion demons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15743} -{name:"M. and thok letter (part 1)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15744} -{name:"M. and thok letter (part 2)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15745} -{name:"M. and thok letter (part 3)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15746} -{name:"M. and thok letter (part 4)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15747} -{name:"M. and thok letter (part 5)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15748} -{name:"M. and thok letter (part 6)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15749} -{name:"Blue power crystal", itemDescription:"Used to power some ancient device.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15750} -{name:"Green power crystal", itemDescription:"Used to power some ancient device.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15751} -{name:"Red power crystal", itemDescription:"Used to power some ancient device.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15752} -{name:"Novite battleaxe", itemDescription:"A vicious-looking axe. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 13.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15753} -{name:"Novite battleaxe", itemDescription:"A vicious-looking axe. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 13.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15754} -{name:"Bathus battleaxe", itemDescription:"A vicious-looking axe. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 22.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15755} -{name:"Bathus battleaxe", itemDescription:"A vicious-looking axe. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 22.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15756} -{name:"Marmaros battleaxe", itemDescription:"A vicious-looking axe. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 36.0, 33.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15757} -{name:"Marmaros battleaxe", itemDescription:"A vicious-looking axe. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 36.0, 33.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15758} -{name:"Kratonite battleaxe", itemDescription:"A vicious-looking axe. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 51.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15759} -{name:"Kratonite battleaxe", itemDescription:"A vicious-looking axe. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 51.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15760} -{name:"Fractite battleaxe", itemDescription:"A vicious looking axe. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[2.0, 63.0, 59.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15761} -{name:"Fractite battleaxe", itemDescription:"A vicious looking axe. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:27.0, bonuses:[2.0, 63.0, 59.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15762} -{name:"Zephyrium battleaxe", itemDescription:"A vicious-looking axe. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 69.0, 64.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15763} -{name:"Zephyrium battleaxe", itemDescription:"A vicious-looking axe. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 69.0, 64.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15764} -{name:"Argonite battleaxe", itemDescription:"A vicious-looking axe. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 78.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15765} -{name:"Argonite battleaxe", itemDescription:"A vicious-looking axe. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 78.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15766} -{name:"Katagon battleaxe", itemDescription:"A vicious-looking axe. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 86.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 103.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15767} -{name:"Katagon battleaxe", itemDescription:"A vicious-looking axe. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 86.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 103.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15768} -{name:"Gorgonite battleaxe", itemDescription:"A vicious-looking axe. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 96.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 121.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15769} -{name:"Gorgonite battleaxe", itemDescription:"A vicious-looking axe. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 96.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 121.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15770} -{name:"Promethium battleaxe", itemDescription:"A vicious-looking axe. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 105.0, 99.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15771} -{name:"Promethium battleaxe", itemDescription:"A vicious-looking axe. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-2.0, 105.0, 99.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15772} -{name:"Primal battleaxe", itemDescription:"A vicious-looking axe. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-2.0, 112.0, 106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 140.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15773} -{name:"Primal battleaxe", itemDescription:"A vicious-looking axe. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-2.0, 112.0, 106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 140.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15774} -{name:"Tangle gum shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 1)", shopValue:0, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15775} -{name:"Seeping elm shortbow (b)", itemDescription:"A small bow, only effective at a short distance. (Tier 2)", shopValue:0, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15776} -{name:"Blood spindle shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 3)", shopValue:0, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15777} -{name:"Utuku shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 4)", shopValue:0, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15778} -{name:"Spinebeam shortbow (b)", itemDescription:"A small bow, only effective at a short distance. (Tier 5)", shopValue:0, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15779} -{name:"Bovistrangler shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 6)", shopValue:0, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15780} -{name:"Thigat shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 7)", shopValue:0, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15781} -{name:"Corpsethorn shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 8)", shopValue:0, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15782} -{name:"Entgallow shortbow (b)", itemDescription:"A small bow, only effective at short distances. (Tier 9)", shopValue:0, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15783} -{name:"Grave creeper shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 10)", shopValue:0, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15784} -{name:"Sagittarian shortbow (b)", itemDescription:"A small bow, only effective at short distance. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15785} -{name:"Salve shoes (b)", itemDescription:"Magically charged shoes. (Tier 1)", shopValue:0, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15786} -{name:"Wildercress shoes (b)", itemDescription:"Magically charged shoes (Tier 2)", shopValue:0, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 2.0, 1.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15787} -{name:"Blightleaf shoes (b)", itemDescription:"Magically charged shoes. (Tier 3)", shopValue:0, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 3.0, 2.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15788} -{name:"Roseblood shoes (b)", itemDescription:"Magically charged shoes. (Tier 4)", shopValue:0, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 2.0, -2.0, 4.0, 3.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15789} -{name:"Bryll shoes (b)", itemDescription:"Magically charged shoes. (Tier 5)", shopValue:0, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 3.0, -2.0, 5.0, 4.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15790} -{name:"Duskweed shoes (b)", itemDescription:"Magically charged shoes. (Tier 6)", shopValue:0, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 4.0, -2.0, 6.0, 5.0, 11.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15791} -{name:"Soulbell shoes (b)", itemDescription:"Magically charged shoes. (Tier 7)", shopValue:0, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 5.0, -2.0, 7.0, 6.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15792} -{name:"Ectoshoes (b)", itemDescription:"Magically charged shoes. (Tier 8)", shopValue:0, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 6.0, -2.0, 8.0, 7.0, 15.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15793} -{name:"Runic shoes (b)", itemDescription:"Magically charged shoes. (Tier 9)", shopValue:0, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 7.0, -2.0, 9.0, 8.0, 17.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15794} -{name:"Spiritbloom shoes (b)", itemDescription:"Magically charged shoes. (Tier 10)", shopValue:0, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 8.0, -2.0, 10.0, 9.0, 19.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15795} -{name:"Celestial shoes (b)", itemDescription:"Magically charged shoes. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 9.0, -2.0, 11.0, 10.0, 21.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15796} -{name:"Salve robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 1)", shopValue:0, lowAlch:336, highAlch:504, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 1.0, -5.0, 3.0, 2.0, 4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15797} -{name:"Wildercress robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 2)", shopValue:0, lowAlch:816, highAlch:1224, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 3.0, -5.0, 6.0, 4.0, 8.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15798} -{name:"Blightleaf robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 3)", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 4.0, -5.0, 9.0, 6.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15799} -{name:"Roseblood robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 4)", shopValue:0, lowAlch:2112, highAlch:3168, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 5.0, -5.0, 12.0, 8.0, 16.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15800} -{name:"Bryll robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 5)", shopValue:0, lowAlch:2928, highAlch:4392, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 7.0, -5.0, 16.0, 10.0, 21.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15801} -{name:"Duskweed robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 6)", shopValue:0, lowAlch:3408, highAlch:5112, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 11.0, -5.0, 20.0, 12.0, 26.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15802} -{name:"Soulbell robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 7)", shopValue:0, lowAlch:4272, highAlch:6408, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 13.0, -5.0, 24.0, 15.0, 31.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15803} -{name:"Ectorobe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 8)", shopValue:0, lowAlch:4848, highAlch:7272, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 15.0, -5.0, 28.0, 18.0, 36.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15804} -{name:"Runic robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 9)", shopValue:0, lowAlch:5520, highAlch:8280, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 17.0, -5.0, 32.0, 22.0, 41.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15805} -{name:"Spiritbloom robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 10)", shopValue:0, lowAlch:6528, highAlch:9792, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 19.0, -5.0, 36.0, 25.0, 46.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15806} -{name:"Celestial robe bottom (b)", itemDescription:"The lower half of a magical robe. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 21.0, -5.0, 40.0, 29.0, 51.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15807} -{name:"Novite kiteshield (b)", itemDescription:"A large metal shield. (Tier 1)", shopValue:0, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 5.0, 10.0, 8.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15808} -{name:"Bathus kiteshield (b)", itemDescription:"A large metal shield. (Tier 2)", shopValue:0, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 9.0, 18.0, 15.0, -1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15809} -{name:"Marmaros kiteshield (b)", itemDescription:"A large metal shield. (Tier 3)", shopValue:0, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 16.0, 28.0, 23.0, -1.0, -24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15810} -{name:"Kratonite kiteshield (b)", itemDescription:"A large metal shield. (Tier 4)", shopValue:0, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 22.0, 38.0, 31.0, -1.0, 33.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15811} -{name:"Fractite kiteshield (b)", itemDescription:"A large metal shield. (Tier 5)", shopValue:0, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 49.0, 40.0, -1.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15812} -{name:"Zephyrium kiteshield (b)", itemDescription:"A large metal shield. (Tier 6)", shopValue:0, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 35.0, 61.0, 50.0, -1.0, 52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15813} -{name:"Argonite kiteshield (b)", itemDescription:"A large metal shield. (Tier 7)", shopValue:0, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 42.0, 73.0, 60.0, -1.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15814} -{name:"Katagon kiteshield (b)", itemDescription:"A large metal shield. (Tier 8)", shopValue:0, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 49.0, 85.0, 70.0, -1.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15815} -{name:"Gorgonite kiteshield (b)", itemDescription:"A large metal shield. (Tier 9)", shopValue:0, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 56.0, 98.0, 81.0, -1.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15816} -{name:"Promethium kiteshield (b)", itemDescription:"A large metal shield. (Tier 10)", shopValue:0, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 63.0, 111.0, 92.0, -1.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15817} -{name:"Primal kiteshield (b)", itemDescription:"A large metal shield. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 70.0, 123.0, 102.0, -1.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15818} -{name:"Silver precision bracelet (b)", itemDescription:"A magically enhanced silver bracelet.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[4.0, 7.0, 7.0, 3.0, 3.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15819} -{name:"Golden precision bracelet (b)", itemDescription:"A magically enhanced gold bracelet.", shopValue:0, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:1.0, bonuses:[12.0, 17.0, 17.0, 5.0, 5.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15820} -{name:"Sunstriker boots (b)", itemDescription:"Boots that boost combat performance.", shopValue:0, lowAlch:520, highAlch:780, isStackable:false, isNoteable:false, weight:36.0, bonuses:[1.0, 1.0, 1.0, 0.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15821} -{name:"Marksman boots (b)", itemDescription:"Boots that greatly boost combat performance.", shopValue:0, lowAlch:1116, highAlch:1674, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 0.0, 6.0, 6.0, 6.0, 7.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15822} -{name:"Incantor's boots (b)", itemDescription:"A pair of light boots made for agile spellcasters.", shopValue:0, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:4.0, bonuses:[1.0, 1.0, 1.0, 2.0, 0.0, 5.0, 4.0, 8.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15823} -{name:"Sorcerer's boots (b)", itemDescription:"A superior pair of light boots made for agile spellcasters.", shopValue:0, lowAlch:1184, highAlch:1776, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 5.0, 0.0, 7.0, 6.0, 13.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15824} -{name:"Flameburst defender (b)", itemDescription:"A fiery off-hand dagger.", shopValue:0, lowAlch:2540, highAlch:3810, isStackable:false, isNoteable:false, weight:1.0, bonuses:[9.0, 6.0, 5.0, 3.0, -2.0, 5.0, 9.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15825} -{name:"Frostbite dagger (b)", itemDescription:"A dagger made out of enchanted ice.", shopValue:0, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[32.0, 14.0, -4.0, 4.0, -2.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15826} -{name:"Hailstorm dagger (b)", itemDescription:"A dagger made out of enchanted ice, covered in sharp frost shards.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[50.0, 21.0, -4.0, 8.0, -2.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15827} -{name:"Shadow silk hood (b)", itemDescription:"A hood that cloaks the wearer from humanoids.", shopValue:0, lowAlch:3400, highAlch:5100, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 6.0, 6.0, 10.0, 7.0, 14.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15828} -{name:"Absorption boots (b)", itemDescription:"A pair of boots with high magical resistance.", shopValue:0, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 5.0, 5.0, 5.0, 4.0, 18.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15829} -{name:"Grounding boots (b)", itemDescription:"A pair of boots with very high magical resistance.", shopValue:0, lowAlch:2160, highAlch:3240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 8.0, 8.0, 8.0, 7.0, 30.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15830} -{name:"Protector's ward (b)", itemDescription:"A magical shield.", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 53.0, 62.0, 22.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15831} -{name:"Guardian's ward (b)", itemDescription:"A superior magical shield.", shopValue:0, lowAlch:8280, highAlch:12420, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 72.0, 84.0, 44.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15832} -{name:"Seeker's charm (b)", itemDescription:"A pulsating eye attached to a necklace.", shopValue:0, lowAlch:2320, highAlch:3480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-3.0, -3.0, -3.0, 10.0, 15.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, -4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15833} -{name:"Blood necklace (b)", itemDescription:"There is a glowing, red drop hanging from the necklace.", shopValue:0, lowAlch:4220, highAlch:6330, isStackable:false, isNoteable:false, weight:1.0, bonuses:[11.0, 11.0, 11.0, 8.0, 8.0, 11.0, 11.0, 11.0, 8.0, 8.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15834} -{name:"Doomcore staff (b)", itemDescription:"It has been cursed with dark energies, clouding the mind of the wielder.", shopValue:0, lowAlch:4380, highAlch:6570, isStackable:false, isNoteable:false, weight:6.0, bonuses:[-5.0, -5.0, -5.0, -10.0, -5.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 0.0, -5.0, 0.0, 0.0, 25.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15835} -{name:"Hexhunter bow (b)", itemDescription:"It is stronger against targets with magical powers.", shopValue:0, lowAlch:4380, highAlch:6570, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -2.0, 45.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15836} -{name:"Salve robe top (b)", itemDescription:"The upper half of a magical robe. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 2.0, -7.0, 4.0, 3.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15837} -{name:"Wildercress robe top (b)", itemDescription:"The upper half of a magical robe (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 4.0, -7.0, 8.0, 5.0, 11.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15838} -{name:"Blightleaf robe top (b)", itemDescription:"The upper half of a magical robe. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 6.0, -7.0, 12.0, 8.0, 17.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15839} -{name:"Roseblood robe top (b)", itemDescription:"The upper half of a magic robe. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 8.0, -7.0, 16.0, 11.0, 23.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15840} -{name:"Bryll robe top (b)", itemDescription:"The upper half of a magical robe (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 11.0, -7.0, 21.0, 14.0, 30.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15841} -{name:"Duskweed robe top (b)", itemDescription:"The upper half of a magical robe (Tier 6).", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 17.0, -7.0, 26.0, 17.0, 37.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15842} -{name:"Soulbell robe top (b)", itemDescription:"The upper half of a magical robe. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 20.0, -7.0, 31.0, 21.0, 44.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15843} -{name:"Ectorobe top (b)", itemDescription:"The upper half of a magical robe. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 23.0, -7.0, 36.0, 25.0, 51.0, 23.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15844} -{name:"Runic robe top (b)", itemDescription:"The upper half of a magical robe. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 27.0, -7.0, 51.0, 30.0, 59.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15845} -{name:"Spiritbloom robe top (b)", itemDescription:"The upper half of a magical robe. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 30.0, -7.0, 46.0, 34.0, 67.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15846} -{name:"Celestial robe top (b)", itemDescription:"The upper half of a magical robe. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-7.0, -7.0, -7.0, 34.0, -7.0, 51.0, 38.0, 75.0, 34.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15847} -{name:"Novite dagger (b)", itemDescription:"Short but pointy. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15848} -{name:"Novite dagger (p) (b)", itemDescription:"Short but pointy. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15849} -{name:"Novite dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15850} -{name:"Novite dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15851} -{name:"Bathus dagger (b)", itemDescription:"Short but pointy. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15852} -{name:"Bathus dagger (p) (b)", itemDescription:"Short but pointy. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15853} -{name:"Bathus dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15854} -{name:"Bathus dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15855} -{name:"Marmaros dagger (b)", itemDescription:"Short but pointy. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15856} -{name:"Marmaros dagger (p) (b)", itemDescription:"Short but pointy. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15857} -{name:"Marmaros dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15858} -{name:"Marmaros dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15859} -{name:"Kratonite dagger (b)", itemDescription:"Short but pointy. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15860} -{name:"Kratonite dagger (p) (b)", itemDescription:"Short but pointy. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15861} -{name:"Kratonite dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15862} -{name:"Kratonite dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15863} -{name:"Fractite dagger (b)", itemDescription:"Short but pointy. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15864} -{name:"Fractite dagger (p) (b)", itemDescription:"Short but pointy. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15865} -{name:"Fractite dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15866} -{name:"Fractite dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15867} -{name:"Zephyrium dagger (b)", itemDescription:"Short but pointy. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15868} -{name:"Zephyrium dagger (p) (b)", itemDescription:"Short but pointy. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15869} -{name:"Zephyrium dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15870} -{name:"Zephyrium dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15871} -{name:"Argonite dagger (b)", itemDescription:"Short but pointy. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15872} -{name:"Argonite dagger (p) (b)", itemDescription:"Short but pointy. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15873} -{name:"Argonite dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15874} -{name:"Argonite dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15875} -{name:"Katagon dagger (b)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15876} -{name:"Katagon dagger (p) (b)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15877} -{name:"Katagon dagger (p+) (b)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15878} -{name:"Katagon dagger (p++) (b)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15879} -{name:"Gorgonite dagger (b)", itemDescription:"Short but pointy. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15880} -{name:"Gorgonite dagger (p) (b)", itemDescription:"Short but pointy. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15881} -{name:"Gorgonite dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15882} -{name:"Gorgonite dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15883} -{name:"Promethium dagger (b)", itemDescription:" The blade is dripping with poison.", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15884} -{name:"Promethium dagger (p) (b)", itemDescription:" The blade is dripping with poison.", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15885} -{name:"Promethium dagger (p+) (b)", itemDescription:" The blade is dripping with poison.", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15886} -{name:"Promethium dagger (p++) (b)", itemDescription:" The blade is dripping with poison.", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15887} -{name:"Primal dagger (b)", itemDescription:"Short but pointy. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15888} -{name:"Primal dagger (p) (b)", itemDescription:"Short but pointy. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15889} -{name:"Primal dagger (p+) (b)", itemDescription:"Short but pointy. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15890} -{name:"Primal dagger (p++) (b)", itemDescription:"Short but pointy. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15891} -{name:"Salve hood (b)", itemDescription:"A hood worn by mages. (Tier 1)", shopValue:0, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 1.0, -3.0, 1.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15892} -{name:"Wildercress hood (b)", itemDescription:"A hood worn by mages. (Tier 2)", shopValue:0, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 1.0, -3.0, 2.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15893} -{name:"Blightleaf hood (b)", itemDescription:"A hood worn by mages. (Tier 3)", shopValue:0, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 2.0, -3.0, 4.0, 3.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15894} -{name:"Roseblood hood (b)", itemDescription:"A hood worn by mages. (Tier 4)", shopValue:0, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 2.0, -3.0, 5.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15895} -{name:"Bryll hood (b)", itemDescription:"A hood worn by mages. (Tier 5)", shopValue:0, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 4.0, -3.0, 6.0, 5.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15896} -{name:"Duskweed hood (b)", itemDescription:"A hood worn by mages. (Tier 6)", shopValue:0, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 6.0, -3.0, 7.0, 5.0, 11.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15897} -{name:"Soulbell hood (b)", itemDescription:"A hood worn by mages. (Tier 7)", shopValue:0, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 7.0, -3.0, 8.0, 6.0, 13.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15898} -{name:"Ectohood (b)", itemDescription:"A hood worn by mages. (Tier 8)", shopValue:0, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 8.0, -3.0, 9.0, 7.0, 15.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15899} -{name:"Runic hood (b)", itemDescription:"A hood worn by mages. (Tier 9)", shopValue:0, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 10.0, -3.0, 10.0, 8.0, 17.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15900} -{name:"Spiritbloom hood (b)", itemDescription:"A hood worn by mages. (Tier 10)", shopValue:0, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 11.0, -3.0, 12.0, 10.0, 19.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15901} -{name:"Celestial hood (b)", itemDescription:"A hood worn by mages. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[-3.0, -3.0, -3.0, 13.0, -3.0, 14.0, 11.0, 21.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15902} -{name:"Tangle gum longbow (b)", itemDescription:"A sturdy longbow. (Tier 1)", shopValue:0, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15903} -{name:"Seeping elm longbow (b)", itemDescription:"A sturdy longbow. (Tier 2)", shopValue:0, lowAlch:440, highAlch:660, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15904} -{name:"Blood spindle longbow (b)", itemDescription:"A sturdy longbow. (Tier 3)", shopValue:0, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15905} -{name:"Utuku longbow (b)", itemDescription:"A sturdy longbow. (Tier 4)", shopValue:0, lowAlch:1144, highAlch:1716, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 59.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15906} -{name:"Spinebeam longbow (b)", itemDescription:"A sturdy longbow. (tier 5)", shopValue:0, lowAlch:1584, highAlch:2376, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15907} -{name:"Bovistrangler longbow (b)", itemDescription:"A sturdy longbow. (Tier 6)", shopValue:0, lowAlch:1844, highAlch:2766, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 81.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15908} -{name:"Thigat longbow (b)", itemDescription:"A sturdy longbow. (Tier 7)", shopValue:0, lowAlch:2312, highAlch:3468, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15909} -{name:"Corpsethorn longbow (b)", itemDescription:"A sturdy longbow. (Tier 8)", shopValue:0, lowAlch:2624, highAlch:3936, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 108.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15910} -{name:"Entgallow longbow (b)", itemDescription:"A sturdy longbow. (Tier 9)", shopValue:0, lowAlch:2988, highAlch:4482, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15911} -{name:"Grave creeper longbow (b)", itemDescription:"A sturdy longbow. (Tier 10)", shopValue:0, lowAlch:3536, highAlch:5304, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 138.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15912} -{name:"Sagittarian longbow (b)", itemDescription:"A sturdy longbow.", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 158.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15913} -{name:"Novite full helm (b)", itemDescription:"A full face helmet. (Tier 1)", shopValue:0, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 5.0, 6.0, 3.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15914} -{name:"Bathus full helm (b)", itemDescription:"A full face helmet. (Tier 2)", shopValue:0, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 11.0, 6.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15915} -{name:"Marmaros full helm (b)", itemDescription:"A full face helmet. (Tier 3)", shopValue:0, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 17.0, 19.0, 10.0, -1.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15916} -{name:"Kratonite full helm (b)", itemDescription:"A full face helmet. (Tier 4)", shopValue:0, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 23.0, 26.0, 14.0, -1.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15917} -{name:"Fractite full helm (b)", itemDescription:"A full face helmet. (Tier 5)", shopValue:0, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 29.0, 33.0, 18.0, -1.0, 31.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15918} -{name:"Zephyrium full helm (b)", itemDescription:"A full face helmet. (Tier 6)", shopValue:0, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 36.0, 41.0, 22.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15919} -{name:"Argonite full helm (b)", itemDescription:"A full face helmet. (Tier 7)", shopValue:0, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 43.0, 49.0, 26.0, -1.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15920} -{name:"Katagon full helm (b)", itemDescription:"A full face helmet. (Tier 8)", shopValue:0, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 57.0, 30.0, -1.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15921} -{name:"Gorgonite full helm (b)", itemDescription:"A full face helmet. (Tier 9)", shopValue:0, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 58.0, 66.0, 35.0, -1.0, 61.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15922} -{name:"Promethium full helm (b)", itemDescription:"A full face helmet. (Tier 10)", shopValue:0, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 67.0, 75.0, 41.0, -1.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15923} -{name:"Primal full helm (b)", itemDescription:"A full face helmet. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 74.0, 83.0, 46.0, -1.0, 77.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15924} -{name:"Novite platelegs (b)", itemDescription:"These look pretty heavy. (Tier 1)", shopValue:0, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 16.0, 13.0, 7.0, -4.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15925} -{name:"Bathus platelegs (b)", itemDescription:"These look pretty heavy. (Tier 2)", shopValue:0, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 30.0, 25.0, 13.0, -4.0, 28.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15926} -{name:"Marmaros platelegs (b)", itemDescription:"These look pretty heavy. (Tier 3)", shopValue:0, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 43.0, 36.0, 20.0, -4.0, 41.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15927} -{name:"Kratonite platelegs (b)", itemDescription:"These look pretty heavy. (Tier 4)", shopValue:0, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 58.0, 49.0, 27.0, -4.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15928} -{name:"Fractite platelegs (b)", itemDescription:"These look pretty heavy. (Tier 5)", shopValue:0, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 74.0, 63.0, 35.0, -4.0, 72.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15929} -{name:"Zephyrium platelegs (b)", itemDescription:"These look pretty heavy. (Tier 6)", shopValue:0, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 91.0, 78.0, 48.0, -4.0, 89.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15930} -{name:"Argonite platelegs (b)", itemDescription:"These look pretty heavy. (Tier 7).", shopValue:0, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 107.0, 93.0, 51.0, -4.0, 106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15931} -{name:"Katagon platelegs (b)", itemDescription:"These look pretty heavy. (Tier 8)", shopValue:0, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 126.0, 109.0, 60.0, -4.0, 124.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15932} -{name:"Gorgonite platelegs (b)", itemDescription:"These look pretty heavy. (Tier 9)", shopValue:0, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 145.0, 125.0, 69.0, -4.0, 143.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15933} -{name:"Promethium platelegs (b)", itemDescription:"These look pretty heavy. (Tier 10)", shopValue:0, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 164.0, 142.0, 78.0, -4.0, 163.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15934} -{name:"Primal platelegs (b)", itemDescription:"These lookpretty heavy. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 182.0, 158.0, 87.0, -4.0, 181.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15935} -{name:"Novite gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 1.0, 2.0, 2.0, -1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15936} -{name:"Bathus gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 2.0, 4.0, 3.0, -1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15937} -{name:"Marmaros gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 3.0, 5.0, 4.0, -1.0, -3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15938} -{name:"Kratonite gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 4.0, 7.0, 5.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15939} -{name:"Fractite gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 6.0, 9.0, 6.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15940} -{name:"Zephyrium gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 7.0, 11.0, 8.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15941} -{name:"Argonite gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 8.0, 13.0, 10.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15942} -{name:"Katagon gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 9.0, 15.0, 12.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15943} -{name:"Gorgonite gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 10.0, 17.0, 14.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15944} -{name:"Promethium gauntlets (b)", itemDescription:"A pair of heavy gauntlets. (Tier 10)", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 11.0, 19.0, 15.0, -1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15945} -{name:"Primal gauntlets (b)", itemDescription:"A pair of heavy gauntlets.(Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 12.0, 21.0, 17.0, -1.0, 11.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15946} -{name:"Novite arrows (b)", itemDescription:"Bow ammunition (Tier 1)", shopValue:0, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15947} -{name:"Bathus arrows (b)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:0, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15948} -{name:"Marmaros arrows (b)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:0, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15949} -{name:"Kratonite arrows (b)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:0, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15950} -{name:"Fractite arrows (b)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:0, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15951} -{name:"Zephyrium arrows (b)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:0, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15952} -{name:"Argonite arrows (b)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:0, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15953} -{name:"Katagon arrows (b)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:0, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15954} -{name:"Gorgonite arrows (b)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:0, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15955} -{name:"Promethium arrows (b)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:0, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15956} -{name:"Sagittarian arrows (b)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15957} -{name:"Novite arrows (p) (b)", itemDescription:"Bow ammunition (Tier 1)", shopValue:0, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15958} -{name:"Bathus arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:0, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15959} -{name:"Marmaros arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:0, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15960} -{name:"Kratonite arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:0, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15961} -{name:"Fractite arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:0, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15962} -{name:"Zephyrium arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:0, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15963} -{name:"Argonite arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:0, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15964} -{name:"Katagon arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:0, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15965} -{name:"Gorgonite arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:0, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15966} -{name:"Promethium arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:0, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15967} -{name:"Sagittarian arrows (p) (b)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15968} -{name:"Novite arrows (p+) (b)", itemDescription:"Bow ammunition (Tier 1)", shopValue:0, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15969} -{name:"Bathus arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:0, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15970} -{name:"Marmaros arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:0, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15971} -{name:"Kratonite arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:0, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15972} -{name:"Fractite arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:0, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15973} -{name:"Zephyrium arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:0, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15974} -{name:"Argonite arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:0, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15975} -{name:"Katagon arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:0, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15976} -{name:"Gorgonite arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:0, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15977} -{name:"Promethium arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:0, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15978} -{name:"Sagittarian arrows (p+) (b)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15979} -{name:"Novite arrows (p++) (b)", itemDescription:"Bow ammunition (Tier 1)", shopValue:0, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15980} -{name:"Bathus arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:0, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15981} -{name:"Marmaros arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:0, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15982} -{name:"Kratonite arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:0, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15983} -{name:"Fractite arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:0, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15984} -{name:"Zephyrium arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:0, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15985} -{name:"Argonite arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:0, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15986} -{name:"Katagon arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:0, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15987} -{name:"Gorgonite arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:0, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15988} -{name:"Promethium arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:0, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15989} -{name:"Sagittarian arrows (p++) (b)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:0, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15990} -{name:"Novite hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15991} -{name:"Bathus hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 11.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15992} -{name:"Marmaros hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 19.0, 16.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15993} -{name:"Kratonite hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 28.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15994} -{name:"Fractite hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 37.0, 33.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15995} -{name:"Zephyrium hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 44.0, 39.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15996} -{name:"Argonite hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 50.0, 45.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15997} -{name:"Katagon hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 55.0, 50.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 59.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15998} -{name:"Gorgonite hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 64.0, 58.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:15999} -{name:"Promethium hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 10)", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 73.0, 67.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16000} -{name:"Primal hatchet (b)", itemDescription:"A hatchet for woodcutting. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 80.0, 73.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16001} -{name:"Protoleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 1)", shopValue:0, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16002} -{name:"Subleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 2)", shopValue:0, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16003} -{name:"Paraleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 3)", shopValue:0, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 2.0, 2.0, 3.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16004} -{name:"Archleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 4)", shopValue:0, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 3.0, 3.0, 4.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16005} -{name:"Dromoleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 5)", shopValue:0, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 2.0, 3.0, 3.0, 4.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16006} -{name:"Spinoleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 6)", shopValue:0, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 3.0, 5.0, 4.0, 6.0, 7.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16007} -{name:"Gallileather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 7)", shopValue:0, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 4.0, 6.0, 5.0, 7.0, 10.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16008} -{name:"Stegoleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 8)", shopValue:0, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 5.0, 7.0, 6.0, 8.0, 13.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16009} -{name:"Megaleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 9)", shopValue:0, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 7.0, 8.0, 7.0, 9.0, 17.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16010} -{name:"Tyrannoleather boots (b)", itemDescription:"Boots crafted out of thick lizard hides. (Tier 10)", shopValue:0, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 8.0, 9.0, 8.0, 10.0, 21.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16011} -{name:"Sagittarian boots (b)", itemDescription:"Feet protection made from scaly hides. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 9.0, 10.0, 9.0, 11.0, 26.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16012} -{name:"Novite platebody (b)", itemDescription:"Provides excellent protection. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 19.0, 11.0, -6.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16013} -{name:"Bathus platebody (b)", itemDescription:"Provides excellent protection. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 37.0, 35.0, 20.0, -6.0, 37.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16014} -{name:"Marmaros platebody (b)", itemDescription:"Provides excellent protection. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 57.0, 54.0, 31.0, -6.0, 58.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16015} -{name:"Kratonite platebody (b)", itemDescription:"Provides excellent protection. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 78.0, 73.0, 42.0, -6.0, 79.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16016} -{name:"Fractite platebody (b)", itemDescription:"Provides excellent protection. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 100.0, 93.0, 54.0, -6.0, 101.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16017} -{name:"Zephyrium platebody (b)", itemDescription:"Provides excellent protection. (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 123.0, 114.0, 67.0, -6.0, 125.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16018} -{name:"Argonite platebody (b)", itemDescription:"Provides excellent protection. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 145.0, 136.0, 80.0, -6.0, 149.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16019} -{name:"Katagon platebody (b)", itemDescription:"Provides excellent protection. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 171.0, 159.0, 94.0, -6.0, 174.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16020} -{name:"Gorgonite platebody (b)", itemDescription:"Provides excellent protection. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 197.0, 183.0, 108.0, -6.0, 200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16021} -{name:"Promethium platebody (b)", itemDescription:"Provides excellent protection. Tier (10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 223.0, 207.0, 122.0, -6.0, 226.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16022} -{name:"Primal platebody (b)", itemDescription:"Provides excellent protection. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 247.0, 230.0, 135.0, -6.0, 251.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16023} -{name:"Novite longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 1)", shopValue:0, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:27.0, bonuses:[10.0, 15.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16024} -{name:"Bathus longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 2)", shopValue:0, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:27.0, bonuses:[17.0, 24.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16025} -{name:"Marmaros longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 3)", shopValue:0, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[26.0, 39.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16026} -{name:"Kratonite longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 4)", shopValue:0, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:27.0, bonuses:[34.0, 55.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16027} -{name:"Fractite longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 5)", shopValue:0, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[42.0, 67.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16028} -{name:"Zephyrium longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 6)", shopValue:0, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:27.0, bonuses:[51.0, 73.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16029} -{name:"Argonite longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 7)", shopValue:0, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:27.0, bonuses:[57.0, 82.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16030} -{name:"Katagon longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 8)", shopValue:0, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:27.0, bonuses:[63.0, 91.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16031} -{name:"Gorgonite longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 9)", shopValue:0, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[71.0, 101.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16032} -{name:"Promethium longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 10)", shopValue:0, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:27.0, bonuses:[80.0, 111.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16033} -{name:"Primal longsword (b)", itemDescription:"A razor-sharp longsword. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[87.0, 120.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 134.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16034} -{name:"Novite rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 1)", shopValue:0, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 5.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16035} -{name:"Bathus rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 2)", shopValue:0, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:18.0, bonuses:[13.0, 9.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16036} -{name:"Marmaros rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 3)", shopValue:0, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:18.0, bonuses:[22.0, 14.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16037} -{name:"Kratonite rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 4)", shopValue:0, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:18.0, bonuses:[30.0, 24.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16038} -{name:"Fractite rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 5)", shopValue:0, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 30.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16039} -{name:"Zephyrium rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 6)", shopValue:0, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:18.0, bonuses:[47.0, 36.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 52.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16040} -{name:"Argonite rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 7)", shopValue:0, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:18.0, bonuses:[53.0, 42.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16041} -{name:"Katagon rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 8)", shopValue:0, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:18.0, bonuses:[59.0, 48.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16042} -{name:"Gorgonite rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 9)", shopValue:0, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:18.0, bonuses:[67.0, 54.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16043} -{name:"Promethium rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 10)", shopValue:0, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:18.0, bonuses:[76.0, 61.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 107.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16044} -{name:"Primal rapier (b)", itemDescription:"A razor-sharp rapier. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[83.0, 67.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 109.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16045} -{name:"Protoleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 1)", shopValue:0, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 1.0, 2.0, 1.0, 3.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16046} -{name:"Subleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 2)", shopValue:0, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 2.0, 3.0, 3.0, 5.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16047} -{name:"Paraleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 3)", shopValue:0, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 2.0, 5.0, 4.0, 7.0, 2.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16048} -{name:"Archleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 4)", shopValue:0, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 3.0, 7.0, 6.0, 10.0, 4.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16049} -{name:"Dromoleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 5)", shopValue:0, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 5.0, 8.0, 6.0, 10.0, 7.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16050} -{name:"Spinoleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 6)", shopValue:0, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 7.0, 11.0, 9.0, 15.0, 10.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16051} -{name:"Gallileather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 7)", shopValue:0, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 8.0, 13.0, 11.0, 18.0, 14.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16052} -{name:"Stegoleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 8)", shopValue:0, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 9.0, 15.0, 13.0, 21.0, 19.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16053} -{name:"Megaleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 9)", shopValue:0, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 10.0, 17.0, 15.0, 24.0, 25.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16054} -{name:"Tyrannoleather coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 10)", shopValue:0, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 11.0, 19.0, 17.0, 27.0, 31.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16055} -{name:"Sagittarian coif (b)", itemDescription:"Crafted out of thick lizard hides. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 12.0, 21.0, 19.0, 30.0, 38.0, 23.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16056} -{name:"Protoleather chaps (b)", itemDescription:"Made from scaly hides (Tier 1)", shopValue:0, lowAlch:336, highAlch:504, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 2.0, 4.0, 3.0, 4.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16057} -{name:"Subleather chaps (b)", itemDescription:"Made from scaly hides (Tier 2)", shopValue:0, lowAlch:816, highAlch:1224, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 2.0, 8.0, 6.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16058} -{name:"Paraleather chaps (b)", itemDescription:"Made from scaly hides (Tier 3)", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 3.0, 11.0, 9.0, 12.0, 4.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16059} -{name:"Archleather chaps (b)", itemDescription:"Made from scaly hides. (Tier 4)", shopValue:0, lowAlch:2112, highAlch:3168, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 4.0, 15.0, 12.0, 17.0, 7.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16060} -{name:"Dromoleather chaps (b)", itemDescription:"Made from scaly hides.(Tier 5)", shopValue:0, lowAlch:2928, highAlch:4392, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 6.0, 16.0, 13.0, 18.0, 11.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16061} -{name:"Spinoleather chaps (b)", itemDescription:"Made from scaly hides. (Tier 6)", shopValue:0, lowAlch:3408, highAlch:5112, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 10.0, 24.0, 19.0, 26.0, 17.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16062} -{name:"Gallileather chaps (b)", itemDescription:"Made from scaly hides (Tier 7)", shopValue:0, lowAlch:4272, highAlch:6408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 10.0, 24.0, 19.0, 26.0, 17.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16063} -{name:"Stegoleather chaps (b)", itemDescription:"Made from scaly hides. (Tier 8)", shopValue:0, lowAlch:4848, highAlch:7272, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 14.0, 34.0, 37.0, 36.0, 32.0, 35.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16064} -{name:"Megaleather chaps (b)", itemDescription:"Made from scaly hides (Tier 9)", shopValue:0, lowAlch:5520, highAlch:8280, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 16.0, 39.0, 31.0, 42.0, 41.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16065} -{name:"Tyrannoleather chaps (b)", itemDescription:"Made from scaly hides (Tier 10)", shopValue:0, lowAlch:6528, highAlch:9792, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 18.0, 44.0, 35.0, 47.0, 50.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16066} -{name:"Sagittarian chaps (b)", itemDescription:"Leg protection made from scaly hides. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 20.0, 49.0, 39.0, 52.0, 62.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16067} -{name:"Protoleather body (b)", itemDescription:"Made from scaly hides. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 3.0, 7.0, 6.0, 9.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16068} -{name:"Subleather body (b)", itemDescription:"Made from scaly hides (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 4.0, 14.0, 12.0, 16.0, 3.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16069} -{name:"Paraleather body (b)", itemDescription:"Made from scaly hides (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 4.0, 14.0, 12.0, 16.0, 3.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16070} -{name:"Archleather body (b)", itemDescription:"Made from scaly hides. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 8.0, 28.0, 24.0, 32.0, 11.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16071} -{name:"Dromoleather body (b)", itemDescription:"Made from scaly hides. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 11.0, 28.0, 24.0, 32.0, 18.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16072} -{name:"Spinoleather body (b)", itemDescription:"Made from scaly hides (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 17.0, 43.0, 37.0, 50.0, 45.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16073} -{name:"Gallileather body (b)", itemDescription:"Made from scaly hides (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 20.0, 51.0, 44.0, 60.0, 38.0, 54.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16074} -{name:"Stegoleather body (b)", itemDescription:"Made from scaly hides (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 23.0, 60.0, 52.0, 70.0, 51.0, 63.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16075} -{name:"Megaleather body (b)", itemDescription:"Made from scaly hides. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 27.0, 69.0, 60.0, 81.0, 66.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16076} -{name:"Tyrannoleather body (b)", itemDescription:"Made from scaly hides. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 30.0, 78.0, 68.0, 91.0, 83.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16077} -{name:"Sagittarian body (b)", itemDescription:"Body protection made from scaly hides. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 33.0, 87.0, 76.0, 101.0, 100.0, 91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16078} -{name:"Anti-dragon shield (b)", itemDescription:"This provides partial protection from dragonbreath attacks.", shopValue:0, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16079} -{name:"Novite chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 1)", shopValue:0, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 14.0, 24.0, -3.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16080} -{name:"Bathus chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 2)", shopValue:0, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 19.0, 26.0, 42.0, -3.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16081} -{name:"Marmaros chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 3)", shopValue:0, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 29.0, 40.0, 63.0, -3.0, 32.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16082} -{name:"Kratonite chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 4)", shopValue:0, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 39.0, 54.0, 87.0, -3.0, 44.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16083} -{name:"Fractite chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 5)", shopValue:0, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 50.0, 69.0, 111.0, -3.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16084} -{name:"Zephyrium chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 6)", shopValue:0, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 62.0, 86.0, 135.0, -3.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16085} -{name:"Argonite chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 7)", shopValue:0, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 74.0, 102.0, 161.0, -3.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16086} -{name:"Katagon chainbody (b)", itemDescription:"A series of metal connected rings. (Tier 8)", shopValue:0, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 87.0, 119.0, 188.0, -3.0, 96.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16087} -{name:"Gorgonite chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 9)", shopValue:0, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 100.0, 137.0, 216.0, -3.0, 110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16088} -{name:"Promethium chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 10)", shopValue:0, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 113.0, 155.0, 245.0, -3.0, 124.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16089} -{name:"Primal chainbody (b)", itemDescription:"A series of connected metal rings. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 125.0, 172.0, 272.0, -3.0, 138.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16090} -{name:"Air rune (b)", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16091} -{name:"Water rune (b)", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16092} -{name:"Earth rune (b)", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16093} -{name:"Fire rune (b)", itemDescription:"One of the 4 basic elemental Runes.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16094} -{name:"Mind rune (b)", itemDescription:"Used for basic level missile spells.", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16095} -{name:"Chaos rune (b)", itemDescription:"Used for low level missile spells.", shopValue:0, lowAlch:18, highAlch:28, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16096} -{name:"Death rune (b)", itemDescription:"Used for medium level missile spells.", shopValue:0, lowAlch:41, highAlch:62, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16097} -{name:"Blood rune (b)", itemDescription:"Used for high level missile spells.", shopValue:0, lowAlch:73, highAlch:110, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16098} -{name:"Body rune (b)", itemDescription:"Used for Curse spells", shopValue:0, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16099} -{name:"Cosmic rune (b)", itemDescription:"Used for enchant spells.", shopValue:0, lowAlch:30, highAlch:46, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16100} -{name:"Astral rune (b)", itemDescription:"Used for Lunar Spells", shopValue:0, lowAlch:29, highAlch:44, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16101} -{name:"Nature rune (b)", itemDescription:"Used for alchemy spells.", shopValue:0, lowAlch:49, highAlch:74, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16102} -{name:"Law rune (b)", itemDescription:"Used for teleport spells.", shopValue:0, lowAlch:50, highAlch:75, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16103} -{name:"Soul rune (b)", itemDescription:"Used for high level curse spells.", shopValue:0, lowAlch:54, highAlch:82, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16104} -{name:"Protoleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 1)", shopValue:0, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16105} -{name:"Subleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 2)", shopValue:0, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16106} -{name:"Paraleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 3)", shopValue:0, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 2.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16107} -{name:"Archleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 4)", shopValue:0, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 3.0, 3.0, 2.0, 3.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16108} -{name:"Dromoleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 5)", shopValue:0, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 4.0, 3.0, 2.0, 3.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16109} -{name:"Spinoleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 6)", shopValue:0, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 5.0, 4.0, 3.0, 5.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16110} -{name:"Gallileather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 7)", shopValue:0, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 6.0, 5.0, 3.0, 6.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16111} -{name:"Stegoleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 8)", shopValue:0, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 7.0, 6.0, 3.0, 7.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16112} -{name:"Megaleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 9)", shopValue:0, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 8.0, 7.0, 4.0, 8.0, 16.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16113} -{name:"Tyrannoleather vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 10)", shopValue:0, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 9.0, 8.0, 5.0, 9.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16114} -{name:"Sagittarian vambraces (b)", itemDescription:"Wrist protection made from scaly hides. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 10.0, 9.0, 6.0, 10.0, 24.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16115} -{name:"Novite warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 1)", shopValue:0, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16116} -{name:"Bathus warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 2)", shopValue:0, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16117} -{name:"Marmaros warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 3)", shopValue:0, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16118} -{name:"Kratonite warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 4)", shopValue:0, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16119} -{name:"Fractite warhammer (b)", itemDescription:"I don't think it's intended for joinery (Tier 5).", shopValue:0, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 72.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16120} -{name:"Zephyrium warhammer (b)", itemDescription:"I don't think it's intended for joinery.(Tier 6)", shopValue:0, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 62.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16121} -{name:"Argonite warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 7)", shopValue:0, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16122} -{name:"Katagon warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 8)", shopValue:0, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 96.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16123} -{name:"Gorgonite warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 9)", shopValue:0, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16124} -{name:"Promethium warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 10)", shopValue:0, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 117.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16125} -{name:"Primal warhammer (b)", itemDescription:"I don't think it's intended for joinery. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 126.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16126} -{name:"Novite 2h sword (b)", itemDescription:"A two-handed sword. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 25.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16127} -{name:"Bathus 2h sword (b)", itemDescription:"A two-handed sword. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 39.0, 30.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16128} -{name:"Marmaros 2h sword (b)", itemDescription:"A two-handed sword. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 62.0, 47.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16129} -{name:"Kratonite 2h sword (b)", itemDescription:"A two-handed sword. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 84.0, 66.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16130} -{name:"Fractite 2h sword (b)", itemDescription:"A 2-handed sword. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 95.0, 76.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16131} -{name:"Zephyrium 2h sword (b)", itemDescription:"A two-handed sword. (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 104.0, 84.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16132} -{name:"Argonite 2h sword (b)", itemDescription:"A two-handed sword. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 115.0, 94.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 110.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16133} -{name:"Katagon 2h sword (b)", itemDescription:"A two-handed sword. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 129.0, 106.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16134} -{name:"Gorgonite 2h sword (b)", itemDescription:"A two-handed sword. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 145.0, 121.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 141.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16135} -{name:"Promethium 2h sword (b)", itemDescription:"A two-handed sword. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 162.0, 130.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 157.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16136} -{name:"Primal 2h sword (b)", itemDescription:"A two-handed sword. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 179.0, 141.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 162.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16137} -{name:"Sapphire amulet (b)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16138} -{name:"Emerald amulet (b)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16139} -{name:"Ruby amulet (b)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16140} -{name:"Diamond amulet (b)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16141} -{name:"Novite pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:27.0, bonuses:[5.0, -2.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16142} -{name:"Bathus pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:27.0, bonuses:[10.0, -2.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16143} -{name:"Marmaros pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:27.0, bonuses:[17.0, -2.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16144} -{name:"Kratonite pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:27.0, bonuses:[25.0, -2.0, 23.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16145} -{name:"Fractite pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:27.0, bonuses:[33.0, -2.0, 31.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16146} -{name:"Zephyrium pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:27.0, bonuses:[40.0, -2.0, 37.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16147} -{name:"Argonite pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:27.0, bonuses:[45.0, -2.0, 43.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16148} -{name:"Katagon pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:27.0, bonuses:[50.0, -2.0, 48.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16149} -{name:"Gorgonite pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:27.0, bonuses:[58.0, -2.0, 55.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 74.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16150} -{name:"Promethium pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 10)", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:27.0, bonuses:[66.0, -2.0, 64.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16151} -{name:"Primal pickaxe (b)", itemDescription:"A pickaxe for mining. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[72.0, -2.0, 69.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 92.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16152} -{name:"Tangle gum staff (b)", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 1)", shopValue:0, lowAlch:196, highAlch:294, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16153} -{name:"Seeping elm staff (b)", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 2)", shopValue:0, lowAlch:488, highAlch:732, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16154} -{name:"Blood spindle staff (b)", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 3)", shopValue:0, lowAlch:920, highAlch:1380, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16155} -{name:"Utuku staff (b)", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 4)", shopValue:0, lowAlch:1268, highAlch:1902, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16156} -{name:"Spinebeam staff (b)", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 5)", shopValue:0, lowAlch:1756, highAlch:2634, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16157} -{name:"Bovistrangler staff (b)", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 6)", shopValue:0, lowAlch:2044, highAlch:3066, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16158} -{name:"Thigat staff (b)", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 7)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16159} -{name:"Corpsethorn staff (b)", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 8)", shopValue:0, lowAlch:2908, highAlch:4362, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16160} -{name:"Entgallow staff (b)", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 9)", shopValue:0, lowAlch:3312, highAlch:4968, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16161} -{name:"Grave creeper staff (b)", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 10)", shopValue:0, lowAlch:3916, highAlch:5874, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16162} -{name:"Water staff (b)", itemDescription:"A magical staff of water. (Tier 1)", shopValue:0, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 8.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16163} -{name:"Empowered water staff (b)", itemDescription:"A magical staff of water. (Tier 6)", shopValue:0, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16164} -{name:"Earth staff (b)", itemDescription:"A magical staff of earth. (Tier 1)", shopValue:0, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 8.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16165} -{name:"Empowered earth staff (b)", itemDescription:"A magical staff of earth. (Tier 2)", shopValue:0, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16166} -{name:"Fire staff (b)", itemDescription:"A magical staff of fire. (Tier 1)", shopValue:0, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 8.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16167} -{name:"Empowered fire staff (b)", itemDescription:"A magical staff of fire. (Tier 2)", shopValue:0, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16168} -{name:"Air staff (b)", itemDescription:"A magical staff of air. (Tier 1)", shopValue:0, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 8.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16169} -{name:"Empowered air staff (b)", itemDescription:"A magical staff of air. (Tier 9)", shopValue:0, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16170} -{name:"Catalytic staff (b)", itemDescription:"2 kg", shopValue:0, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16171} -{name:"Empowered catalytic staff (b)", itemDescription:"This staff makes destructive spells more powerful. (Tier 2)", shopValue:0, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 31.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 20.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16172} -{name:"Celestial catalytic staff (b)", itemDescription:"1.8 kg", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 41.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 30.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16173} -{name:"Novite maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 27.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16174} -{name:"Bathus maul (b)", itemDescription:"A maul used to take life from those who don't deserve it. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 41.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16175} -{name:"Marmaros maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 65.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16176} -{name:"Kratonite maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 89.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16177} -{name:"Fractite maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 99.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16178} -{name:"Zephyrium maul (b)", itemDescription:"To claim life from those who do not deserve it (Tier 6).", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 108.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16179} -{name:"Argonite maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 121.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16180} -{name:"Katagon maul (b)", itemDescription:"A maul used to take life from those who don't deserve it. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 137.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 127.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16181} -{name:"Gorgonite maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 154.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16182} -{name:"Promethium maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 167.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 160.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16183} -{name:"Primal maul (b)", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 185.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 166.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16184} -{name:"Salve gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 1)", shopValue:0, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16185} -{name:"Wildercress gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 2)", shopValue:0, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 2.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16186} -{name:"Blightleaf gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 3)", shopValue:0, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 2.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16187} -{name:"Roseblood gloves (b)", itemDescription:"A pair of finely crafted gloves (Tier 4).", shopValue:0, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 2.0, -1.0, 3.0, 3.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16188} -{name:"Bryll gloves (b)", itemDescription:"A pair of finely crafted gloves (Tier 5).", shopValue:0, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 3.0, -1.0, 4.0, 3.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16189} -{name:"Duskweed gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 6)", shopValue:0, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 4.0, -1.0, 5.0, 4.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16190} -{name:"Soulbell gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 7)", shopValue:0, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 5.0, -1.0, 6.0, 5.0, 7.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16191} -{name:"Ectogloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 8)", shopValue:0, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 6.0, -1.0, 7.0, 6.0, 8.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16192} -{name:"Runic gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 9)", shopValue:0, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 7.0, -1.0, 8.0, 7.0, 9.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16193} -{name:"Spiritbloom gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 10)", shopValue:0, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 8.0, -1.0, 9.0, 8.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16194} -{name:"Celestial gloves (b)", itemDescription:"A pair of finely crafted gloves. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 9.0, -1.0, 10.0, 9.0, 11.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16195} -{name:"Novite plateskirt (b)", itemDescription:"Designer leg protection. (Tier 1)", shopValue:0, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 9.0, 10.0, 17.0, -4.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16196} -{name:"Bathus plateskirt (b)", itemDescription:"Designer leg protection. (Tier 2)", shopValue:0, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 17.0, 19.0, 32.0, -4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16197} -{name:"Marmaros plateskirt (b)", itemDescription:"Designer leg protection. (Tier 3)", shopValue:0, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 25.0, 28.0, 46.0, -4.0, 28.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16198} -{name:"Kratonite plateskirt (b)", itemDescription:"Designer leg protection. (Tier 4)", shopValue:0, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 34.0, 38.0, 64.0, -4.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16199} -{name:"Fractite plateskirt (b)", itemDescription:"Designer leg protection. (Tier 5)", shopValue:0, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 44.0, 49.0, 82.0, -4.0, 49.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16200} -{name:"Zephyrium plateskirt (b)", itemDescription:"Designer leg protection. (Tier 6)", shopValue:0, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 55.0, 61.0, 98.0, -4.0, 61.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16201} -{name:"Argonite plateskirt (b)", itemDescription:"Designer leg protection. (Tier 7)", shopValue:0, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 65.0, 72.0, 117.0, -4.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16202} -{name:"Katagon plateskirt (b)", itemDescription:"Designer leg protection. (Tier 8)", shopValue:0, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 76.0, 85.0, 137.0, -4.0, 86.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16203} -{name:"Gorgonite plateskirt (b)", itemDescription:"Designer leg protection. (Tier 9)", shopValue:0, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 87.0, 98.0, 158.0, -4.0, 99.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16204} -{name:"Promethium plateskirt (b)", itemDescription:"Designer leg protection. (Tier 10)", shopValue:0, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 98.0, 111.0, 179.0, -4.0, 113.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16205} -{name:"Primal plateskirt (b)", itemDescription:" Designer leg protection. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 109.0, 123.0, 199.0, -4.0, 125.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16206} -{name:"Novite battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 1)", shopValue:0, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 13.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16207} -{name:"Bathus battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 2)", shopValue:0, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 22.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16208} -{name:"Marmaros battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 3)", shopValue:0, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 36.0, 33.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16209} -{name:"Kratonite battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 4)", shopValue:0, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 51.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16210} -{name:"Fractite battleaxe (b)", itemDescription:"A vicious looking axe. (Tier 5)", shopValue:0, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[2.0, 63.0, 59.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16211} -{name:"Zephyrium battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 6)", shopValue:0, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 69.0, 64.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 68.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16212} -{name:"Argonite battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 7)", shopValue:0, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 78.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16213} -{name:"Katagon battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 8)", shopValue:0, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 86.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 103.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16214} -{name:"Gorgonite battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 9)", shopValue:0, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 96.0, 90.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 121.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16215} -{name:"Promethium battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 10)", shopValue:0, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-2.0, 105.0, 99.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16216} -{name:"Primal battleaxe (b)", itemDescription:"A vicious-looking axe. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-2.0, 112.0, 106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 140.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16217} -{name:"Novite spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16218} -{name:"Novite spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16219} -{name:"Novite spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16220} -{name:"Novite spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:0, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16221} -{name:"Bathus spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16222} -{name:"Bathus spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16223} -{name:"Bathus spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16224} -{name:"Bathus spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:0, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16225} -{name:"Marmaros spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16226} -{name:"Marmaros spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16227} -{name:"Marmaros spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16228} -{name:"Marmaros spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:0, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16229} -{name:"Kratonite spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16230} -{name:"Kratonite spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16231} -{name:"Kratonite spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16232} -{name:"Kratonite spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:0, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16233} -{name:"Fractite spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16234} -{name:"Fractite spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16235} -{name:"Fractite spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16236} -{name:"Fractite spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:0, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16237} -{name:"Zephyrium spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16238} -{name:"Zephyrium spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16239} -{name:"Zephyrium spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16240} -{name:"Zephyrium spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:0, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16241} -{name:"Argonite spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16242} -{name:"Argonite spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16243} -{name:"Argonite spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16244} -{name:"Argonite spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:0, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16245} -{name:"Katagon spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16246} -{name:"Katagon spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16247} -{name:"Katagon spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16248} -{name:"Katagon spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:0, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16249} -{name:"Gorgonite spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16250} -{name:"Gorgonite spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16251} -{name:"Gorgonite spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16252} -{name:"Gorgonite spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:0, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16253} -{name:"Promethium spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16254} -{name:"Promethium spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16255} -{name:"Promethium spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16256} -{name:"Promethium spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:0, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16257} -{name:"Primal spear (b)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16258} -{name:"Primal spear (p) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16259} -{name:"Primal spear (p+) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16260} -{name:"Primal spear (p++) (b)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16261} -{name:"Novite boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 1)", shopValue:0, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 3.0, 3.0, 2.0, -1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16262} -{name:"Bathus boots (b)", itemDescription:"Boots made for walking.Also,more importantly,made for armour.(Tier 2)", shopValue:0, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 4.0, 3.0, -1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16263} -{name:"Marmaros boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 3)", shopValue:0, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 5.0, 6.0, 4.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16264} -{name:"Kratonite boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 4)", shopValue:0, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 5.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16265} -{name:"Fractite boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 5)", shopValue:0, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 6.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16266} -{name:"Zephyrium boots (b)", itemDescription:"Boots made for walking. (Tier 6)", shopValue:0, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 11.0, 12.0, 8.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16267} -{name:"Argonite boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 7)", shopValue:0, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 13.0, 14.0, 10.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16268} -{name:"Katagon boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 8)", shopValue:0, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 15.0, 16.0, 12.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16269} -{name:"Gorgonite boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 9)", shopValue:0, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 17.0, 18.0, 14.0, -1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16270} -{name:"Promethium boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 10)", shopValue:0, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 19.0, 21.0, 16.0, -1.0, 12.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16271} -{name:"Primal boots (b)", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 11)", shopValue:0, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 21.0, 23.0, 18.0, -1.0, 13.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16272} -{name:"Novite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 1.0, 2.0, 2.0, -1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16273} -{name:"Novite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 1.0, 2.0, 2.0, -1.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16274} -{name:"Bathus gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 2.0, 4.0, 3.0, -1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16275} -{name:"Bathus gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 2.0, 4.0, 3.0, -1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16276} -{name:"Marmaros gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 3.0, 5.0, 4.0, -1.0, -3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16277} -{name:"Marmaros gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 3.0, 5.0, 4.0, -1.0, -3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16278} -{name:"Kratonite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 4.0, 7.0, 5.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16279} -{name:"Kratonite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 4.0, 7.0, 5.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16280} -{name:"Fractite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 6.0, 9.0, 6.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16281} -{name:"Fractite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 6.0, 9.0, 6.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16282} -{name:"Zephyrium gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 7.0, 11.0, 8.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16283} -{name:"Zephyrium gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 7.0, 11.0, 8.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16284} -{name:"Argonite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 8.0, 13.0, 10.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16285} -{name:"Argonite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 8.0, 13.0, 10.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16286} -{name:"Katagon gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 9.0, 15.0, 12.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16287} -{name:"Katagon gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 9.0, 15.0, 12.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16288} -{name:"Gorgonite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 10.0, 17.0, 14.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16289} -{name:"Gorgonite gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 10.0, 17.0, 14.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16290} -{name:"Promethium gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 11.0, 19.0, 15.0, -1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16291} -{name:"Promethium gauntlets", itemDescription:"A pair of heavy gauntlets. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 11.0, 19.0, 15.0, -1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16292} -{name:"Primal gauntlets", itemDescription:"A pair of heavy gauntlets.(Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 12.0, 21.0, 17.0, -1.0, 11.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16293} -{name:"Primal gauntlets", itemDescription:"A pair of heavy gauntlets.(Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, -1.0, 12.0, 21.0, 17.0, -1.0, 11.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16294} -{name:"Novite pickaxe", itemDescription:"A pickaxe for mining. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:27.0, bonuses:[5.0, -2.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16295} -{name:"Novite pickaxe", itemDescription:"A pickaxe for mining. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:27.0, bonuses:[5.0, -2.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16296} -{name:"Bathus pickaxe", itemDescription:"A pickaxe for mining. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:27.0, bonuses:[10.0, -2.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16297} -{name:"Bathus pickaxe", itemDescription:"A pickaxe for mining. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:27.0, bonuses:[10.0, -2.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16298} -{name:"Marmaros pickaxe", itemDescription:"A pickaxe for mining. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:27.0, bonuses:[17.0, -2.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16299} -{name:"Marmaros pickaxe", itemDescription:"A pickaxe for mining. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:27.0, bonuses:[17.0, -2.0, 15.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16300} -{name:"Kratonite pickaxe", itemDescription:"A pickaxe for mining. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:27.0, bonuses:[25.0, -2.0, 23.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16301} -{name:"Kratonite pickaxe", itemDescription:"A pickaxe for mining. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:27.0, bonuses:[25.0, -2.0, 23.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16302} -{name:"Fractite pickaxe", itemDescription:"A pickaxe for mining. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:27.0, bonuses:[33.0, -2.0, 31.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16303} -{name:"Fractite pickaxe", itemDescription:"A pickaxe for mining. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:27.0, bonuses:[33.0, -2.0, 31.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 22.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16304} -{name:"Zephyrium pickaxe", itemDescription:"A pickaxe for mining. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:27.0, bonuses:[40.0, -2.0, 37.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16305} -{name:"Zephyrium pickaxe", itemDescription:"A pickaxe for mining. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:27.0, bonuses:[40.0, -2.0, 37.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16306} -{name:"Argonite pickaxe", itemDescription:"A pickaxe for mining. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:27.0, bonuses:[45.0, -2.0, 43.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16307} -{name:"Argonite pickaxe", itemDescription:"A pickaxe for mining. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:27.0, bonuses:[45.0, -2.0, 43.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16308} -{name:"Katagon pickaxe", itemDescription:"A pickaxe for mining. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:27.0, bonuses:[50.0, -2.0, 48.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16309} -{name:"Katagon pickaxe", itemDescription:"A pickaxe for mining. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:27.0, bonuses:[50.0, -2.0, 48.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16310} -{name:"Gorgonite pickaxe", itemDescription:"A pickaxe for mining. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:27.0, bonuses:[58.0, -2.0, 55.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 74.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16311} -{name:"Gorgonite pickaxe", itemDescription:"A pickaxe for mining. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:27.0, bonuses:[58.0, -2.0, 55.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 74.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16312} -{name:"Promethium pickaxe", itemDescription:"A pickaxe for mining. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:27.0, bonuses:[66.0, -2.0, 64.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16313} -{name:"Promethium pickaxe", itemDescription:"A pickaxe for mining. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:27.0, bonuses:[66.0, -2.0, 64.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 87.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16314} -{name:"Primal pickaxe", itemDescription:"A pickaxe for mining. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[72.0, -2.0, 69.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 92.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16315} -{name:"Primal pickaxe", itemDescription:"A pickaxe for mining. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[72.0, -2.0, 69.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 92.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16316} -{name:"Tangle gum longbow", itemDescription:"A sturdy longbow. (Tier 1)", shopValue:450, lowAlch:180, highAlch:270, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16317} -{name:"Tangle gum longbow", itemDescription:"A sturdy longbow. (Tier 1)", shopValue:450, lowAlch:180, highAlch:270, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 26.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16318} -{name:"Seeping elm longbow", itemDescription:"A sturdy longbow. (Tier 2)", shopValue:1100, lowAlch:440, highAlch:660, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16319} -{name:"Seeping elm longbow", itemDescription:"A sturdy longbow. (Tier 2)", shopValue:1100, lowAlch:440, highAlch:660, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16320} -{name:"Blood spindle longbow", itemDescription:"A sturdy longbow. (Tier 3)", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16321} -{name:"Blood spindle longbow", itemDescription:"A sturdy longbow. (Tier 3)", shopValue:2080, lowAlch:832, highAlch:1248, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16322} -{name:"Utuku longbow", itemDescription:"A sturdy longbow. (Tier 4)", shopValue:2860, lowAlch:1144, highAlch:1716, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 59.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16323} -{name:"Utuku longbow", itemDescription:"A sturdy longbow. (Tier 4)", shopValue:2860, lowAlch:1144, highAlch:1716, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 59.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16324} -{name:"Spinebeam longbow", itemDescription:"A sturdy longbow. (tier 5)", shopValue:3960, lowAlch:1584, highAlch:2376, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16325} -{name:"Spinebeam longbow", itemDescription:"A sturdy longbow. (tier 5)", shopValue:3960, lowAlch:1584, highAlch:2376, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16326} -{name:"Bovistrangler longbow", itemDescription:"A sturdy longbow. (Tier 6)", shopValue:4610, lowAlch:1844, highAlch:2766, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 81.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16327} -{name:"Bovistrangler longbow", itemDescription:"A sturdy longbow. (Tier 6)", shopValue:4610, lowAlch:1844, highAlch:2766, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 81.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16328} -{name:"Thigat longbow", itemDescription:"A sturdy longbow. (Tier 7)", shopValue:5780, lowAlch:2312, highAlch:3468, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16329} -{name:"Thigat longbow", itemDescription:"A sturdy longbow. (Tier 7)", shopValue:5780, lowAlch:2312, highAlch:3468, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 93.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16330} -{name:"Corpsethorn longbow", itemDescription:"A sturdy longbow. (Tier 8)", shopValue:6560, lowAlch:2624, highAlch:3936, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 108.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16331} -{name:"Corpsethorn longbow", itemDescription:"A sturdy longbow. (Tier 8)", shopValue:6560, lowAlch:2624, highAlch:3936, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 108.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16332} -{name:"Entgallow longbow", itemDescription:"A sturdy longbow. (Tier 9)", shopValue:7470, lowAlch:2988, highAlch:4482, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16333} -{name:"Entgallow longbow", itemDescription:"A sturdy longbow. (Tier 9)", shopValue:7470, lowAlch:2988, highAlch:4482, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16334} -{name:"Grave creeper longbow", itemDescription:"A sturdy longbow. (Tier 10)", shopValue:8840, lowAlch:3536, highAlch:5304, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 138.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16335} -{name:"Grave creeper longbow", itemDescription:"A sturdy longbow. (Tier 10)", shopValue:8840, lowAlch:3536, highAlch:5304, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 138.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16336} -{name:"Sagittarian longbow", itemDescription:"A sturdy longbow.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 158.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16337} -{name:"Sagittarian longbow", itemDescription:"A sturdy longbow.", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 158.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16338} -{name:"Novite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 3.0, 3.0, 2.0, -1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16339} -{name:"Novite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 3.0, 3.0, 2.0, -1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16340} -{name:"Bathus boots", itemDescription:"Boots made for walking.Also,more importantly,made for armour.(Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 4.0, 3.0, -1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16341} -{name:"Bathus boots", itemDescription:"Boots made for walking.Also,more importantly,made for armour.(Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 4.0, 4.0, 3.0, -1.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16342} -{name:"Marmaros boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 5.0, 6.0, 4.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16343} -{name:"Marmaros boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 5.0, 6.0, 4.0, -1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16344} -{name:"Kratonite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 5.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16345} -{name:"Kratonite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 7.0, 8.0, 5.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16346} -{name:"Fractite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 6.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16347} -{name:"Fractite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 9.0, 10.0, 6.0, -1.0, 6.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16348} -{name:"Zephyrium boots", itemDescription:"Boots made for walking. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 11.0, 12.0, 8.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16349} -{name:"Zephyrium boots", itemDescription:"Boots made for walking. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 11.0, 12.0, 8.0, -1.0, 7.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16350} -{name:"Argonite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 13.0, 14.0, 10.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16351} -{name:"Argonite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 13.0, 14.0, 10.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16352} -{name:"Katagon boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 15.0, 16.0, 12.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16353} -{name:"Katagon boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 15.0, 16.0, 12.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16354} -{name:"Gorgonite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 17.0, 18.0, 14.0, -1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16355} -{name:"Gorgonite boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:125.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 17.0, 18.0, 14.0, -1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16356} -{name:"Promethium boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 19.0, 21.0, 16.0, -1.0, 12.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16357} -{name:"Promethium boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:125.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 19.0, 21.0, 16.0, -1.0, 12.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16358} -{name:"Primal boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 21.0, 23.0, 18.0, -1.0, 13.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16359} -{name:"Primal boots", itemDescription:"Boots made for walking. Also, more importantly, made for armour. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 21.0, 23.0, 18.0, -1.0, 13.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16360} -{name:"Novite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16361} -{name:"Novite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16362} -{name:"Bathus hatchet", itemDescription:"A hatchet for woodcutting. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 11.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16363} -{name:"Bathus hatchet", itemDescription:"A hatchet for woodcutting. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 11.0, 8.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16364} -{name:"Marmaros hatchet", itemDescription:"A hatchet for woodcutting. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 19.0, 16.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16365} -{name:"Marmaros hatchet", itemDescription:"A hatchet for woodcutting. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 19.0, 16.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16366} -{name:"Kratonite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 28.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16367} -{name:"Kratonite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 28.0, 24.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16368} -{name:"Fractite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 37.0, 33.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16369} -{name:"Fractite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 37.0, 33.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 23.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16370} -{name:"Zephyrium hatchet", itemDescription:"A hatchet for woodcutting. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 44.0, 39.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16371} -{name:"Zephyrium hatchet", itemDescription:"A hatchet for woodcutting. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 44.0, 39.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 33.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16372} -{name:"Argonite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 50.0, 45.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16373} -{name:"Argonite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 50.0, 45.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16374} -{name:"Katagon hatchet", itemDescription:"A hatchet for woodcutting. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 55.0, 50.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 59.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16375} -{name:"Katagon hatchet", itemDescription:"A hatchet for woodcutting. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 55.0, 50.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 59.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16376} -{name:"Gorgonite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 64.0, 58.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16377} -{name:"Gorgonite hatchet", itemDescription:"A hatchet for woodcutting. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 64.0, 58.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 76.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16378} -{name:"Promethium hatchet", itemDescription:"A hatchet for woodcutting. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:125.0, bonuses:[-2.0, 73.0, 67.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16379} -{name:"Promethium hatchet", itemDescription:"A hatchet for woodcutting. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:125.0, bonuses:[-2.0, 73.0, 67.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16380} -{name:"Primal hatchet", itemDescription:"A hatchet for woodcutting. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, 80.0, 73.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16381} -{name:"Primal hatchet", itemDescription:"A hatchet for woodcutting. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, 80.0, 73.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 95.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16382} -{name:"Novite longsword", itemDescription:"A razor-sharp longsword. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:27.0, bonuses:[10.0, 15.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16383} -{name:"Novite longsword", itemDescription:"A razor-sharp longsword. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:true, isNoteable:true, weight:27.0, bonuses:[10.0, 15.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16384} -{name:"Bathus longsword", itemDescription:"A razor-sharp longsword. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:27.0, bonuses:[17.0, 24.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16385} -{name:"Bathus longsword", itemDescription:"A razor-sharp longsword. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:true, isNoteable:true, weight:27.0, bonuses:[17.0, 24.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16386} -{name:"Marmaros longsword", itemDescription:"A razor-sharp longsword. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[26.0, 39.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16387} -{name:"Marmaros longsword", itemDescription:"A razor-sharp longsword. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:27.0, bonuses:[26.0, 39.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16388} -{name:"Kratonite longsword", itemDescription:"A razor-sharp longsword. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:27.0, bonuses:[34.0, 55.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16389} -{name:"Kratonite longsword", itemDescription:"A razor-sharp longsword. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:true, isNoteable:true, weight:27.0, bonuses:[34.0, 55.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16390} -{name:"Fractite longsword", itemDescription:"A razor-sharp longsword. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[42.0, 67.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16391} -{name:"Fractite longsword", itemDescription:"A razor-sharp longsword. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:27.0, bonuses:[42.0, 67.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16392} -{name:"Zephyrium longsword", itemDescription:"A razor-sharp longsword. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:27.0, bonuses:[51.0, 73.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16393} -{name:"Zephyrium longsword", itemDescription:"A razor-sharp longsword. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:true, isNoteable:true, weight:27.0, bonuses:[51.0, 73.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16394} -{name:"Argonite longsword", itemDescription:"A razor-sharp longsword. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:27.0, bonuses:[57.0, 82.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16395} -{name:"Argonite longsword", itemDescription:"A razor-sharp longsword. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:true, isNoteable:true, weight:27.0, bonuses:[57.0, 82.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16396} -{name:"Katagon longsword", itemDescription:"A razor-sharp longsword. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:27.0, bonuses:[63.0, 91.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16397} -{name:"Katagon longsword", itemDescription:"A razor-sharp longsword. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:true, isNoteable:true, weight:27.0, bonuses:[63.0, 91.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16398} -{name:"Gorgonite longsword", itemDescription:"A razor-sharp longsword. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[71.0, 101.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16399} -{name:"Gorgonite longsword", itemDescription:"A razor-sharp longsword. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:27.0, bonuses:[71.0, 101.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16400} -{name:"Promethium longsword", itemDescription:"A razor-sharp longsword. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:27.0, bonuses:[80.0, 111.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16401} -{name:"Promethium longsword", itemDescription:"A razor-sharp longsword. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:true, isNoteable:true, weight:27.0, bonuses:[80.0, 111.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 125.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16402} -{name:"Primal longsword", itemDescription:"A razor-sharp longsword. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[87.0, 120.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 134.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16403} -{name:"Primal longsword", itemDescription:"A razor-sharp longsword. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[87.0, 120.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 134.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16404} -{name:"Novite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 27.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16405} -{name:"Novite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 27.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16406} -{name:"Bathus maul", itemDescription:"A maul used to take life from those who don't deserve it. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 41.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16407} -{name:"Bathus maul", itemDescription:"A maul used to take life from those who don't deserve it. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 41.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16408} -{name:"Marmaros maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 65.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16409} -{name:"Marmaros maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 65.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 45.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16410} -{name:"Kratonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 89.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16411} -{name:"Kratonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 89.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16412} -{name:"Fractite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 99.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16413} -{name:"Fractite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 99.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 82.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16414} -{name:"Zephyrium maul", itemDescription:"To claim life from those who do not deserve it (Tier 6).", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 108.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16415} -{name:"Zephyrium maul", itemDescription:"To claim life from those who do not deserve it (Tier 6).", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 108.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16416} -{name:"Argonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 121.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16417} -{name:"Argonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 121.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16418} -{name:"Katagon maul", itemDescription:"A maul used to take life from those who don't deserve it. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 137.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 127.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16419} -{name:"Katagon maul", itemDescription:"A maul used to take life from those who don't deserve it. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 137.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 127.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16420} -{name:"Gorgonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 154.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16421} -{name:"Gorgonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 154.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16422} -{name:"Promethium maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 167.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 160.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16423} -{name:"Promethium maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 167.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 160.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16424} -{name:"Primal maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 185.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 166.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16425} -{name:"Primal maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 185.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 166.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16426} -{name:"Novite arrows", itemDescription:"Bow ammunition (Tier 1)", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16427} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16428} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16429} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16430} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16431} -{name:"Bathus arrows", itemDescription:"Bow ammunition. (Tier 2)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16432} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16433} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16434} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16435} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16436} -{name:"Marmaros arrows", itemDescription:"Bow ammunition. (Tier 3)", shopValue:130, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16437} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16438} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16439} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16440} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16441} -{name:"Kratonite arrows", itemDescription:"Bow ammunition. (Tier 4)", shopValue:170, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16442} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16443} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16444} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16445} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16446} -{name:"Fractite arrows", itemDescription:"Bow ammunition. (Tier 5)", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16447} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16448} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16449} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16450} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16451} -{name:"Zephyrium arrows", itemDescription:"Bow ammunition. (Tier 6)", shopValue:260, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16452} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16453} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16454} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16455} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16456} -{name:"Argonite arrows", itemDescription:"Bow ammunition. (Tier 7)", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16457} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16458} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16459} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16460} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16461} -{name:"Katagon arrows", itemDescription:"Bow ammunition. (Tier 8)", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16462} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16463} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16464} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16465} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16466} -{name:"Gorgonite arrows", itemDescription:"Bow ammunition. (Tier 9)", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16467} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16468} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16469} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16470} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16471} -{name:"Promethium arrows", itemDescription:"Bow ammunition. (Tier 10)", shopValue:470, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16472} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16473} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16474} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16475} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16476} -{name:"Sagittarian arrows", itemDescription:"Bow ammunition. (Tier 11)", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16477} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16478} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16479} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16480} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16481} -{name:"Novite arrows (p)", itemDescription:"Bow ammunition (Tier 1)", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16482} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16483} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16484} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16485} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16486} -{name:"Bathus arrows (p)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16487} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16488} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16489} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16490} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16491} -{name:"Marmaros arrows (p)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:130, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16492} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16493} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16494} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16495} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16496} -{name:"Kratonite arrows (p)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:170, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16497} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16498} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16499} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16500} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16501} -{name:"Fractite arrows (p)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16502} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16503} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16504} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16505} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16506} -{name:"Zephyrium arrows (p)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:260, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16507} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16508} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16509} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16510} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16511} -{name:"Argonite arrows (p)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16512} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16513} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16514} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16515} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16516} -{name:"Katagon arrows (p)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16517} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16518} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16519} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16520} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16521} -{name:"Gorgonite arrows (p)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16522} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16523} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16524} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16525} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16526} -{name:"Promethium arrows (p)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:470, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16527} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16528} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16529} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16530} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16531} -{name:"Sagittarian arrows (p)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16532} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16533} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16534} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16535} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16536} -{name:"Novite arrows (p+)", itemDescription:"Bow ammunition (Tier 1)", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16537} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16538} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16539} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16540} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16541} -{name:"Bathus arrows (p+)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16542} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16543} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16544} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16545} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16546} -{name:"Marmaros arrows (p+)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:130, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16547} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16548} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16549} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16550} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16551} -{name:"Kratonite arrows (p+)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:170, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16552} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16553} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16554} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16555} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16556} -{name:"Fractite arrows (p+)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16557} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16558} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16559} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16560} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16561} -{name:"Zephyrium arrows (p+)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:260, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16562} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16563} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16564} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16565} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16566} -{name:"Argonite arrows (p+)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16567} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16568} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16569} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16570} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16571} -{name:"Katagon arrows (p+)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16572} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16573} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16574} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16575} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16576} -{name:"Gorgonite arrows (p+)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16577} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16578} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16579} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16580} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16581} -{name:"Promethium arrows (p+)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:470, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16582} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16583} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16584} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16585} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16586} -{name:"Sagittarian arrows (p+)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16587} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16588} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16589} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16590} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16591} -{name:"Novite arrows (p++)", itemDescription:"Bow ammunition (Tier 1)", shopValue:40, lowAlch:16, highAlch:24, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16592} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16593} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16594} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16595} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16596} -{name:"Bathus arrows (p++)", itemDescription:"Bow ammunition. (Tier 2)", shopValue:80, lowAlch:32, highAlch:48, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16597} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16598} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16599} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16600} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16601} -{name:"Marmaros arrows (p++)", itemDescription:"Bow ammunition. (Tier 3)", shopValue:130, lowAlch:52, highAlch:78, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16602} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16603} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16604} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16605} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16606} -{name:"Kratonite arrows (p++)", itemDescription:"Bow ammunition. (Tier 4)", shopValue:170, lowAlch:68, highAlch:102, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 170.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16607} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16608} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16609} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16610} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16611} -{name:"Fractite arrows (p++)", itemDescription:"Bow ammunition. (Tier 5)", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 190.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16612} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16613} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16614} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16615} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16616} -{name:"Zephyrium arrows (p++)", itemDescription:"Bow ammunition. (Tier 6)", shopValue:260, lowAlch:104, highAlch:156, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 21.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16617} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16618} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16619} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16620} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16621} -{name:"Argonite arrows (p++)", itemDescription:"Bow ammunition. (Tier 7)", shopValue:320, lowAlch:128, highAlch:192, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 240.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16622} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16623} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16624} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16625} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16626} -{name:"Katagon arrows (p++)", itemDescription:"Bow ammunition. (Tier 8)", shopValue:360, lowAlch:144, highAlch:216, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 280.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16627} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16628} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16629} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16630} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16631} -{name:"Gorgonite arrows (p++)", itemDescription:"Bow ammunition. (Tier 9)", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16632} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16633} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16634} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16635} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16636} -{name:"Promethium arrows (p++)", itemDescription:"Bow ammunition. (Tier 10)", shopValue:470, lowAlch:188, highAlch:282, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 37.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16637} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16638} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16639} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16640} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16641} -{name:"Sagittarian arrows (p++)", itemDescription:"Bow ammunition. (Tier 11)", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 46.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16642} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16643} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16644} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16645} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16646} -{name:"Novite plateskirt", itemDescription:"Designer leg protection. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 9.0, 10.0, 17.0, -4.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16647} -{name:"Novite plateskirt", itemDescription:"Designer leg protection. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 9.0, 10.0, 17.0, -4.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16648} -{name:"Bathus plateskirt", itemDescription:"Designer leg protection. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 17.0, 19.0, 32.0, -4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16649} -{name:"Bathus plateskirt", itemDescription:"Designer leg protection. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 17.0, 19.0, 32.0, -4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16650} -{name:"Marmaros plateskirt", itemDescription:"Designer leg protection. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 25.0, 28.0, 46.0, -4.0, 28.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16651} -{name:"Marmaros plateskirt", itemDescription:"Designer leg protection. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 25.0, 28.0, 46.0, -4.0, 28.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16652} -{name:"Kratonite plateskirt", itemDescription:"Designer leg protection. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 34.0, 38.0, 64.0, -4.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16653} -{name:"Kratonite plateskirt", itemDescription:"Designer leg protection. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 34.0, 38.0, 64.0, -4.0, 38.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16654} -{name:"Fractite plateskirt", itemDescription:"Designer leg protection. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 44.0, 49.0, 82.0, -4.0, 49.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16655} -{name:"Fractite plateskirt", itemDescription:"Designer leg protection. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 44.0, 49.0, 82.0, -4.0, 49.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16656} -{name:"Zephyrium plateskirt", itemDescription:"Designer leg protection. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 55.0, 61.0, 98.0, -4.0, 61.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16657} -{name:"Zephyrium plateskirt", itemDescription:"Designer leg protection. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 55.0, 61.0, 98.0, -4.0, 61.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16658} -{name:"Argonite plateskirt", itemDescription:"Designer leg protection. (Tier 7)", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 65.0, 72.0, 117.0, -4.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16659} -{name:"Argonite plateskirt", itemDescription:"Designer leg protection. (Tier 7)", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 65.0, 72.0, 117.0, -4.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16660} -{name:"Katagon plateskirt", itemDescription:"Designer leg protection. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 76.0, 85.0, 137.0, -4.0, 86.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16661} -{name:"Katagon plateskirt", itemDescription:"Designer leg protection. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 76.0, 85.0, 137.0, -4.0, 86.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16662} -{name:"Gorgonite plateskirt", itemDescription:"Designer leg protection. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 87.0, 98.0, 158.0, -4.0, 99.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16663} -{name:"Gorgonite plateskirt", itemDescription:"Designer leg protection. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 87.0, 98.0, 158.0, -4.0, 99.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16664} -{name:"Promethium plateskirt", itemDescription:"Designer leg protection. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 98.0, 111.0, 179.0, -4.0, 113.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16665} -{name:"Promethium plateskirt", itemDescription:"Designer leg protection. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:true, isNoteable:true, weight:81.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 98.0, 111.0, 179.0, -4.0, 113.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16666} -{name:"Primal plateskirt", itemDescription:" Designer leg protection. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 109.0, 123.0, 199.0, -4.0, 125.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16667} -{name:"Primal plateskirt", itemDescription:" Designer leg protection. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -18.0, -3.0, 109.0, 123.0, 199.0, -4.0, 125.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16668} -{name:"Novite platelegs", itemDescription:"These look pretty heavy. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 16.0, 13.0, 7.0, -4.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16669} -{name:"Novite platelegs", itemDescription:"These look pretty heavy. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 16.0, 13.0, 7.0, -4.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16670} -{name:"Bathus platelegs", itemDescription:"These look pretty heavy. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 30.0, 25.0, 13.0, -4.0, 28.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16671} -{name:"Bathus platelegs", itemDescription:"These look pretty heavy. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 30.0, 25.0, 13.0, -4.0, 28.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16672} -{name:"Marmaros platelegs", itemDescription:"These look pretty heavy. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 43.0, 36.0, 20.0, -4.0, 41.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16673} -{name:"Marmaros platelegs", itemDescription:"These look pretty heavy. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 43.0, 36.0, 20.0, -4.0, 41.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16674} -{name:"Kratonite platelegs", itemDescription:"These look pretty heavy. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 58.0, 49.0, 27.0, -4.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16675} -{name:"Kratonite platelegs", itemDescription:"These look pretty heavy. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 58.0, 49.0, 27.0, -4.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16676} -{name:"Fractite platelegs", itemDescription:"These look pretty heavy. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 74.0, 63.0, 35.0, -4.0, 72.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16677} -{name:"Fractite platelegs", itemDescription:"These look pretty heavy. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 74.0, 63.0, 35.0, -4.0, 72.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16678} -{name:"Zephyrium platelegs", itemDescription:"These look pretty heavy. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 91.0, 78.0, 48.0, -4.0, 89.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16679} -{name:"Zephyrium platelegs", itemDescription:"These look pretty heavy. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 91.0, 78.0, 48.0, -4.0, 89.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16680} -{name:"Argonite platelegs", itemDescription:"These look pretty heavy. (Tier 7).", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 107.0, 93.0, 51.0, -4.0, 106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16681} -{name:"Argonite platelegs", itemDescription:"These look pretty heavy. (Tier 7).", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 107.0, 93.0, 51.0, -4.0, 106.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16682} -{name:"Katagon platelegs", itemDescription:"These look pretty heavy. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 126.0, 109.0, 60.0, -4.0, 124.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16683} -{name:"Katagon platelegs", itemDescription:"These look pretty heavy. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 126.0, 109.0, 60.0, -4.0, 124.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16684} -{name:"Gorgonite platelegs", itemDescription:"These look pretty heavy. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 145.0, 125.0, 69.0, -4.0, 143.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16685} -{name:"Gorgonite platelegs", itemDescription:"These look pretty heavy. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 145.0, 125.0, 69.0, -4.0, 143.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16686} -{name:"Promethium platelegs", itemDescription:"These look pretty heavy. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 164.0, 142.0, 78.0, -4.0, 163.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16687} -{name:"Promethium platelegs", itemDescription:"These look pretty heavy. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 164.0, 142.0, 78.0, -4.0, 163.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16688} -{name:"Primal platelegs", itemDescription:"These lookpretty heavy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 182.0, 158.0, 87.0, -4.0, 181.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16689} -{name:"Primal platelegs", itemDescription:"These lookpretty heavy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 182.0, 158.0, 87.0, -4.0, 181.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16690} -{name:"Novite full helm", itemDescription:"A full face helmet. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 5.0, 6.0, 3.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16691} -{name:"Novite full helm", itemDescription:"A full face helmet. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 5.0, 6.0, 3.0, -1.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16692} -{name:"Bathus full helm", itemDescription:"A full face helmet. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 11.0, 6.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16693} -{name:"Bathus full helm", itemDescription:"A full face helmet. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 9.0, 11.0, 6.0, -1.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16694} -{name:"Marmaros full helm", itemDescription:"A full face helmet. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 17.0, 19.0, 10.0, -1.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16695} -{name:"Marmaros full helm", itemDescription:"A full face helmet. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 17.0, 19.0, 10.0, -1.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16696} -{name:"Kratonite full helm", itemDescription:"A full face helmet. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 23.0, 26.0, 14.0, -1.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16697} -{name:"Kratonite full helm", itemDescription:"A full face helmet. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 23.0, 26.0, 14.0, -1.0, 24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16698} -{name:"Fractite full helm", itemDescription:"A full face helmet. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 29.0, 33.0, 18.0, -1.0, 31.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16699} -{name:"Fractite full helm", itemDescription:"A full face helmet. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 29.0, 33.0, 18.0, -1.0, 31.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16700} -{name:"Zephyrium full helm", itemDescription:"A full face helmet. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 36.0, 41.0, 22.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16701} -{name:"Zephyrium full helm", itemDescription:"A full face helmet. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 36.0, 41.0, 22.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16702} -{name:"Argonite full helm", itemDescription:"A full face helmet. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 43.0, 49.0, 26.0, -1.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16703} -{name:"Argonite full helm", itemDescription:"A full face helmet. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 43.0, 49.0, 26.0, -1.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16704} -{name:"Katagon full helm", itemDescription:"A full face helmet. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 57.0, 30.0, -1.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16705} -{name:"Katagon full helm", itemDescription:"A full face helmet. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 57.0, 30.0, -1.0, 53.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16706} -{name:"Gorgonite full helm", itemDescription:"A full face helmet. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 58.0, 66.0, 35.0, -1.0, 61.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16707} -{name:"Gorgonite full helm", itemDescription:"A full face helmet. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 58.0, 66.0, 35.0, -1.0, 61.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16708} -{name:"Promethium full helm", itemDescription:"A full face helmet. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 67.0, 75.0, 41.0, -1.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16709} -{name:"Promethium full helm", itemDescription:"A full face helmet. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 67.0, 75.0, 41.0, -1.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16710} -{name:"Primal full helm", itemDescription:"A full face helmet. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 74.0, 83.0, 46.0, -1.0, 77.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16711} -{name:"Primal full helm", itemDescription:"A full face helmet. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 74.0, 83.0, 46.0, -1.0, 77.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16712} -{name:"Novite chainbody", itemDescription:"A series of connected metal rings. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 14.0, 24.0, -3.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16713} -{name:"Novite chainbody", itemDescription:"A series of connected metal rings. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 14.0, 24.0, -3.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16714} -{name:"Bathus chainbody", itemDescription:"A series of connected metal rings. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 19.0, 26.0, 42.0, -3.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16715} -{name:"Bathus chainbody", itemDescription:"A series of connected metal rings. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 19.0, 26.0, 42.0, -3.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16716} -{name:"Marmaros chainbody", itemDescription:"A series of connected metal rings. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 29.0, 40.0, 63.0, -3.0, 32.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16717} -{name:"Marmaros chainbody", itemDescription:"A series of connected metal rings. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 29.0, 40.0, 63.0, -3.0, 32.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16718} -{name:"Kratonite chainbody", itemDescription:"A series of connected metal rings. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 39.0, 54.0, 87.0, -3.0, 44.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16719} -{name:"Kratonite chainbody", itemDescription:"A series of connected metal rings. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 39.0, 54.0, 87.0, -3.0, 44.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16720} -{name:"Fractite chainbody", itemDescription:"A series of connected metal rings. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 50.0, 69.0, 111.0, -3.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16721} -{name:"Fractite chainbody", itemDescription:"A series of connected metal rings. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 50.0, 69.0, 111.0, -3.0, 56.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16722} -{name:"Zephyrium chainbody", itemDescription:"A series of connected metal rings. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 62.0, 86.0, 135.0, -3.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16723} -{name:"Zephyrium chainbody", itemDescription:"A series of connected metal rings. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 62.0, 86.0, 135.0, -3.0, 69.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16724} -{name:"Argonite chainbody", itemDescription:"A series of connected metal rings. (Tier 7)", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 74.0, 102.0, 161.0, -3.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16725} -{name:"Argonite chainbody", itemDescription:"A series of connected metal rings. (Tier 7)", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 74.0, 102.0, 161.0, -3.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16726} -{name:"Katagon chainbody", itemDescription:"A series of metal connected rings. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 87.0, 119.0, 188.0, -3.0, 96.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16727} -{name:"Katagon chainbody", itemDescription:"A series of metal connected rings. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 87.0, 119.0, 188.0, -3.0, 96.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16728} -{name:"Gorgonite chainbody", itemDescription:"A series of connected metal rings. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 100.0, 137.0, 216.0, -3.0, 110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16729} -{name:"Gorgonite chainbody", itemDescription:"A series of connected metal rings. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 100.0, 137.0, 216.0, -3.0, 110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16730} -{name:"Promethium chainbody", itemDescription:"A series of connected metal rings. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 113.0, 155.0, 245.0, -3.0, 124.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16731} -{name:"Promethium chainbody", itemDescription:"A series of connected metal rings. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:true, isNoteable:true, weight:68.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 113.0, 155.0, 245.0, -3.0, 124.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16732} -{name:"Primal chainbody", itemDescription:"A series of connected metal rings. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 125.0, 172.0, 272.0, -3.0, 138.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16733} -{name:"Primal chainbody", itemDescription:"A series of connected metal rings. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -15.0, 0.0, 125.0, 172.0, 272.0, -3.0, 138.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16734} -{name:"Salve hood", itemDescription:"A hood worn by mages. (Tier 1)", shopValue:560, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 1.0, -3.0, 1.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16735} -{name:"Salve hood", itemDescription:"A hood worn by mages. (Tier 1)", shopValue:560, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 1.0, -3.0, 1.0, 1.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16736} -{name:"Wildercress hood", itemDescription:"A hood worn by mages. (Tier 2)", shopValue:1360, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 1.0, -3.0, 2.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16737} -{name:"Wildercress hood", itemDescription:"A hood worn by mages. (Tier 2)", shopValue:1360, lowAlch:544, highAlch:816, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 1.0, -3.0, 2.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16738} -{name:"Blightleaf hood", itemDescription:"A hood worn by mages. (Tier 3)", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 2.0, -3.0, 4.0, 3.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16739} -{name:"Blightleaf hood", itemDescription:"A hood worn by mages. (Tier 3)", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 2.0, -3.0, 4.0, 3.0, 5.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16740} -{name:"Roseblood hood", itemDescription:"A hood worn by mages. (Tier 4)", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 2.0, -3.0, 5.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16741} -{name:"Roseblood hood", itemDescription:"A hood worn by mages. (Tier 4)", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 2.0, -3.0, 5.0, 4.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16742} -{name:"Bryll hood", itemDescription:"A hood worn by mages. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 4.0, -3.0, 6.0, 5.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16743} -{name:"Bryll hood", itemDescription:"A hood worn by mages. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 4.0, -3.0, 6.0, 5.0, 9.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16744} -{name:"Duskweed hood", itemDescription:"A hood worn by mages. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 6.0, -3.0, 7.0, 5.0, 11.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16745} -{name:"Duskweed hood", itemDescription:"A hood worn by mages. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 6.0, -3.0, 7.0, 5.0, 11.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16746} -{name:"Soulbell hood", itemDescription:"A hood worn by mages. (Tier 7)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 7.0, -3.0, 8.0, 6.0, 13.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16747} -{name:"Soulbell hood", itemDescription:"A hood worn by mages. (Tier 7)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 7.0, -3.0, 8.0, 6.0, 13.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16748} -{name:"Ectohood", itemDescription:"A hood worn by mages. (Tier 8)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 8.0, -3.0, 9.0, 7.0, 15.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16749} -{name:"Ectohood", itemDescription:"A hood worn by mages. (Tier 8)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 8.0, -3.0, 9.0, 7.0, 15.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16750} -{name:"Runic hood", itemDescription:"A hood worn by mages. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 10.0, -3.0, 10.0, 8.0, 17.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16751} -{name:"Runic hood", itemDescription:"A hood worn by mages. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 10.0, -3.0, 10.0, 8.0, 17.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16752} -{name:"Spiritbloom hood", itemDescription:"A hood worn by mages. (Tier 10)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 11.0, -3.0, 12.0, 10.0, 19.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16753} -{name:"Spiritbloom hood", itemDescription:"A hood worn by mages. (Tier 10)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-3.0, -3.0, -3.0, 11.0, -3.0, 12.0, 10.0, 19.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16754} -{name:"Celestial hood", itemDescription:"A hood worn by mages. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[-3.0, -3.0, -3.0, 13.0, -3.0, 14.0, 11.0, 21.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16755} -{name:"Celestial hood", itemDescription:"A hood worn by mages. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[-3.0, -3.0, -3.0, 13.0, -3.0, 14.0, 11.0, 21.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16756} -{name:"Novite dagger", itemDescription:"Short but pointy. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16757} -{name:"Novite dagger", itemDescription:"Short but pointy. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16758} -{name:"Novite dagger (p)", itemDescription:"Short but pointy. (Tier 1)", shopValue:2000, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16759} -{name:"Novite dagger (p)", itemDescription:"Short but pointy. (Tier 1)", shopValue:2000, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16760} -{name:"Novite dagger (p+)", itemDescription:"Short but pointy. (Tier 1)", shopValue:3100, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16761} -{name:"Novite dagger (p+)", itemDescription:"Short but pointy. (Tier 1)", shopValue:3100, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16762} -{name:"Novite dagger (p++)", itemDescription:"Short but pointy. (Tier 1)", shopValue:4200, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16763} -{name:"Novite dagger (p++)", itemDescription:"Short but pointy. (Tier 1)", shopValue:4200, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:4.0, bonuses:[5.0, 2.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16764} -{name:"Bathus dagger", itemDescription:"Short but pointy. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16765} -{name:"Bathus dagger", itemDescription:"Short but pointy. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16766} -{name:"Bathus dagger (p)", itemDescription:"Short but pointy. (Tier 2)", shopValue:2500, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16767} -{name:"Bathus dagger (p)", itemDescription:"Short but pointy. (Tier 2)", shopValue:2500, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16768} -{name:"Bathus dagger (p+)", itemDescription:"Short but pointy. (Tier 2)", shopValue:3600, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16769} -{name:"Bathus dagger (p+)", itemDescription:"Short but pointy. (Tier 2)", shopValue:3600, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16770} -{name:"Bathus dagger (p++)", itemDescription:"Short but pointy. (Tier 2)", shopValue:4700, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16771} -{name:"Bathus dagger (p++)", itemDescription:"Short but pointy. (Tier 2)", shopValue:4700, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:4.0, bonuses:[10.0, 4.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16772} -{name:"Marmaros dagger", itemDescription:"Short but pointy. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16773} -{name:"Marmaros dagger", itemDescription:"Short but pointy. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16774} -{name:"Marmaros dagger (p)", itemDescription:"Short but pointy. (Tier 3)", shopValue:3250, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16775} -{name:"Marmaros dagger (p)", itemDescription:"Short but pointy. (Tier 3)", shopValue:3250, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16776} -{name:"Marmaros dagger (p+)", itemDescription:"Short but pointy. (Tier 3)", shopValue:4350, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16777} -{name:"Marmaros dagger (p+)", itemDescription:"Short but pointy. (Tier 3)", shopValue:4350, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16778} -{name:"Marmaros dagger (p++)", itemDescription:"Short but pointy. (Tier 3)", shopValue:5450, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16779} -{name:"Marmaros dagger (p++)", itemDescription:"Short but pointy. (Tier 3)", shopValue:5450, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:4.0, bonuses:[18.0, 8.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16780} -{name:"Kratonite dagger", itemDescription:"Short but pointy. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16781} -{name:"Kratonite dagger", itemDescription:"Short but pointy. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16782} -{name:"Kratonite dagger (p)", itemDescription:"Short but pointy. (Tier 4)", shopValue:3850, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16783} -{name:"Kratonite dagger (p)", itemDescription:"Short but pointy. (Tier 4)", shopValue:3850, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16784} -{name:"Kratonite dagger (p+)", itemDescription:"Short but pointy. (Tier 4)", shopValue:4950, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16785} -{name:"Kratonite dagger (p+)", itemDescription:"Short but pointy. (Tier 4)", shopValue:4950, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16786} -{name:"Kratonite dagger (p++)", itemDescription:"Short but pointy. (Tier 4)", shopValue:6050, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16787} -{name:"Kratonite dagger (p++)", itemDescription:"Short but pointy. (Tier 4)", shopValue:6050, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:4.0, bonuses:[26.0, 12.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16788} -{name:"Fractite dagger", itemDescription:"Short but pointy. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16789} -{name:"Fractite dagger", itemDescription:"Short but pointy. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16790} -{name:"Fractite dagger (p)", itemDescription:"Short but pointy. (Tier 5)", shopValue:4700, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16791} -{name:"Fractite dagger (p)", itemDescription:"Short but pointy. (Tier 5)", shopValue:4700, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16792} -{name:"Fractite dagger (p+)", itemDescription:"Short but pointy. (Tier 5)", shopValue:5800, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16793} -{name:"Fractite dagger (p+)", itemDescription:"Short but pointy. (Tier 5)", shopValue:5800, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16794} -{name:"Fractite dagger (p++)", itemDescription:"Short but pointy. (Tier 5)", shopValue:6900, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16795} -{name:"Fractite dagger (p++)", itemDescription:"Short but pointy. (Tier 5)", shopValue:6900, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:4.0, bonuses:[33.0, 15.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16796} -{name:"Zephyrium dagger", itemDescription:"Short but pointy. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16797} -{name:"Zephyrium dagger", itemDescription:"Short but pointy. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16798} -{name:"Zephyrium dagger (p)", itemDescription:"Short but pointy. (Tier 6)", shopValue:5200, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16799} -{name:"Zephyrium dagger (p)", itemDescription:"Short but pointy. (Tier 6)", shopValue:5200, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16800} -{name:"Zephyrium dagger (p+)", itemDescription:"Short but pointy. (Tier 6)", shopValue:6300, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16801} -{name:"Zephyrium dagger (p+)", itemDescription:"Short but pointy. (Tier 6)", shopValue:6300, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16802} -{name:"Zephyrium dagger (p++)", itemDescription:"Short but pointy. (Tier 6)", shopValue:7400, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16803} -{name:"Zephyrium dagger (p++)", itemDescription:"Short but pointy. (Tier 6)", shopValue:7400, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:4.0, bonuses:[40.0, 17.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16804} -{name:"Argonite dagger", itemDescription:"Short but pointy. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16805} -{name:"Argonite dagger", itemDescription:"Short but pointy. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16806} -{name:"Argonite dagger (p)", itemDescription:"Short but pointy. (Tier 7)", shopValue:6100, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16807} -{name:"Argonite dagger (p)", itemDescription:"Short but pointy. (Tier 7)", shopValue:6100, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16808} -{name:"Argonite dagger (p+)", itemDescription:"Short but pointy. (Tier 7)", shopValue:7200, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16809} -{name:"Argonite dagger (p+)", itemDescription:"Short but pointy. (Tier 7)", shopValue:7200, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16810} -{name:"Argonite dagger (p++)", itemDescription:"Short but pointy. (Tier 7)", shopValue:8300, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16811} -{name:"Argonite dagger (p++)", itemDescription:"Short but pointy. (Tier 7)", shopValue:8300, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:4.0, bonuses:[46.0, 20.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 51.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16812} -{name:"Katagon dagger", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16813} -{name:"Katagon dagger", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16814} -{name:"Katagon dagger (p)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:6700, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16815} -{name:"Katagon dagger (p)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:6700, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16816} -{name:"Katagon dagger (p+)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:7800, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16817} -{name:"Katagon dagger (p+)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:7800, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16818} -{name:"Katagon dagger (p++)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:8900, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16819} -{name:"Katagon dagger (p++)", itemDescription:"Sharp but pointy. (Tier 8)", shopValue:8900, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:4.0, bonuses:[52.0, 22.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16820} -{name:"Gorgonite dagger", itemDescription:"Short but pointy. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16821} -{name:"Gorgonite dagger", itemDescription:"Short but pointy. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16822} -{name:"Gorgonite dagger (p)", itemDescription:"Short but pointy. (Tier 9)", shopValue:7400, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16823} -{name:"Gorgonite dagger (p)", itemDescription:"Short but pointy. (Tier 9)", shopValue:7400, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16824} -{name:"Gorgonite dagger (p+)", itemDescription:"Short but pointy. (Tier 9)", shopValue:8500, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16825} -{name:"Gorgonite dagger (p+)", itemDescription:"Short but pointy. (Tier 9)", shopValue:8500, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16826} -{name:"Gorgonite dagger (p++)", itemDescription:"Short but pointy. (Tier 9)", shopValue:9600, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16827} -{name:"Gorgonite dagger (p++)", itemDescription:"Short but pointy. (Tier 9)", shopValue:9600, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:4.0, bonuses:[59.0, 25.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 83.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16828} -{name:"Promethium dagger", itemDescription:" The blade is dripping with poison.", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16829} -{name:"Promethium dagger", itemDescription:" The blade is dripping with poison.", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16830} -{name:"Promethium dagger (p)", itemDescription:" The blade is dripping with poison.", shopValue:8450, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16831} -{name:"Promethium dagger (p)", itemDescription:" The blade is dripping with poison.", shopValue:8450, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16832} -{name:"Promethium dagger (p+)", itemDescription:" The blade is dripping with poison.", shopValue:9550, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16833} -{name:"Promethium dagger (p+)", itemDescription:" The blade is dripping with poison.", shopValue:9550, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16834} -{name:"Promethium dagger (p++)", itemDescription:" The blade is dripping with poison.", shopValue:10650, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16835} -{name:"Promethium dagger (p++)", itemDescription:" The blade is dripping with poison.", shopValue:10650, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[68.0, 28.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 97.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16836} -{name:"Primal dagger", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16837} -{name:"Primal dagger", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16838} -{name:"Primal dagger (p)", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16839} -{name:"Primal dagger (p)", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16840} -{name:"Primal dagger (p+)", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16841} -{name:"Primal dagger (p+)", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16842} -{name:"Primal dagger (p++)", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16843} -{name:"Primal dagger (p++)", itemDescription:"Short but pointy. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[74.0, 32.0, -4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 102.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16844} -{name:"Salve robe bottom", itemDescription:"The lower half of a magical robe. (Tier 1)", shopValue:840, lowAlch:336, highAlch:504, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 1.0, -5.0, 3.0, 2.0, 4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16845} -{name:"Salve robe bottom", itemDescription:"The lower half of a magical robe. (Tier 1)", shopValue:840, lowAlch:336, highAlch:504, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 1.0, -5.0, 3.0, 2.0, 4.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16846} -{name:"Wildercress robe bottom", itemDescription:"The lower half of a magical robe. (Tier 2)", shopValue:2040, lowAlch:816, highAlch:1224, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 3.0, -5.0, 6.0, 4.0, 8.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16847} -{name:"Wildercress robe bottom", itemDescription:"The lower half of a magical robe. (Tier 2)", shopValue:2040, lowAlch:816, highAlch:1224, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 3.0, -5.0, 6.0, 4.0, 8.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16848} -{name:"Blightleaf robe bottom", itemDescription:"The lower half of a magical robe. (Tier 3)", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 4.0, -5.0, 9.0, 6.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16849} -{name:"Blightleaf robe bottom", itemDescription:"The lower half of a magical robe. (Tier 3)", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 4.0, -5.0, 9.0, 6.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16850} -{name:"Roseblood robe bottom", itemDescription:"The lower half of a magical robe. (Tier 4)", shopValue:5280, lowAlch:2112, highAlch:3168, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 5.0, -5.0, 12.0, 8.0, 16.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16851} -{name:"Roseblood robe bottom", itemDescription:"The lower half of a magical robe. (Tier 4)", shopValue:5280, lowAlch:2112, highAlch:3168, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 5.0, -5.0, 12.0, 8.0, 16.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16852} -{name:"Bryll robe bottom", itemDescription:"The lower half of a magical robe. (Tier 5)", shopValue:7320, lowAlch:2928, highAlch:4392, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 7.0, -5.0, 16.0, 10.0, 21.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16853} -{name:"Bryll robe bottom", itemDescription:"The lower half of a magical robe. (Tier 5)", shopValue:7320, lowAlch:2928, highAlch:4392, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 7.0, -5.0, 16.0, 10.0, 21.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16854} -{name:"Duskweed robe bottom", itemDescription:"The lower half of a magical robe. (Tier 6)", shopValue:8520, lowAlch:3408, highAlch:5112, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 11.0, -5.0, 20.0, 12.0, 26.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16855} -{name:"Duskweed robe bottom", itemDescription:"The lower half of a magical robe. (Tier 6)", shopValue:8520, lowAlch:3408, highAlch:5112, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 11.0, -5.0, 20.0, 12.0, 26.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16856} -{name:"Soulbell robe bottom", itemDescription:"The lower half of a magical robe. (Tier 7)", shopValue:10680, lowAlch:4272, highAlch:6408, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 13.0, -5.0, 24.0, 15.0, 31.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16857} -{name:"Soulbell robe bottom", itemDescription:"The lower half of a magical robe. (Tier 7)", shopValue:10680, lowAlch:4272, highAlch:6408, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 13.0, -5.0, 24.0, 15.0, 31.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16858} -{name:"Ectorobe bottom", itemDescription:"The lower half of a magical robe. (Tier 8)", shopValue:12120, lowAlch:4848, highAlch:7272, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 15.0, -5.0, 28.0, 18.0, 36.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16859} -{name:"Ectorobe bottom", itemDescription:"The lower half of a magical robe. (Tier 8)", shopValue:12120, lowAlch:4848, highAlch:7272, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 15.0, -5.0, 28.0, 18.0, 36.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16860} -{name:"Runic robe bottom", itemDescription:"The lower half of a magical robe. (Tier 9)", shopValue:13800, lowAlch:5520, highAlch:8280, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 17.0, -5.0, 32.0, 22.0, 41.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16861} -{name:"Runic robe bottom", itemDescription:"The lower half of a magical robe. (Tier 9)", shopValue:13800, lowAlch:5520, highAlch:8280, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 17.0, -5.0, 32.0, 22.0, 41.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16862} -{name:"Spiritbloom robe bottom", itemDescription:"The lower half of a magical robe. (Tier 10)", shopValue:16320, lowAlch:6528, highAlch:9792, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 19.0, -5.0, 36.0, 25.0, 46.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16863} -{name:"Spiritbloom robe bottom", itemDescription:"The lower half of a magical robe. (Tier 10)", shopValue:16320, lowAlch:6528, highAlch:9792, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 19.0, -5.0, 36.0, 25.0, 46.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16864} -{name:"Celestial robe bottom", itemDescription:"The lower half of a magical robe. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 21.0, -5.0, 40.0, 29.0, 51.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16865} -{name:"Celestial robe bottom", itemDescription:"The lower half of a magical robe. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-5.0, -5.0, -5.0, 21.0, -5.0, 40.0, 29.0, 51.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16866} -{name:"Tangle gum shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 1)", shopValue:550, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16867} -{name:"Tangle gum shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 1)", shopValue:550, lowAlch:220, highAlch:330, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16868} -{name:"Seeping elm shortbow", itemDescription:"A small bow, only effective at a short distance. (Tier 2)", shopValue:1360, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16869} -{name:"Seeping elm shortbow", itemDescription:"A small bow, only effective at a short distance. (Tier 2)", shopValue:1360, lowAlch:544, highAlch:816, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16870} -{name:"Blood spindle shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 3)", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16871} -{name:"Blood spindle shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 3)", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16872} -{name:"Utuku shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 4)", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16873} -{name:"Utuku shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 4)", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16874} -{name:"Spinebeam shortbow", itemDescription:"A small bow, only effective at a short distance. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16875} -{name:"Spinebeam shortbow", itemDescription:"A small bow, only effective at a short distance. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16876} -{name:"Bovistrangler shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16877} -{name:"Bovistrangler shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16878} -{name:"Thigat shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 7)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16879} -{name:"Thigat shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 7)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 36.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16880} -{name:"Corpsethorn shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 8)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16881} -{name:"Corpsethorn shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 8)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16882} -{name:"Entgallow shortbow", itemDescription:"A small bow, only effective at short distances. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16883} -{name:"Entgallow shortbow", itemDescription:"A small bow, only effective at short distances. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16884} -{name:"Grave creeper shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 10)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16885} -{name:"Grave creeper shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 10)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 57.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16886} -{name:"Sagittarian shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16887} -{name:"Sagittarian shortbow", itemDescription:"A small bow, only effective at short distance. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16888} -{name:"Novite 2h sword", itemDescription:"A two-handed sword. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 25.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16889} -{name:"Novite 2h sword", itemDescription:"A two-handed sword. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 25.0, 21.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16890} -{name:"Bathus 2h sword", itemDescription:"A two-handed sword. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 39.0, 30.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16891} -{name:"Bathus 2h sword", itemDescription:"A two-handed sword. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 39.0, 30.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16892} -{name:"Marmaros 2h sword", itemDescription:"A two-handed sword. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 62.0, 47.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16893} -{name:"Marmaros 2h sword", itemDescription:"A two-handed sword. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 62.0, 47.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16894} -{name:"Kratonite 2h sword", itemDescription:"A two-handed sword. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 84.0, 66.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16895} -{name:"Kratonite 2h sword", itemDescription:"A two-handed sword. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 84.0, 66.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 55.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16896} -{name:"Fractite 2h sword", itemDescription:"A 2-handed sword. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 95.0, 76.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16897} -{name:"Fractite 2h sword", itemDescription:"A 2-handed sword. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 95.0, 76.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16898} -{name:"Zephyrium 2h sword", itemDescription:"A two-handed sword. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 104.0, 84.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16899} -{name:"Zephyrium 2h sword", itemDescription:"A two-handed sword. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 104.0, 84.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 94.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16900} -{name:"Argonite 2h sword", itemDescription:"A two-handed sword. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 115.0, 94.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 110.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16901} -{name:"Argonite 2h sword", itemDescription:"A two-handed sword. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 115.0, 94.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 110.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16902} -{name:"Katagon 2h sword", itemDescription:"A two-handed sword. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 129.0, 106.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16903} -{name:"Katagon 2h sword", itemDescription:"A two-handed sword. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 129.0, 106.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16904} -{name:"Gorgonite 2h sword", itemDescription:"A two-handed sword. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 145.0, 121.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 141.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16905} -{name:"Gorgonite 2h sword", itemDescription:"A two-handed sword. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 145.0, 121.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 141.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16906} -{name:"Promethium 2h sword", itemDescription:"A two-handed sword. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 162.0, 130.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 157.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16907} -{name:"Promethium 2h sword", itemDescription:"A two-handed sword. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 162.0, 130.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 157.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16908} -{name:"Primal 2h sword", itemDescription:"A two-handed sword. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 179.0, 141.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 162.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16909} -{name:"Primal 2h sword", itemDescription:"A two-handed sword. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 179.0, 141.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 162.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16910} -{name:"Salve shoes", itemDescription:"Magically charged shoes. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16911} -{name:"Salve shoes", itemDescription:"Magically charged shoes. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16912} -{name:"Wildercress shoes", itemDescription:"Magically charged shoes (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 2.0, 1.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16913} -{name:"Wildercress shoes", itemDescription:"Magically charged shoes (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 2.0, 1.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16914} -{name:"Blightleaf shoes", itemDescription:"Magically charged shoes. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 3.0, 2.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16915} -{name:"Blightleaf shoes", itemDescription:"Magically charged shoes. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 1.0, -2.0, 3.0, 2.0, 5.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16916} -{name:"Roseblood shoes", itemDescription:"Magically charged shoes. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 2.0, -2.0, 4.0, 3.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16917} -{name:"Roseblood shoes", itemDescription:"Magically charged shoes. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 2.0, -2.0, 4.0, 3.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16918} -{name:"Bryll shoes", itemDescription:"Magically charged shoes. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 3.0, -2.0, 5.0, 4.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16919} -{name:"Bryll shoes", itemDescription:"Magically charged shoes. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 3.0, -2.0, 5.0, 4.0, 9.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16920} -{name:"Duskweed shoes", itemDescription:"Magically charged shoes. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 4.0, -2.0, 6.0, 5.0, 11.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16921} -{name:"Duskweed shoes", itemDescription:"Magically charged shoes. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 4.0, -2.0, 6.0, 5.0, 11.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16922} -{name:"Soulbell shoes", itemDescription:"Magically charged shoes. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 5.0, -2.0, 7.0, 6.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16923} -{name:"Soulbell shoes", itemDescription:"Magically charged shoes. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 5.0, -2.0, 7.0, 6.0, 13.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16924} -{name:"Ectoshoes", itemDescription:"Magically charged shoes. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 6.0, -2.0, 8.0, 7.0, 15.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16925} -{name:"Ectoshoes", itemDescription:"Magically charged shoes. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 6.0, -2.0, 8.0, 7.0, 15.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16926} -{name:"Runic shoes", itemDescription:"Magically charged shoes. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 7.0, -2.0, 9.0, 8.0, 17.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16927} -{name:"Runic shoes", itemDescription:"Magically charged shoes. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 7.0, -2.0, 9.0, 8.0, 17.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16928} -{name:"Spiritbloom shoes", itemDescription:"Magically charged shoes. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 8.0, -2.0, 10.0, 9.0, 19.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16929} -{name:"Spiritbloom shoes", itemDescription:"Magically charged shoes. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 8.0, -2.0, 10.0, 9.0, 19.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16930} -{name:"Celestial shoes", itemDescription:"Magically charged shoes. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 9.0, -2.0, 11.0, 10.0, 21.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16931} -{name:"Celestial shoes", itemDescription:"Magically charged shoes. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 9.0, -2.0, 11.0, 10.0, 21.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16932} -{name:"Anti-dragon shield", itemDescription:"This provides partial protection from dragon-breath attacks.", shopValue:1200, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16933} -{name:"Anti-dragon shield", itemDescription:"This provides partial protection from dragon-breath attacks.", shopValue:1200, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 9.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16934} -{name:"Novite rapier", itemDescription:"A razor-sharp rapier. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 5.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16935} -{name:"Novite rapier", itemDescription:"A razor-sharp rapier. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:true, isNoteable:true, weight:18.0, bonuses:[7.0, 5.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16936} -{name:"Bathus rapier", itemDescription:"A razor-sharp rapier. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:18.0, bonuses:[13.0, 9.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16937} -{name:"Bathus rapier", itemDescription:"A razor-sharp rapier. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:true, isNoteable:true, weight:18.0, bonuses:[13.0, 9.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16938} -{name:"Marmaros rapier", itemDescription:"A razor-sharp rapier. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:18.0, bonuses:[22.0, 14.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16939} -{name:"Marmaros rapier", itemDescription:"A razor-sharp rapier. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:18.0, bonuses:[22.0, 14.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16940} -{name:"Kratonite rapier", itemDescription:"A razor-sharp rapier. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:18.0, bonuses:[30.0, 24.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16941} -{name:"Kratonite rapier", itemDescription:"A razor-sharp rapier. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:true, isNoteable:true, weight:18.0, bonuses:[30.0, 24.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 24.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16942} -{name:"Fractite rapier", itemDescription:"A razor-sharp rapier. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 30.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16943} -{name:"Fractite rapier", itemDescription:"A razor-sharp rapier. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:18.0, bonuses:[38.0, 30.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16944} -{name:"Zephyrium rapier", itemDescription:"A razor-sharp rapier. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:18.0, bonuses:[47.0, 36.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 52.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16945} -{name:"Zephyrium rapier", itemDescription:"A razor-sharp rapier. (Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:true, isNoteable:true, weight:18.0, bonuses:[47.0, 36.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 52.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16946} -{name:"Argonite rapier", itemDescription:"A razor-sharp rapier. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:18.0, bonuses:[53.0, 42.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16947} -{name:"Argonite rapier", itemDescription:"A razor-sharp rapier. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:true, isNoteable:true, weight:18.0, bonuses:[53.0, 42.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 63.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16948} -{name:"Katagon rapier", itemDescription:"A razor-sharp rapier. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:18.0, bonuses:[59.0, 48.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16949} -{name:"Katagon rapier", itemDescription:"A razor-sharp rapier. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:true, isNoteable:true, weight:18.0, bonuses:[59.0, 48.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16950} -{name:"Gorgonite rapier", itemDescription:"A razor-sharp rapier. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:18.0, bonuses:[67.0, 54.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16951} -{name:"Gorgonite rapier", itemDescription:"A razor-sharp rapier. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:18.0, bonuses:[67.0, 54.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16952} -{name:"Promethium rapier", itemDescription:"A razor-sharp rapier. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:18.0, bonuses:[76.0, 61.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 107.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16953} -{name:"Promethium rapier", itemDescription:"A razor-sharp rapier. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:true, isNoteable:true, weight:18.0, bonuses:[76.0, 61.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 107.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16954} -{name:"Primal rapier", itemDescription:"A razor-sharp rapier. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[83.0, 67.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 109.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16955} -{name:"Primal rapier", itemDescription:"A razor-sharp rapier. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[83.0, 67.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 109.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16956} -{name:"Fractite rapier", itemDescription:"A razor-sharp rapier. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:18.0, bonuses:[38.0, 30.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16957} -{name:"Fractite rapier", itemDescription:"A razor-sharp rapier. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:18.0, bonuses:[38.0, 30.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 38.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16958} -{name:"Gorgonite rapier", itemDescription:"A razor-sharp rapier. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:18.0, bonuses:[67.0, 54.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16959} -{name:"Gorgonite rapier", itemDescription:"A razor-sharp rapier. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:18.0, bonuses:[67.0, 54.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16960} -{name:"Fractite longsword", itemDescription:"A razor-sharp longsword. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:27.0, bonuses:[42.0, 67.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16961} -{name:"Fractite longsword", itemDescription:"A razor-sharp longsword. (Tier 5)", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:27.0, bonuses:[42.0, 67.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16962} -{name:"Gorgonite longsword", itemDescription:"A razor-sharp longsword. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:27.0, bonuses:[71.0, 101.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16963} -{name:"Gorgonite longsword", itemDescription:"A razor-sharp longsword. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:27.0, bonuses:[71.0, 101.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 114.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16964} -{name:"Gorgonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 154.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16965} -{name:"Gorgonite maul", itemDescription:"A maul used to claim life from those who don't deserve it. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-4.0, -4.0, 154.0, -4.0, 0.0, 0.0, 0.0, 0.0, -1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16966} -{name:"Catalytic staff", itemDescription:"2 kg", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16967} -{name:"Catalytic staff", itemDescription:"2 kg", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16968} -{name:"Catalytic warstaff", itemDescription:"2 kg", shopValue:11280, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16969} -{name:"Catalytic warstaff", itemDescription:"2 kg", shopValue:11280, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16970} -{name:"Gorgonite kiteshield", itemDescription:"A large metal shield. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 56.0, 98.0, 81.0, -1.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16971} -{name:"Gorgonite kiteshield", itemDescription:"A large metal shield. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 56.0, 98.0, 81.0, -1.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16972} -{name:"Fractite 2h sword", itemDescription:"A 2-handed sword. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, 95.0, 76.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16973} -{name:"Fractite 2h sword", itemDescription:"A 2-handed sword. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:36.0, bonuses:[-4.0, 95.0, 76.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16974} -{name:"Spinebeam shortbow", itemDescription:"A small bow, only effective at a short distance. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16975} -{name:"Spinebeam shortbow", itemDescription:"A small bow, only effective at a short distance. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16976} -{name:"Tangle gum staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 1)", shopValue:490, lowAlch:196, highAlch:294, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16977} -{name:"Tangle gum staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 1)", shopValue:490, lowAlch:196, highAlch:294, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16978} -{name:"Seeping elm staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 2)", shopValue:1220, lowAlch:488, highAlch:732, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16979} -{name:"Seeping elm staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 2)", shopValue:1220, lowAlch:488, highAlch:732, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16980} -{name:"Blood spindle staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 3)", shopValue:2300, lowAlch:920, highAlch:1380, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16981} -{name:"Blood spindle staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 3)", shopValue:2300, lowAlch:920, highAlch:1380, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16982} -{name:"Utuku staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 4)", shopValue:3170, lowAlch:1268, highAlch:1902, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16983} -{name:"Utuku staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 4)", shopValue:3170, lowAlch:1268, highAlch:1902, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16984} -{name:"Spinebeam staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 5)", shopValue:4390, lowAlch:1756, highAlch:2634, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16985} -{name:"Spinebeam staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 5)", shopValue:4390, lowAlch:1756, highAlch:2634, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16986} -{name:"Bovistrangler staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 6)", shopValue:5110, lowAlch:2044, highAlch:3066, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16987} -{name:"Bovistrangler staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 6)", shopValue:5110, lowAlch:2044, highAlch:3066, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16988} -{name:"Thigat staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 7)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16989} -{name:"Thigat staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 7)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16990} -{name:"Corpsethorn staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 8)", shopValue:7270, lowAlch:2908, highAlch:4362, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16991} -{name:"Corpsethorn staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 8)", shopValue:7270, lowAlch:2908, highAlch:4362, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16992} -{name:"Entgallow staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 9)", shopValue:8280, lowAlch:3312, highAlch:4968, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16993} -{name:"Entgallow staff", itemDescription:"A basic staff for basic uses. All in all, pretty basic. (Tier 9)", shopValue:8280, lowAlch:3312, highAlch:4968, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16994} -{name:"Grave creeper staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 10)", shopValue:9790, lowAlch:3916, highAlch:5874, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16995} -{name:"Grave creeper staff", itemDescription:"A basic staff for basic uses. All and all, pretty basic. (Tier 10)", shopValue:9790, lowAlch:3916, highAlch:5874, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 7.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16996} -{name:"Water staff", itemDescription:"A Magical staff.", shopValue:550, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16997} -{name:"Water staff", itemDescription:"A Magical staff.", shopValue:550, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16998} -{name:"Empowered water staff", itemDescription:"A magical staff of water. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:16999} -{name:"Empowered water staff", itemDescription:"A magical staff of water. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17000} -{name:"Earth staff", itemDescription:"A Magical staff.", shopValue:1360, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[1.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17001} -{name:"Earth staff", itemDescription:"A Magical staff.", shopValue:1360, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[1.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17002} -{name:"Empowered earth staff", itemDescription:"A magical staff of earth. (Tier 2)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17003} -{name:"Empowered earth staff", itemDescription:"A magical staff of earth. (Tier 2)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17004} -{name:"Fire staff", itemDescription:"A Magical staff.", shopValue:2560, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[3.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17005} -{name:"Fire staff", itemDescription:"A Magical staff.", shopValue:2560, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[3.0, -1.0, 9.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17006} -{name:"Empowered fire staff", itemDescription:"A magical staff of fire. (Tier 2)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17007} -{name:"Empowered fire staff", itemDescription:"A magical staff of fire. (Tier 2)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17008} -{name:"Air staff", itemDescription:"A Magical staff.", shopValue:3520, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17009} -{name:"Air staff", itemDescription:"A Magical staff.", shopValue:3520, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, -1.0, 7.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17010} -{name:"Empowered air staff", itemDescription:"A magical staff of air. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17011} -{name:"Empowered air staff", itemDescription:"A magical staff of air. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, -1.0, 12.0, 13.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0, 0.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17012} -{name:"Catalytic staff", itemDescription:"2 kg", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17013} -{name:"Catalytic staff", itemDescription:"2 kg", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, -1.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17014} -{name:"Empowered catalytic staff", itemDescription:"This staff makes destructive spells more powerful. (Tier 2)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, -1.0, 31.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 20.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17015} -{name:"Empowered catalytic staff", itemDescription:"This staff makes destructive spells more powerful. (Tier 2)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, -1.0, 31.0, 15.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 0.0, 20.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17016} -{name:"Celestial catalytic staff", itemDescription:"1.8 kg", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 41.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 30.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17017} -{name:"Celestial catalytic staff", itemDescription:"1.8 kg", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, -1.0, 41.0, 20.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 30.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17018} -{name:"Novite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17019} -{name:"Novite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 1)", shopValue:700, lowAlch:280, highAlch:420, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17020} -{name:"Bathus warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17021} -{name:"Bathus warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 2)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17022} -{name:"Marmaros warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17023} -{name:"Marmaros warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 3)", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 18.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17024} -{name:"Kratonite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17025} -{name:"Kratonite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 4)", shopValue:4400, lowAlch:1760, highAlch:2640, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 27.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17026} -{name:"Fractite warhammer", itemDescription:"I don't think it's intended for joinery (Tier 5).", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 72.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17027} -{name:"Fractite warhammer", itemDescription:"I don't think it's intended for joinery (Tier 5).", shopValue:6100, lowAlch:2440, highAlch:3660, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 72.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17028} -{name:"Zephyrium warhammer", itemDescription:"I don't think it's intended for joinery.(Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 62.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17029} -{name:"Zephyrium warhammer", itemDescription:"I don't think it's intended for joinery.(Tier 6)", shopValue:7100, lowAlch:2840, highAlch:4260, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 78.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 62.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17030} -{name:"Argonite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17031} -{name:"Argonite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 7)", shopValue:8900, lowAlch:3560, highAlch:5340, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 87.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 79.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17032} -{name:"Katagon warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 96.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17033} -{name:"Katagon warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 8)", shopValue:10100, lowAlch:4040, highAlch:6060, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 96.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17034} -{name:"Gorgonite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17035} -{name:"Gorgonite warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 9)", shopValue:11500, lowAlch:4600, highAlch:6900, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 107.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17036} -{name:"Promethium warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:31.0, bonuses:[-4.0, -4.0, 117.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17037} -{name:"Promethium warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 10)", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:true, isNoteable:true, weight:31.0, bonuses:[-4.0, -4.0, 117.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 123.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17038} -{name:"Primal warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[-4.0, -4.0, 126.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17039} -{name:"Primal warhammer", itemDescription:"I don't think it's intended for joinery. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:3.0, bonuses:[-4.0, -4.0, 126.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 132.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17040} -{name:"Protoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 1)", shopValue:560, lowAlch:224, highAlch:336, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 1.0, 2.0, 1.0, 3.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17041} -{name:"Protoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 1)", shopValue:560, lowAlch:224, highAlch:336, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 1.0, 2.0, 1.0, 3.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17042} -{name:"Subleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 2)", shopValue:1360, lowAlch:544, highAlch:816, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 2.0, 3.0, 3.0, 5.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17043} -{name:"Subleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 2)", shopValue:1360, lowAlch:544, highAlch:816, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 2.0, 3.0, 3.0, 5.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17044} -{name:"Paraleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 3)", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 2.0, 5.0, 4.0, 7.0, 2.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17045} -{name:"Paraleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 3)", shopValue:2560, lowAlch:1024, highAlch:1536, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 2.0, 5.0, 4.0, 7.0, 2.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17046} -{name:"Archleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 4)", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 3.0, 7.0, 6.0, 10.0, 4.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17047} -{name:"Archleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 4)", shopValue:3520, lowAlch:1408, highAlch:2112, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 3.0, 7.0, 6.0, 10.0, 4.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17048} -{name:"Dromoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 5.0, 8.0, 6.0, 10.0, 7.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17049} -{name:"Dromoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 5)", shopValue:4880, lowAlch:1952, highAlch:2928, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 5.0, 8.0, 6.0, 10.0, 7.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17050} -{name:"Spinoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 7.0, 11.0, 9.0, 15.0, 10.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17051} -{name:"Spinoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 6)", shopValue:5680, lowAlch:2272, highAlch:3408, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 7.0, 11.0, 9.0, 15.0, 10.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17052} -{name:"Gallileather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 7)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 8.0, 13.0, 11.0, 18.0, 14.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17053} -{name:"Gallileather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 7)", shopValue:7120, lowAlch:2848, highAlch:4272, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 8.0, 13.0, 11.0, 18.0, 14.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17054} -{name:"Stegoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 8)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 9.0, 15.0, 13.0, 21.0, 19.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17055} -{name:"Stegoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 8)", shopValue:8080, lowAlch:3232, highAlch:4848, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 9.0, 15.0, 13.0, 21.0, 19.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17056} -{name:"Megaleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 10.0, 17.0, 15.0, 24.0, 25.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17057} -{name:"Megaleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 9)", shopValue:9200, lowAlch:3680, highAlch:5520, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 10.0, 17.0, 15.0, 24.0, 25.0, 19.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17058} -{name:"Tyrannoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 10)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 11.0, 19.0, 17.0, 27.0, 31.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17059} -{name:"Tyrannoleather coif", itemDescription:"Crafted out of thick lizard hides. (Tier 10)", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 11.0, 19.0, 17.0, 27.0, 31.0, 21.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17060} -{name:"Sagittarian coif", itemDescription:"Crafted out of thick lizard hides. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 12.0, 21.0, 19.0, 30.0, 38.0, 23.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17061} -{name:"Sagittarian coif", itemDescription:"Crafted out of thick lizard hides. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[-3.0, -3.0, -3.0, -3.0, 12.0, 21.0, 19.0, 30.0, 38.0, 23.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17062} -{name:"Novite spear", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17063} -{name:"Novite spear", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17064} -{name:"Novite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17065} -{name:"Novite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17066} -{name:"Novite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17067} -{name:"Novite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17068} -{name:"Novite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17069} -{name:"Novite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[19.0, 9.0, 15.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 16.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17070} -{name:"Bathus spear", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17071} -{name:"Bathus spear", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17072} -{name:"Bathus spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17073} -{name:"Bathus spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17074} -{name:"Bathus spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17075} -{name:"Bathus spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17076} -{name:"Bathus spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17077} -{name:"Bathus spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:22.0, bonuses:[31.0, 14.0, 24.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17078} -{name:"Marmaros spear", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17079} -{name:"Marmaros spear", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17080} -{name:"Marmaros spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17081} -{name:"Marmaros spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17082} -{name:"Marmaros spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17083} -{name:"Marmaros spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17084} -{name:"Marmaros spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17085} -{name:"Marmaros spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:22.0, bonuses:[51.0, 22.0, 41.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 31.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17086} -{name:"Kratonite spear", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17087} -{name:"Kratonite spear", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17088} -{name:"Kratonite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17089} -{name:"Kratonite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17090} -{name:"Kratonite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17091} -{name:"Kratonite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17092} -{name:"Kratonite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17093} -{name:"Kratonite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:22.0, bonuses:[69.0, 31.0, 52.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 43.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17094} -{name:"Fractite spear", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17095} -{name:"Fractite spear", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17096} -{name:"Fractite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17097} -{name:"Fractite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17098} -{name:"Fractite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17099} -{name:"Fractite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17100} -{name:"Fractite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17101} -{name:"Fractite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[80.0, 41.0, 63.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 67.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17102} -{name:"Zephyrium spear", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17103} -{name:"Zephyrium spear", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17104} -{name:"Zephyrium spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17105} -{name:"Zephyrium spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17106} -{name:"Zephyrium spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17107} -{name:"Zephyrium spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17108} -{name:"Zephyrium spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17109} -{name:"Zephyrium spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:22.0, bonuses:[88.0, 45.0, 68.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 78.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17110} -{name:"Argonite spear", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17111} -{name:"Argonite spear", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17112} -{name:"Argonite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17113} -{name:"Argonite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17114} -{name:"Argonite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17115} -{name:"Argonite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17116} -{name:"Argonite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17117} -{name:"Argonite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:22.0, bonuses:[102.0, 53.0, 79.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 96.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17118} -{name:"Katagon spear", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17119} -{name:"Katagon spear", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17120} -{name:"Katagon spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17121} -{name:"Katagon spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17122} -{name:"Katagon spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17123} -{name:"Katagon spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17124} -{name:"Katagon spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17125} -{name:"Katagon spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:22.0, bonuses:[107.0, 55.0, 85.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 112.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17126} -{name:"Gorgonite spear", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17127} -{name:"Gorgonite spear", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17128} -{name:"Gorgonite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17129} -{name:"Gorgonite spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17130} -{name:"Gorgonite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17131} -{name:"Gorgonite spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17132} -{name:"Gorgonite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17133} -{name:"Gorgonite spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:22.0, bonuses:[110.0, 61.0, 97.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 128.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17134} -{name:"Promethium spear", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17135} -{name:"Promethium spear", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17136} -{name:"Promethium spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17137} -{name:"Promethium spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17138} -{name:"Promethium spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17139} -{name:"Promethium spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17140} -{name:"Promethium spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17141} -{name:"Promethium spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:22.0, bonuses:[122.0, 66.0, 109.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 139.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17142} -{name:"Primal spear", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17143} -{name:"Primal spear", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17144} -{name:"Primal spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17145} -{name:"Primal spear (p)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17146} -{name:"Primal spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17147} -{name:"Primal spear (p+)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17148} -{name:"Primal spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17149} -{name:"Primal spear (p++)", itemDescription:"A stick made for poking - violent poking. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:12.0, bonuses:[132.0, 70.0, 113.0, 0.0, 0.0, 1.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 145.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17150} -{name:"Salve gloves", itemDescription:"A pair of finely crafted gloves. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17151} -{name:"Salve gloves", itemDescription:"A pair of finely crafted gloves. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 1.0, 0.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17152} -{name:"Wildercress gloves", itemDescription:"A pair of finely crafted gloves. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 2.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17153} -{name:"Wildercress gloves", itemDescription:"A pair of finely crafted gloves. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 2.0, 3.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17154} -{name:"Blightleaf gloves", itemDescription:"A pair of finely crafted gloves. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 2.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17155} -{name:"Blightleaf gloves", itemDescription:"A pair of finely crafted gloves. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 1.0, -1.0, 2.0, 2.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17156} -{name:"Roseblood gloves", itemDescription:"A pair of finely crafted gloves (Tier 4).", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 2.0, -1.0, 3.0, 3.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17157} -{name:"Roseblood gloves", itemDescription:"A pair of finely crafted gloves (Tier 4).", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 2.0, -1.0, 3.0, 3.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17158} -{name:"Bryll gloves", itemDescription:"A pair of finely crafted gloves (Tier 5).", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 3.0, -1.0, 4.0, 3.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17159} -{name:"Bryll gloves", itemDescription:"A pair of finely crafted gloves (Tier 5).", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 3.0, -1.0, 4.0, 3.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17160} -{name:"Duskweed gloves", itemDescription:"A pair of finely crafted gloves. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 4.0, -1.0, 5.0, 4.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17161} -{name:"Duskweed gloves", itemDescription:"A pair of finely crafted gloves. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 4.0, -1.0, 5.0, 4.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17162} -{name:"Soulbell gloves", itemDescription:"A pair of finely crafted gloves. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 5.0, -1.0, 6.0, 5.0, 7.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17163} -{name:"Soulbell gloves", itemDescription:"A pair of finely crafted gloves. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 5.0, -1.0, 6.0, 5.0, 7.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17164} -{name:"Ectogloves", itemDescription:"A pair of finely crafted gloves. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 6.0, -1.0, 7.0, 6.0, 8.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17165} -{name:"Ectogloves", itemDescription:"A pair of finely crafted gloves. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 6.0, -1.0, 7.0, 6.0, 8.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17166} -{name:"Runic gloves", itemDescription:"A pair of finely crafted gloves. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 7.0, -1.0, 8.0, 7.0, 9.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17167} -{name:"Runic gloves", itemDescription:"A pair of finely crafted gloves. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 7.0, -1.0, 8.0, 7.0, 9.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17168} -{name:"Spiritbloom gloves", itemDescription:"A pair of finely crafted gloves. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 8.0, -1.0, 9.0, 8.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17169} -{name:"Spiritbloom gloves", itemDescription:"A pair of finely crafted gloves. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 8.0, -1.0, 9.0, 8.0, 10.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17170} -{name:"Celestial gloves", itemDescription:"A pair of finely crafted gloves. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 9.0, -1.0, 10.0, 9.0, 11.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17171} -{name:"Celestial gloves", itemDescription:"A pair of finely crafted gloves. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-1.0, -1.0, -1.0, 9.0, -1.0, 10.0, 9.0, 11.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17172} -{name:"Protoleather body", itemDescription:"Made from scaly hides. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 3.0, 7.0, 6.0, 9.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17173} -{name:"Protoleather body", itemDescription:"Made from scaly hides. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 3.0, 7.0, 6.0, 9.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17174} -{name:"Subleather body", itemDescription:"Made from scaly hides (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 4.0, 14.0, 12.0, 16.0, 3.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17175} -{name:"Subleather body", itemDescription:"Made from scaly hides (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 4.0, 14.0, 12.0, 16.0, 3.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17176} -{name:"Paraleather body", itemDescription:"Made from scaly hides (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 4.0, 14.0, 12.0, 16.0, 3.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17177} -{name:"Paraleather body", itemDescription:"Made from scaly hides (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 4.0, 14.0, 12.0, 16.0, 3.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17178} -{name:"Archleather body", itemDescription:"Made from scaly hides. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 8.0, 28.0, 24.0, 32.0, 11.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17179} -{name:"Archleather body", itemDescription:"Made from scaly hides. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 8.0, 28.0, 24.0, 32.0, 11.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17180} -{name:"Dromoleather body", itemDescription:"Made from scaly hides. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 11.0, 28.0, 24.0, 32.0, 18.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17181} -{name:"Dromoleather body", itemDescription:"Made from scaly hides. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 11.0, 28.0, 24.0, 32.0, 18.0, 29.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17182} -{name:"Spinoleather body", itemDescription:"Made from scaly hides (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 17.0, 43.0, 37.0, 50.0, 45.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17183} -{name:"Spinoleather body", itemDescription:"Made from scaly hides (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 17.0, 43.0, 37.0, 50.0, 45.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17184} -{name:"Gallileather body", itemDescription:"Made from scaly hides (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 20.0, 51.0, 44.0, 60.0, 38.0, 54.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17185} -{name:"Gallileather body", itemDescription:"Made from scaly hides (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 20.0, 51.0, 44.0, 60.0, 38.0, 54.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17186} -{name:"Stegoleather body", itemDescription:"Made from scaly hides (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 23.0, 60.0, 52.0, 70.0, 51.0, 63.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17187} -{name:"Stegoleather body", itemDescription:"Made from scaly hides (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 23.0, 60.0, 52.0, 70.0, 51.0, 63.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17188} -{name:"Megaleather body", itemDescription:"Made from scaly hides. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 27.0, 69.0, 60.0, 81.0, 66.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17189} -{name:"Megaleather body", itemDescription:"Made from scaly hides. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 27.0, 69.0, 60.0, 81.0, 66.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17190} -{name:"Tyrannoleather body", itemDescription:"Made from scaly hides. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 30.0, 78.0, 68.0, 91.0, 83.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17191} -{name:"Tyrannoleather body", itemDescription:"Made from scaly hides. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 30.0, 78.0, 68.0, 91.0, 83.0, 82.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17192} -{name:"Sagittarian body", itemDescription:"Body protection made from scaly hides. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 33.0, 87.0, 76.0, 101.0, 100.0, 91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17193} -{name:"Sagittarian body", itemDescription:"Body protection made from scaly hides. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:49.0, bonuses:[-10.0, -10.0, -10.0, -15.0, 33.0, 87.0, 76.0, 101.0, 100.0, 91.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17194} -{name:"Protoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17195} -{name:"Protoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 1.0, 1.0, 0.0, 1.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17196} -{name:"Subleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17197} -{name:"Subleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 1.0, 1.0, 1.0, 2.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17198} -{name:"Paraleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 2.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17199} -{name:"Paraleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 2.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17200} -{name:"Archleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 3.0, 3.0, 2.0, 3.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17201} -{name:"Archleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 3.0, 3.0, 2.0, 3.0, 2.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17202} -{name:"Dromoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 4.0, 3.0, 2.0, 3.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17203} -{name:"Dromoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 4.0, 3.0, 2.0, 3.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17204} -{name:"Spinoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 5.0, 4.0, 3.0, 5.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17205} -{name:"Spinoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 5.0, 4.0, 3.0, 5.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17206} -{name:"Gallileather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 6.0, 5.0, 3.0, 6.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17207} -{name:"Gallileather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 6.0, 5.0, 3.0, 6.0, 9.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17208} -{name:"Stegoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 7.0, 6.0, 3.0, 7.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17209} -{name:"Stegoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 7.0, 6.0, 3.0, 7.0, 12.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17210} -{name:"Megaleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 8.0, 7.0, 4.0, 8.0, 16.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17211} -{name:"Megaleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 8.0, 7.0, 4.0, 8.0, 16.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17212} -{name:"Tyrannoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 9.0, 8.0, 5.0, 9.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17213} -{name:"Tyrannoleather vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 9.0, 8.0, 5.0, 9.0, 20.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17214} -{name:"Sagittarian vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 10.0, 9.0, 6.0, 10.0, 24.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17215} -{name:"Sagittarian vambraces", itemDescription:"Wrist protection made from scaly hides. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[-2.0, -2.0, -2.0, -4.0, 10.0, 9.0, 6.0, 10.0, 24.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17216} -{name:"Salve robe top", itemDescription:"The upper half of a magical robe. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 2.0, -7.0, 4.0, 3.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17217} -{name:"Salve robe top", itemDescription:"The upper half of a magical robe. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 2.0, -7.0, 4.0, 3.0, 7.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17218} -{name:"Wildercress robe top", itemDescription:"The upper half of a magical robe (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 4.0, -7.0, 8.0, 5.0, 11.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17219} -{name:"Wildercress robe top", itemDescription:"The upper half of a magical robe (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 4.0, -7.0, 8.0, 5.0, 11.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17220} -{name:"Blightleaf robe top", itemDescription:"The upper half of a magical robe. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 6.0, -7.0, 12.0, 8.0, 17.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17221} -{name:"Blightleaf robe top", itemDescription:"The upper half of a magical robe. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 6.0, -7.0, 12.0, 8.0, 17.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17222} -{name:"Roseblood robe top", itemDescription:"The upper half of a magic robe. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 8.0, -7.0, 16.0, 11.0, 23.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17223} -{name:"Roseblood robe top", itemDescription:"The upper half of a magic robe. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 8.0, -7.0, 16.0, 11.0, 23.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17224} -{name:"Bryll robe top", itemDescription:"The upper half of a magical robe (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 11.0, -7.0, 21.0, 14.0, 30.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17225} -{name:"Bryll robe top", itemDescription:"The upper half of a magical robe (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 11.0, -7.0, 21.0, 14.0, 30.0, 11.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17226} -{name:"Duskweed robe top", itemDescription:"The upper half of a magical robe (Tier 6).", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 17.0, -7.0, 26.0, 17.0, 37.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17227} -{name:"Duskweed robe top", itemDescription:"The upper half of a magical robe (Tier 6).", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 17.0, -7.0, 26.0, 17.0, 37.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17228} -{name:"Soulbell robe top", itemDescription:"The upper half of a magical robe. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 20.0, -7.0, 31.0, 21.0, 44.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17229} -{name:"Soulbell robe top", itemDescription:"The upper half of a magical robe. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 20.0, -7.0, 31.0, 21.0, 44.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17230} -{name:"Ectorobe top", itemDescription:"The upper half of a magical robe. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 23.0, -7.0, 36.0, 25.0, 51.0, 23.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17231} -{name:"Ectorobe top", itemDescription:"The upper half of a magical robe. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 23.0, -7.0, 36.0, 25.0, 51.0, 23.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17232} -{name:"Runic robe top", itemDescription:"The upper half of a magical robe. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 27.0, -7.0, 51.0, 30.0, 59.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17233} -{name:"Runic robe top", itemDescription:"The upper half of a magical robe. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 27.0, -7.0, 51.0, 30.0, 59.0, 27.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17234} -{name:"Spiritbloom robe top", itemDescription:"The upper half of a magical robe. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 30.0, -7.0, 46.0, 34.0, 67.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17235} -{name:"Spiritbloom robe top", itemDescription:"The upper half of a magical robe. (Tier 10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:13.0, bonuses:[-7.0, -7.0, -7.0, 30.0, -7.0, 46.0, 34.0, 67.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17236} -{name:"Celestial robe top", itemDescription:"The upper half of a magical robe. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-7.0, -7.0, -7.0, 34.0, -7.0, 51.0, 38.0, 75.0, 34.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17237} -{name:"Celestial robe top", itemDescription:"The upper half of a magical robe. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-7.0, -7.0, -7.0, 34.0, -7.0, 51.0, 38.0, 75.0, 34.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17238} -{name:"Novite platebody", itemDescription:"Provides excellent protection. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 19.0, 11.0, -6.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17239} -{name:"Novite platebody", itemDescription:"Provides excellent protection. (Tier 1)", shopValue:1400, lowAlch:560, highAlch:840, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 20.0, 19.0, 11.0, -6.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17240} -{name:"Bathus platebody", itemDescription:"Provides excellent protection. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 37.0, 35.0, 20.0, -6.0, 37.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17241} -{name:"Bathus platebody", itemDescription:"Provides excellent protection. (Tier 2)", shopValue:3400, lowAlch:1360, highAlch:2040, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 37.0, 35.0, 20.0, -6.0, 37.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17242} -{name:"Marmaros platebody", itemDescription:"Provides excellent protection. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 57.0, 54.0, 31.0, -6.0, 58.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17243} -{name:"Marmaros platebody", itemDescription:"Provides excellent protection. (Tier 3)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 57.0, 54.0, 31.0, -6.0, 58.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17244} -{name:"Kratonite platebody", itemDescription:"Provides excellent protection. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 78.0, 73.0, 42.0, -6.0, 79.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17245} -{name:"Kratonite platebody", itemDescription:"Provides excellent protection. (Tier 4)", shopValue:8800, lowAlch:3520, highAlch:5280, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 78.0, 73.0, 42.0, -6.0, 79.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17246} -{name:"Fractite platebody", itemDescription:"Provides excellent protection. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 100.0, 93.0, 54.0, -6.0, 101.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17247} -{name:"Fractite platebody", itemDescription:"Provides excellent protection. (Tier 5)", shopValue:12200, lowAlch:4880, highAlch:7320, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 100.0, 93.0, 54.0, -6.0, 101.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17248} -{name:"Zephyrium platebody", itemDescription:"Provides excellent protection. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 123.0, 114.0, 67.0, -6.0, 125.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17249} -{name:"Zephyrium platebody", itemDescription:"Provides excellent protection. (Tier 6)", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 123.0, 114.0, 67.0, -6.0, 125.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17250} -{name:"Argonite platebody", itemDescription:"Provides excellent protection. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 145.0, 136.0, 80.0, -6.0, 149.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17251} -{name:"Argonite platebody", itemDescription:"Provides excellent protection. (Tier 7)", shopValue:17800, lowAlch:7120, highAlch:10680, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 145.0, 136.0, 80.0, -6.0, 149.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17252} -{name:"Katagon platebody", itemDescription:"Provides excellent protection. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 171.0, 159.0, 94.0, -6.0, 174.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17253} -{name:"Katagon platebody", itemDescription:"Provides excellent protection. (Tier 8)", shopValue:20200, lowAlch:8080, highAlch:12120, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 171.0, 159.0, 94.0, -6.0, 174.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17254} -{name:"Gorgonite platebody", itemDescription:"Provides excellent protection. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 197.0, 183.0, 108.0, -6.0, 200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17255} -{name:"Gorgonite platebody", itemDescription:"Provides excellent protection. (Tier 9)", shopValue:23000, lowAlch:9200, highAlch:13800, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 197.0, 183.0, 108.0, -6.0, 200.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17256} -{name:"Promethium platebody", itemDescription:"Provides excellent protection. Tier (10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 223.0, 207.0, 122.0, -6.0, 226.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17257} -{name:"Promethium platebody", itemDescription:"Provides excellent protection. Tier (10)", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 223.0, 207.0, 122.0, -6.0, 226.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17258} -{name:"Primal platebody", itemDescription:"Provides excellent protection. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 247.0, 230.0, 135.0, -6.0, 251.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17259} -{name:"Primal platebody", itemDescription:"Provides excellent protection. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 247.0, 230.0, 135.0, -6.0, 251.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17260} -{name:"Silver precision bracelet", itemDescription:"A magically enhanced silver bracelet.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[4.0, 7.0, 7.0, 3.0, 3.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17261} -{name:"Silver precision bracelet", itemDescription:"A magically enhanced silver bracelet.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[4.0, 7.0, 7.0, 3.0, 3.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17262} -{name:"Golden precision bracelet", itemDescription:"A magically enhanced gold bracelet.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:false, isNoteable:false, weight:1.0, bonuses:[12.0, 17.0, 17.0, 5.0, 5.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17263} -{name:"Golden precision bracelet", itemDescription:"A magically enhanced gold bracelet.", shopValue:3200, lowAlch:1280, highAlch:1920, isStackable:true, isNoteable:true, weight:1.0, bonuses:[12.0, 17.0, 17.0, 5.0, 5.0, 0.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17264} -{name:"Sunstriker boots", itemDescription:"Boots that boost combat performance.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:false, isNoteable:false, weight:36.0, bonuses:[1.0, 1.0, 1.0, 0.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17265} -{name:"Sunstriker boots", itemDescription:"Boots that boost combat performance.", shopValue:1300, lowAlch:520, highAlch:780, isStackable:true, isNoteable:true, weight:36.0, bonuses:[1.0, 1.0, 1.0, 0.0, 2.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17266} -{name:"Marksman boots", itemDescription:"Boots that greatly boost combat performance.", shopValue:2790, lowAlch:1116, highAlch:1674, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 0.0, 6.0, 6.0, 6.0, 7.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17267} -{name:"Marksman boots", itemDescription:"Boots that greatly boost combat performance.", shopValue:2790, lowAlch:1116, highAlch:1674, isStackable:true, isNoteable:true, weight:0.0, bonuses:[2.0, 2.0, 2.0, 0.0, 6.0, 6.0, 6.0, 7.0, 6.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17268} -{name:"Incantor's boots", itemDescription:"A pair of light boots made for agile spellcasters.", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:4.0, bonuses:[1.0, 1.0, 1.0, 2.0, 0.0, 5.0, 4.0, 8.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17269} -{name:"Incantor's boots", itemDescription:"A pair of light boots made for agile spellcasters.", shopValue:1200, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:4.0, bonuses:[1.0, 1.0, 1.0, 2.0, 0.0, 5.0, 4.0, 8.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17270} -{name:"Sorcerer's boots", itemDescription:"A superior pair of light boots made for agile spellcasters.", shopValue:2960, lowAlch:1184, highAlch:1776, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 5.0, 0.0, 7.0, 6.0, 13.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17271} -{name:"Sorcerer's boots", itemDescription:"A superior pair of light boots made for agile spellcasters.", shopValue:2960, lowAlch:1184, highAlch:1776, isStackable:true, isNoteable:true, weight:0.0, bonuses:[2.0, 2.0, 2.0, 5.0, 0.0, 7.0, 6.0, 13.0, 5.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17272} -{name:"Flameburst defender", itemDescription:"A fiery off-hand dagger.", shopValue:6350, lowAlch:2540, highAlch:3810, isStackable:false, isNoteable:false, weight:1.0, bonuses:[9.0, 6.0, 5.0, 3.0, -2.0, 5.0, 9.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17273} -{name:"Flameburst defender", itemDescription:"A fiery off-hand dagger.", shopValue:6350, lowAlch:2540, highAlch:3810, isStackable:true, isNoteable:true, weight:1.0, bonuses:[9.0, 6.0, 5.0, 3.0, -2.0, 5.0, 9.0, 4.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17274} -{name:"Frostbite dagger", itemDescription:"A dagger made out of enchanted ice.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[32.0, 14.0, -4.0, 4.0, -2.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17275} -{name:"Frostbite dagger", itemDescription:"A dagger made out of enchanted ice.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:1.0, bonuses:[32.0, 14.0, -4.0, 4.0, -2.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 29.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17276} -{name:"Hailstorm dagger", itemDescription:"A dagger made out of enchanted ice, covered in sharp frost shards.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[50.0, 21.0, -4.0, 8.0, -2.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17277} -{name:"Hailstorm dagger", itemDescription:"A dagger made out of enchanted ice, covered in sharp frost shards.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[50.0, 21.0, -4.0, 8.0, -2.0, 0.0, 0.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 69.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17278} -{name:"Shadow silk hood", itemDescription:"A hood that cloaks the wearer from humanoids.", shopValue:8500, lowAlch:3400, highAlch:5100, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 6.0, 6.0, 10.0, 7.0, 14.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17279} -{name:"Shadow silk hood", itemDescription:"A hood that cloaks the wearer from humanoids.", shopValue:8500, lowAlch:3400, highAlch:5100, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, 6.0, 6.0, 10.0, 7.0, 14.0, 6.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17280} -{name:"Absorption boots", itemDescription:"A pair of boots with high magical resistance.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 5.0, 5.0, 5.0, 4.0, 18.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17281} -{name:"Absorption boots", itemDescription:"A pair of boots with high magical resistance.", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 5.0, 5.0, 5.0, 4.0, 18.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17282} -{name:"Grounding boots", itemDescription:"A pair of boots with very high magical resistance.", shopValue:5400, lowAlch:2160, highAlch:3240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 8.0, 8.0, 8.0, 7.0, 30.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17283} -{name:"Grounding boots", itemDescription:"A pair of boots with very high magical resistance.", shopValue:5400, lowAlch:2160, highAlch:3240, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 8.0, 8.0, 8.0, 7.0, 30.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17284} -{name:"Protector's ward", itemDescription:"A magical shield.", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 53.0, 62.0, 22.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17285} -{name:"Protector's ward", itemDescription:"A magical shield.", shopValue:14200, lowAlch:5680, highAlch:8520, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 53.0, 62.0, 22.0, 43.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17286} -{name:"Guardian's ward", itemDescription:"A superior magical shield.", shopValue:20700, lowAlch:8280, highAlch:12420, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 72.0, 84.0, 44.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17287} -{name:"Guardian's ward", itemDescription:"A superior magical shield.", shopValue:20700, lowAlch:8280, highAlch:12420, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 55.0, 72.0, 84.0, 44.0, 60.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17288} -{name:"Seeker's charm", itemDescription:"A pulsating eye attached to a necklace.", shopValue:5800, lowAlch:2320, highAlch:3480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-3.0, -3.0, -3.0, 10.0, 15.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, -4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17289} -{name:"Seeker's charm", itemDescription:"A pulsating eye attached to a necklace.", shopValue:5800, lowAlch:2320, highAlch:3480, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-3.0, -3.0, -3.0, 10.0, 15.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, -4.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17290} -{name:"Blood necklace", itemDescription:"There is a glowing, red drop hanging from the necklace.", shopValue:10550, lowAlch:4220, highAlch:6330, isStackable:false, isNoteable:false, weight:1.0, bonuses:[11.0, 11.0, 11.0, 8.0, 8.0, 11.0, 11.0, 11.0, 8.0, 8.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17291} -{name:"Blood necklace", itemDescription:"There is a glowing, red drop hanging from the necklace.", shopValue:10550, lowAlch:4220, highAlch:6330, isStackable:true, isNoteable:true, weight:1.0, bonuses:[11.0, 11.0, 11.0, 8.0, 8.0, 11.0, 11.0, 11.0, 8.0, 8.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17292} -{name:"Doomcore staff", itemDescription:"It has been cursed with dark energies, clouding the mind of the wielder.", shopValue:10950, lowAlch:4380, highAlch:6570, isStackable:false, isNoteable:false, weight:6.0, bonuses:[-5.0, -5.0, -5.0, -10.0, -5.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 0.0, -5.0, 0.0, 0.0, 25.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17293} -{name:"Doomcore staff", itemDescription:"It has been cursed with dark energies, clouding the mind of the wielder.", shopValue:10950, lowAlch:4380, highAlch:6570, isStackable:true, isNoteable:true, weight:6.0, bonuses:[-5.0, -5.0, -5.0, -10.0, -5.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0, 0.0, 0.0, -5.0, 0.0, 0.0, 25.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17294} -{name:"Hexhunter bow", itemDescription:"It is stronger against targets with magical powers.", shopValue:10950, lowAlch:4380, highAlch:6570, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -2.0, 45.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17295} -{name:"Hexhunter bow", itemDescription:"It is stronger against targets with magical powers.", shopValue:10950, lowAlch:4380, highAlch:6570, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -2.0, 45.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17296} -{name:"Protoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17297} -{name:"Protoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17298} -{name:"Subleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17299} -{name:"Subleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 2.0, 1.0, 2.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17300} -{name:"Paraleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 2.0, 2.0, 3.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17301} -{name:"Paraleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 2.0, 2.0, 3.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17302} -{name:"Archleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 3.0, 3.0, 4.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17303} -{name:"Archleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 1.0, 3.0, 3.0, 4.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17304} -{name:"Dromoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 2.0, 3.0, 3.0, 4.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17305} -{name:"Dromoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 2.0, 3.0, 3.0, 4.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17306} -{name:"Spinoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 3.0, 5.0, 4.0, 6.0, 7.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17307} -{name:"Spinoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 3.0, 5.0, 4.0, 6.0, 7.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17308} -{name:"Gallileather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 4.0, 6.0, 5.0, 7.0, 10.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17309} -{name:"Gallileather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 4.0, 6.0, 5.0, 7.0, 10.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17310} -{name:"Stegoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 5.0, 7.0, 6.0, 8.0, 13.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17311} -{name:"Stegoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 5.0, 7.0, 6.0, 8.0, 13.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17312} -{name:"Megaleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 7.0, 8.0, 7.0, 9.0, 17.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17313} -{name:"Megaleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 7.0, 8.0, 7.0, 9.0, 17.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17314} -{name:"Tyrannoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 8.0, 9.0, 8.0, 10.0, 21.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17315} -{name:"Tyrannoleather boots", itemDescription:"Boots crafted out of thick lizard hides. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 8.0, 9.0, 8.0, 10.0, 21.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17316} -{name:"Sagittarian boots", itemDescription:"Feet protection made from scaly hides. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 9.0, 10.0, 9.0, 11.0, 26.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17317} -{name:"Sagittarian boots", itemDescription:"Feet protection made from scaly hides. (Tier 11)", shopValue:100000, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-2.0, -2.0, -2.0, -3.0, 9.0, 10.0, 9.0, 11.0, 26.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17318} -{name:"Protoleather chaps", itemDescription:"Made from scaly hides (Tier 1)", shopValue:840, lowAlch:336, highAlch:504, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 2.0, 4.0, 3.0, 4.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17319} -{name:"Protoleather chaps", itemDescription:"Made from scaly hides (Tier 1)", shopValue:840, lowAlch:336, highAlch:504, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 2.0, 4.0, 3.0, 4.0, 1.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17320} -{name:"Subleather chaps", itemDescription:"Made from scaly hides (Tier 2)", shopValue:2040, lowAlch:816, highAlch:1224, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 2.0, 8.0, 6.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17321} -{name:"Subleather chaps", itemDescription:"Made from scaly hides (Tier 2)", shopValue:2040, lowAlch:816, highAlch:1224, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 2.0, 8.0, 6.0, 8.0, 2.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17322} -{name:"Paraleather chaps", itemDescription:"Made from scaly hides (Tier 3)", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 3.0, 11.0, 9.0, 12.0, 4.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17323} -{name:"Paraleather chaps", itemDescription:"Made from scaly hides (Tier 3)", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 3.0, 11.0, 9.0, 12.0, 4.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17324} -{name:"Archleather chaps", itemDescription:"Made from scaly hides. (Tier 4)", shopValue:5280, lowAlch:2112, highAlch:3168, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 4.0, 15.0, 12.0, 17.0, 7.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17325} -{name:"Archleather chaps", itemDescription:"Made from scaly hides. (Tier 4)", shopValue:5280, lowAlch:2112, highAlch:3168, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 4.0, 15.0, 12.0, 17.0, 7.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17326} -{name:"Dromoleather chaps", itemDescription:"Made from scaly hides.(Tier 5)", shopValue:7320, lowAlch:2928, highAlch:4392, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 6.0, 16.0, 13.0, 18.0, 11.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17327} -{name:"Dromoleather chaps", itemDescription:"Made from scaly hides.(Tier 5)", shopValue:7320, lowAlch:2928, highAlch:4392, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 6.0, 16.0, 13.0, 18.0, 11.0, 17.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17328} -{name:"Spinoleather chaps", itemDescription:"Made from scaly hides. (Tier 6)", shopValue:8520, lowAlch:3408, highAlch:5112, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 10.0, 24.0, 19.0, 26.0, 17.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17329} -{name:"Spinoleather chaps", itemDescription:"Made from scaly hides. (Tier 6)", shopValue:8520, lowAlch:3408, highAlch:5112, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 10.0, 24.0, 19.0, 26.0, 17.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17330} -{name:"Gallileather chaps", itemDescription:"Made from scaly hides (Tier 7)", shopValue:10680, lowAlch:4272, highAlch:6408, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 10.0, 24.0, 19.0, 26.0, 17.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17331} -{name:"Gallileather chaps", itemDescription:"Made from scaly hides (Tier 7)", shopValue:10680, lowAlch:4272, highAlch:6408, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 10.0, 24.0, 19.0, 26.0, 17.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17332} -{name:"Stegoleather chaps", itemDescription:"Made from scaly hides. (Tier 8)", shopValue:12120, lowAlch:4848, highAlch:7272, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 14.0, 34.0, 37.0, 36.0, 32.0, 35.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17333} -{name:"Stegoleather chaps", itemDescription:"Made from scaly hides. (Tier 8)", shopValue:12120, lowAlch:4848, highAlch:7272, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 14.0, 34.0, 37.0, 36.0, 32.0, 35.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17334} -{name:"Megaleather chaps", itemDescription:"Made from scaly hides (Tier 9)", shopValue:13800, lowAlch:5520, highAlch:8280, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 16.0, 39.0, 31.0, 42.0, 41.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17335} -{name:"Megaleather chaps", itemDescription:"Made from scaly hides (Tier 9)", shopValue:13800, lowAlch:5520, highAlch:8280, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 16.0, 39.0, 31.0, 42.0, 41.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17336} -{name:"Tyrannoleather chaps", itemDescription:"Made from scaly hides (Tier 10)", shopValue:16320, lowAlch:6528, highAlch:9792, isStackable:false, isNoteable:false, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 18.0, 44.0, 35.0, 47.0, 50.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17337} -{name:"Tyrannoleather chaps", itemDescription:"Made from scaly hides (Tier 10)", shopValue:16320, lowAlch:6528, highAlch:9792, isStackable:true, isNoteable:true, weight:4.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 18.0, 44.0, 35.0, 47.0, 50.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17338} -{name:"Sagittarian chaps", itemDescription:"Leg protection made from scaly hides. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 20.0, 49.0, 39.0, 52.0, 62.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17339} -{name:"Sagittarian chaps", itemDescription:"Leg protection made from scaly hides. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-7.0, -7.0, -7.0, -10.0, 20.0, 49.0, 39.0, 52.0, 62.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17340} -{name:"Novite kiteshield", itemDescription:"A large metal shield. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 5.0, 10.0, 8.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17341} -{name:"Novite kiteshield", itemDescription:"A large metal shield. (Tier 1)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 5.0, 10.0, 8.0, -1.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17342} -{name:"Bathus kiteshield", itemDescription:"A large metal shield. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 9.0, 18.0, 15.0, -1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17343} -{name:"Bathus kiteshield", itemDescription:"A large metal shield. (Tier 2)", shopValue:2550, lowAlch:1020, highAlch:1530, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 9.0, 18.0, 15.0, -1.0, 16.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17344} -{name:"Marmaros kiteshield", itemDescription:"A large metal shield. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 16.0, 28.0, 23.0, -1.0, -24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17345} -{name:"Marmaros kiteshield", itemDescription:"A large metal shield. (Tier 3)", shopValue:4800, lowAlch:1920, highAlch:2880, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 16.0, 28.0, 23.0, -1.0, -24.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17346} -{name:"Kratonite kiteshield", itemDescription:"A large metal shield. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 22.0, 38.0, 31.0, -1.0, 33.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17347} -{name:"Kratonite kiteshield", itemDescription:"A large metal shield. (Tier 4)", shopValue:6600, lowAlch:2640, highAlch:3960, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 22.0, 38.0, 31.0, -1.0, 33.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17348} -{name:"Fractite kiteshield", itemDescription:"A large metal shield. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 49.0, 40.0, -1.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17349} -{name:"Fractite kiteshield", itemDescription:"A large metal shield. (Tier 5)", shopValue:9150, lowAlch:3660, highAlch:5490, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 28.0, 49.0, 40.0, -1.0, 42.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17350} -{name:"Zephyrium kiteshield", itemDescription:"A large metal shield. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 35.0, 61.0, 50.0, -1.0, 52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17351} -{name:"Zephyrium kiteshield", itemDescription:"A large metal shield. (Tier 6)", shopValue:10650, lowAlch:4260, highAlch:6390, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 35.0, 61.0, 50.0, -1.0, 52.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17352} -{name:"Argonite kiteshield", itemDescription:"A large metal shield. (Tier 7)", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 42.0, 73.0, 60.0, -1.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17353} -{name:"Argonite kiteshield", itemDescription:"A large metal shield. (Tier 7)", shopValue:13350, lowAlch:5340, highAlch:8010, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 42.0, 73.0, 60.0, -1.0, 62.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17354} -{name:"Katagon kiteshield", itemDescription:"A large metal shield. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 49.0, 85.0, 70.0, -1.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17355} -{name:"Katagon kiteshield", itemDescription:"A large metal shield. (Tier 8)", shopValue:15150, lowAlch:6060, highAlch:9090, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 49.0, 85.0, 70.0, -1.0, 73.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17356} -{name:"Gorgonite kiteshield", itemDescription:"A large metal shield. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 56.0, 98.0, 81.0, -1.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17357} -{name:"Gorgonite kiteshield", itemDescription:"A large metal shield. (Tier 9)", shopValue:17250, lowAlch:6900, highAlch:10350, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 56.0, 98.0, 81.0, -1.0, 84.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17358} -{name:"Promethium kiteshield", itemDescription:"A large metal shield. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 63.0, 111.0, 92.0, -1.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17359} -{name:"Promethium kiteshield", itemDescription:"A large metal shield. (Tier 10)", shopValue:20400, lowAlch:8160, highAlch:12240, isStackable:true, isNoteable:true, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 63.0, 111.0, 92.0, -1.0, 95.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17360} -{name:"Primal kiteshield", itemDescription:"A large metal shield. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 70.0, 123.0, 102.0, -1.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17361} -{name:"Primal kiteshield", itemDescription:"A large metal shield. (Tier 11)", shopValue:200000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 70.0, 123.0, 102.0, -1.0, 105.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17362} -{name:"Guard room key", itemDescription:"A key taken from a guard.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17363} -{name:"Lump of stone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17364} -{name:"Spare construct arm (u)", itemDescription:"I need to imbue this with rune energy to complete it", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17365} -{name:"Spare construct leg (u)", itemDescription:"I need to imbue this with rune energy to complete it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17366} -{name:"Spare construct head (u)", itemDescription:"I need to imbue this with rune energy to complete it", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17367} -{name:"Spare construct arm", itemDescription:"A complete replacement part for the construct", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17368} -{name:"Spare construct arm", itemDescription:"A complete replacement part for the construct", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17369} -{name:"Spare construct leg", itemDescription:"A complete replacement part for the construct.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17370} -{name:"Spare construct leg", itemDescription:"A complete replacement part for the construct.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17371} -{name:"Spare construct head", itemDescription:"A complete replacement part for the construct.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17372} -{name:"Spare construct head", itemDescription:"A complete replacement part for the construct.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17373} -{name:"Raw vile fish", itemDescription:"It smells like eating it would kill you.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17374} -{name:"Vile fish", itemDescription:"It still smells like eating it would kill you.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17375} -{name:"Power crystal", itemDescription:"Used to power some ancient device.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17376} -{name:"Dry logs", itemDescription:"They can't be used for much.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17377} -{name:"Simple trap", itemDescription:"A simple trap to catch a small creature.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17378} -{name:"Ashes (o)", itemDescription:"A heap of ashes (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17379} -{name:"Ashes (o)", itemDescription:"A heap of ashes (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17380} -{name:"Banana (o)", itemDescription:"A wooden carving of a banana (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17381} -{name:"Banana (o)", itemDescription:"A wooden carving of a banana (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17382} -{name:"Unholy symbol (o)", itemDescription:"An unholy symbol of Zamorak (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17383} -{name:"Unholy symbol (o)", itemDescription:"An unholy symbol of Zamorak (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17384} -{name:"Blood rune (o)", itemDescription:"A stone carved to look like a blood rune (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17385} -{name:"Blood rune (o)", itemDescription:"A stone carved to look like a blood rune (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17386} -{name:"Bones (o)", itemDescription:"Stone-made bones (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17387} -{name:"Bones (o)", itemDescription:"Stone-made bones (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17388} -{name:"Bow string (o)", itemDescription:"Pretty useless without the rest of the bow (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17389} -{name:"Bow string (o)", itemDescription:"Pretty useless without the rest of the bow (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17390} -{name:"Coins (o)", itemDescription:"The markings on these coins are unfamiliar (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17391} -{name:"Coins (o)", itemDescription:"The markings on these coins are unfamiliar (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17392} -{name:"Feather (o)", itemDescription:"The bird this came from is long gone (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17393} -{name:"Feather (o)", itemDescription:"The bird this came from is long gone (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17394} -{name:"Firebreath whiskey (o)", itemDescription:"It looks like it has a kick (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17395} -{name:"Firebreath whiskey (o)", itemDescription:"It looks like it has a kick (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17396} -{name:"Cave eel (o)", itemDescription:"It's a bit slimy.", shopValue:1, lowAlch:6, highAlch:9, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17397} -{name:"Cave eel (o)", itemDescription:"It's a bit slimy.", shopValue:1, lowAlch:6, highAlch:9, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17398} -{name:"Fishing rod (o)", itemDescription:"This looks like it belongs in a museum (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17399} -{name:"Fishing rod (o)", itemDescription:"This looks like it belongs in a museum (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17400} -{name:"Hammer (o)", itemDescription:"Good for hitting things...just not anymore (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17401} -{name:"Hammer (o)", itemDescription:"Good for hitting things...just not anymore (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17402} -{name:"Headless arrow (o)", itemDescription:"A wooden arrow shaft with flights attached (ornamental).", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17403} -{name:"Headless arrow (o)", itemDescription:"A wooden arrow shaft with flights attached (ornamental).", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17404} -{name:"Novite kiteshield (o)", itemDescription:"A rusty metal shield in the shape of a kite (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17405} -{name:"Novite kiteshield (o)", itemDescription:"A rusty metal shield in the shape of a kite (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17406} -{name:"Gissel mushroom (o)", itemDescription:"A wooden carving of an edible cave mushroom (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17407} -{name:"Gissel mushroom (o)", itemDescription:"A wooden carving of an edible cave mushroom (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17408} -{name:"Needle (o)", itemDescription:"Used with thread and cloth to make clothes (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17409} -{name:"Needle (o)", itemDescription:"Used with thread and cloth to make clothes (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17410} -{name:"Weapon poison (o)", itemDescription:"A stoppered vial with a big skull on the side (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17411} -{name:"Weapon poison (o)", itemDescription:"A stoppered vial with a big skull on the side (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17412} -{name:"Vial of water (o)", itemDescription:"An old vial containing some murky water (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17413} -{name:"Vial of water (o)", itemDescription:"An old vial containing some murky water (ornamental).", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17414} -{name:"Stone block", itemDescription:"Perfect for carving.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17415} -{name:"Stone sword", itemDescription:"An ornamental sword that's not designed for combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17416} -{name:"Stone sword", itemDescription:"An ornamental sword that's not designed for combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17417} -{name:"Stone bow", itemDescription:"An ornamental bow that's not designed for combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17418} -{name:"Stone bow", itemDescription:"An ornamental bow that's not designed for combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17419} -{name:"Stone staff", itemDescription:"An ornamental staff that's not designed for combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17420} -{name:"Stone staff", itemDescription:"An ornamental staff that's not designed for combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17421} -{name:"Broken barrel bits", itemDescription:"Big but badly broken barrel bits. Brilliant!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17422} -{name:"Broken barrel bits", itemDescription:"Big but badly broken barrel bits. Brilliant!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17423} -{name:"Protomastyx hide", itemDescription:"It's a scaly Protomastyx hide. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17424} -{name:"Protomastyx hide", itemDescription:"It's a scaly Protomastyx hide. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17425} -{name:"Submastyx hide", itemDescription:"It's a scaly submastyx hide. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17426} -{name:"Submastyx hide", itemDescription:"It's a scaly submastyx hide. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17427} -{name:"Paramastyx hide", itemDescription:"It's a scaly Paramastyx hide. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17428} -{name:"Paramastyx hide", itemDescription:"It's a scaly Paramastyx hide. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17429} -{name:"Archaemastyx hide", itemDescription:"It's a scaly Archaemastyx hide. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17430} -{name:"Archaemastyx hide", itemDescription:"It's a scaly Archaemastyx hide. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17431} -{name:"Dromomastyx hide", itemDescription:"It's a scaly dromomastyx hide. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17432} -{name:"Dromomastyx hide", itemDescription:"It's a scaly dromomastyx hide. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17433} -{name:"Spinomastyx hide", itemDescription:"It's a scaly Spinomastyx hide. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17434} -{name:"Spinomastyx hide", itemDescription:"It's a scaly Spinomastyx hide. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17435} -{name:"Gallimastyx hide", itemDescription:"It's a scaly gallimastyx hide. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17436} -{name:"Gallimastyx hide", itemDescription:"It's a scaly gallimastyx hide. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17437} -{name:"Stegomastyx hide", itemDescription:"It's a scaly stegomastyx hide. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17438} -{name:"Stegomastyx hide", itemDescription:"It's a scaly stegomastyx hide. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17439} -{name:"Megamastyx hide", itemDescription:"It's a scaly megamastyx hide. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17440} -{name:"Megamastyx hide", itemDescription:"It's a scaly megamastyx hide. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17441} -{name:"Tyrannomastyx hide", itemDescription:"It's a scaly tyrannomastyx hide. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17442} -{name:"Tyrannomastyx hide", itemDescription:"It's a scaly tyrannomastyx hide. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17443} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:0, lowAlch:5, highAlch:8, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17444} -{name:"Chisel", itemDescription:"Good for detailed crafting.", shopValue:0, lowAlch:5, highAlch:8, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17445} -{name:"Needle", itemDescription:"Used with a thread to make clothes.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17446} -{name:"Thread", itemDescription:"Use with a needle to make clothes.", shopValue:10, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17447} -{name:"Salve nettles", itemDescription:"", shopValue:280, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17448} -{name:"Salve nettles", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17449} -{name:"Wildercress", itemDescription:"", shopValue:680, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17450} -{name:"Wildercress", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17451} -{name:"Blightleaf", itemDescription:"", shopValue:1280, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17452} -{name:"Blightleaf", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17453} -{name:"Roseblood", itemDescription:"", shopValue:1760, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17454} -{name:"Roseblood", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17455} -{name:"Bryll", itemDescription:"", shopValue:2440, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17456} -{name:"Bryll", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17457} -{name:"Duskweed", itemDescription:"", shopValue:2840, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17458} -{name:"Duskweed", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17459} -{name:"Soulbell", itemDescription:"", shopValue:3560, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17460} -{name:"Soulbell", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17461} -{name:"Ectograss", itemDescription:"", shopValue:4040, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17462} -{name:"Ectograss", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17463} -{name:"Runeleaf", itemDescription:"", shopValue:4600, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17464} -{name:"Runeleaf", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17465} -{name:"Spiritbloom", itemDescription:"", shopValue:5440, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17466} -{name:"Spiritbloom", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17467} -{name:"Salve cloth", itemDescription:"Perfect for mage armour. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17468} -{name:"Salve cloth", itemDescription:"Perfect for mage armour. (Tier 1)", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17469} -{name:"Wildercress cloth", itemDescription:"Perfect for mage armour. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17470} -{name:"Wildercress cloth", itemDescription:"Perfect for mage armour. (Tier 2)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17471} -{name:"Blightleaf cloth", itemDescription:"Perfect for mage armour. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17472} -{name:"Blightleaf cloth", itemDescription:"Perfect for mage armour. (Tier 3)", shopValue:1280, lowAlch:512, highAlch:768, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17473} -{name:"Roseblood cloth", itemDescription:"Perfect for mage armour. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17474} -{name:"Roseblood cloth", itemDescription:"Perfect for mage armour. (Tier 4)", shopValue:1760, lowAlch:704, highAlch:1056, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17475} -{name:"Bryll cloth", itemDescription:"Perfect for mage armour. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17476} -{name:"Bryll cloth", itemDescription:"Perfect for mage armour. (Tier 5)", shopValue:2440, lowAlch:976, highAlch:1464, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17477} -{name:"Duskweed cloth", itemDescription:"Perfect for mage armour. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17478} -{name:"Duskweed cloth", itemDescription:"Perfect for mage armour. (Tier 6)", shopValue:2840, lowAlch:1136, highAlch:1704, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17479} -{name:"Soulbell cloth", itemDescription:"Perfect for mage armour. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17480} -{name:"Soulbell cloth", itemDescription:"Perfect for mage armour. (Tier 7)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17481} -{name:"Ectocloth", itemDescription:"Perfect for mage armour. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17482} -{name:"Ectocloth", itemDescription:"Perfect for mage armour. (Tier 8)", shopValue:4040, lowAlch:1616, highAlch:2424, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17483} -{name:"Runic cloth", itemDescription:"Perfect for mage armour. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17484} -{name:"Runic cloth", itemDescription:"Perfect for mage armour. (Tier 9)", shopValue:4600, lowAlch:1840, highAlch:2760, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17485} -{name:"Spiritbloom cloth", itemDescription:"Perfect for mage armour. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17486} -{name:"Spiritbloom cloth", itemDescription:"Perfect for mage armour. (Tier 10)", shopValue:5440, lowAlch:2176, highAlch:3264, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17487} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17488} -{name:"Gatestone", itemDescription:"Drop it and you can teleport back to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17489} -{name:"Vial", itemDescription:"An empty glass vial.", shopValue:10, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17490} -{name:"Vial", itemDescription:"An empty glass vial.", shopValue:10, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17491} -{name:"Vial of water", itemDescription:"A glass vial containing water.", shopValue:11, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17492} -{name:"Vial of water", itemDescription:"A glass vial containing water.", shopValue:11, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17493} -{name:"Grimy sagewort", itemDescription:"A fresh herb. (Tier 1)", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17494} -{name:"Grimy sagewort", itemDescription:"A fresh herb. (Tier 1)", shopValue:1, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17495} -{name:"Grimy valerian", itemDescription:"A fresh herb. (Tier 1)", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17496} -{name:"Grimy valerian", itemDescription:"A fresh herb. (Tier 1)", shopValue:1, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17497} -{name:"Grimy aloe", itemDescription:"A fresh herb. (Tier 1)", shopValue:1350, lowAlch:540, highAlch:810, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17498} -{name:"Grimy aloe", itemDescription:"A fresh herb. (Tier 1)", shopValue:1, lowAlch:540, highAlch:810, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17499} -{name:"Grimy wormwood leaf", itemDescription:"A fresh herb. (Tier 2)", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17500} -{name:"Grimy wormwood leaf", itemDescription:"A fresh herb. (Tier 2)", shopValue:1, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17501} -{name:"Grimy magebane", itemDescription:"A fresh herb. (Tier 2)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17502} -{name:"Grimy magebane", itemDescription:"A fresh herb. (Tier 2)", shopValue:1, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17503} -{name:"Grimy featherfoil", itemDescription:"A fresh herb. (Tier 2)", shopValue:2700, lowAlch:1080, highAlch:1620, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17504} -{name:"Grimy featherfoil", itemDescription:"A fresh herb. (Tier 2)", shopValue:1, lowAlch:1080, highAlch:1620, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17505} -{name:"Grimy winter's grip", itemDescription:"A fresh herb. (Tier 3)", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17506} -{name:"Grimy winter's grip", itemDescription:"A fresh herb. (Tier 3)", shopValue:1, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17507} -{name:"Grimy lycopus", itemDescription:"A fresh herb. (Tier 3)", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17508} -{name:"Grimy lycopus", itemDescription:"A fresh herb. (Tier 3)", shopValue:1, lowAlch:1400, highAlch:2100, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17509} -{name:"Grimy buckthorn", itemDescription:"A fresh herb. (Tier 3)", shopValue:4500, lowAlch:1800, highAlch:2700, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17510} -{name:"Grimy buckthorn", itemDescription:"A fresh herb. (Tier 3)", shopValue:1, lowAlch:1800, highAlch:2700, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17511} -{name:"Clean sagewort", itemDescription:"A fresh herb. (Tier 1)", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17512} -{name:"Clean sagewort", itemDescription:"A fresh herb. (Tier 1)", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17513} -{name:"Clean valerian", itemDescription:"A fresh herb. (Tier 1)", shopValue:1350, lowAlch:540, highAlch:810, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17514} -{name:"Clean valerian", itemDescription:"A fresh herb. (Tier 1)", shopValue:1350, lowAlch:540, highAlch:810, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17515} -{name:"Clean aloe", itemDescription:"A fresh herb. (Tier 1)", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17516} -{name:"Clean aloe", itemDescription:"A fresh herb. (Tier 1)", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17517} -{name:"Clean wormwood leaf", itemDescription:"A fresh herb. (Tier 2)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17518} -{name:"Clean wormwood leaf", itemDescription:"A fresh herb. (Tier 2)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17519} -{name:"Clean magebane", itemDescription:"A fresh herb. (Tier 2)", shopValue:2650, lowAlch:1060, highAlch:1590, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17520} -{name:"Clean magebane", itemDescription:"A fresh herb. (Tier 2)", shopValue:2650, lowAlch:1060, highAlch:1590, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17521} -{name:"Clean featherfoil", itemDescription:"A fresh herb (Tier 2).", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17522} -{name:"Clean featherfoil", itemDescription:"A fresh herb (Tier 2).", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17523} -{name:"Clean winter's grip", itemDescription:"A fresh herb. (Tier 3)", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17524} -{name:"Clean winter's grip", itemDescription:"A fresh herb. (Tier 3)", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17525} -{name:"Clean lycopus", itemDescription:"A fresh herb (Tier 3).", shopValue:4650, lowAlch:1860, highAlch:2790, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17526} -{name:"Clean lycopus", itemDescription:"A fresh herb (Tier 3).", shopValue:4650, lowAlch:1860, highAlch:2790, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17527} -{name:"Clean buckthorn", itemDescription:"A fresh herb. (Tier 3)", shopValue:5500, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17528} -{name:"Clean buckthorn", itemDescription:"A fresh herb. (Tier 3)", shopValue:5500, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17529} -{name:"Void dust", itemDescription:"A strange dust acquired from a demon. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17530} -{name:"Void dust", itemDescription:"A strange dust acquired from a demon. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17531} -{name:"Misshapen claw", itemDescription:"The misshapen claw of a beast. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17532} -{name:"Misshapen claw", itemDescription:"The misshapen claw of a beast. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17533} -{name:"Red moss", itemDescription:"Thick, red and strangely glowing moss. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17534} -{name:"Red moss", itemDescription:"Thick, red and strangely glowing moss. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17535} -{name:"Firebreath whiskey", itemDescription:"A very strong whiskey. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17536} -{name:"Firebreath whiskey", itemDescription:"A very strong whiskey. Used in potions.", shopValue:500, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17537} -{name:"Sagewort potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 1)", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17538} -{name:"Sagewort potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 1)", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17539} -{name:"Valerian potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 1)", shopValue:1350, lowAlch:540, highAlch:810, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17540} -{name:"Valerian potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 1)", shopValue:1350, lowAlch:540, highAlch:810, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17541} -{name:"Aloe potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 1)", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17542} -{name:"Aloe potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 1)", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17543} -{name:"Wormwood potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 2)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17544} -{name:"Wormwood potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 2)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17545} -{name:"Magebane potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 2)", shopValue:2650, lowAlch:1060, highAlch:1590, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17546} -{name:"Magebane potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 2)", shopValue:2650, lowAlch:1060, highAlch:1590, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17547} -{name:"Featherfoil potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 2)", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17548} -{name:"Featherfoil potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 2)", shopValue:3600, lowAlch:1440, highAlch:2160, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17549} -{name:"Winter's grip potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 3)", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17550} -{name:"Winter's grip potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 3)", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17551} -{name:"Lycopus potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 3)", shopValue:4650, lowAlch:1860, highAlch:2790, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17552} -{name:"Lycopus potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 3)", shopValue:4650, lowAlch:1860, highAlch:2790, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17553} -{name:"Buckthorn potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 3)", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17554} -{name:"Buckthorn potion (unf)", itemDescription:"I need another ingredient to finish this potion. (Tier 3)", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17555} -{name:"Weak magic potion", itemDescription:"A potion that increases a person's magical abilities. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17556} -{name:"Weak magic potion", itemDescription:"A potion that increases a person's magical abilities. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17557} -{name:"Weak ranged potion", itemDescription:"A potion that increases a person's ranged abilities. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1221, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17558} -{name:"Weak ranged potion", itemDescription:"A potion that increases a person's ranged abilities. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1221, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17559} -{name:"Weak melee potion", itemDescription:"A potion that increases a person's melee abilities. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1220, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17560} -{name:"Weak melee potion", itemDescription:"A potion that increases a person's melee abilities. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1220, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17561} -{name:"Weak defence potion", itemDescription:"Unknown", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17562} -{name:"Weak defence potion", itemDescription:"Unknown", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17563} -{name:"Weak stat restore potion", itemDescription:"This potion restores drained stats. (Tier 1)", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17564} -{name:"Weak stat restore potion", itemDescription:"This potion restores drained stats. (Tier 1)", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17565} -{name:"Antipoison", itemDescription:"X doses of antipoison potion.", shopValue:200, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17566} -{name:"Antipoison", itemDescription:"X doses of antipoison potion.", shopValue:200, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17567} -{name:"Weak cure potion", itemDescription:"A potion that protects against poison, disease and dragonfire. (Tier 1)", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17568} -{name:"Weak cure potion", itemDescription:"A potion that protects against poison, disease and dragonfire. (Tier 1)", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17569} -{name:"Weak rejuvenation potion", itemDescription:"A potion that restores prayer and summoning. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1221, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17570} -{name:"Weak rejuvenation potion", itemDescription:"A potion that restores prayer and summoning. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1221, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17571} -{name:"Weak weapon poison", itemDescription:"A vial of weapon poison. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17572} -{name:"Weak weapon poison", itemDescription:"A vial of weapon poison. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17573} -{name:"Weak gatherer's potion", itemDescription:"A potion that improves a person's gathering skills. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17574} -{name:"Weak gatherer's potion", itemDescription:"A potion that improves a person's gathering skills. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17575} -{name:"Weak artisan's potion", itemDescription:"A potion that improves a person's creative skills. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1220, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17576} -{name:"Weak artisan's potion", itemDescription:"A potion that improves a person's creative skills. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1220, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17577} -{name:"Weak naturalist's potion", itemDescription:"A potion that improves Cooking, Farming, Herblore and Runecrafting. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17578} -{name:"Weak naturalist's potion", itemDescription:"A potion that improves Cooking, Farming, Herblore and Runecrafting. (Tier 1)", shopValue:1650, lowAlch:660, highAlch:990, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17579} -{name:"Weak survivalist's potion", itemDescription:"A potion that improves Agility, Thieving, Hunter and Slayer. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1221, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17580} -{name:"Weak survivalist's potion", itemDescription:"A potion that improves Agility, Thieving, Hunter and Slayer. (Tier 1)", shopValue:2035, lowAlch:814, highAlch:1221, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17581} -{name:"Magic potion", itemDescription:"X dose(s) of Magic potion.", shopValue:2750, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17582} -{name:"Magic potion", itemDescription:"X dose(s) of Magic potion.", shopValue:2750, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17583} -{name:"Ranged potion", itemDescription:"X doses of ranging potion.", shopValue:3465, lowAlch:115, highAlch:172, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17584} -{name:"Ranged potion", itemDescription:"X doses of ranging potion.", shopValue:3465, lowAlch:115, highAlch:172, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17585} -{name:"Melee potion", itemDescription:"A potion that increases a person's melee abilities. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17586} -{name:"Melee potion", itemDescription:"A potion that increases a person's melee abilities. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17587} -{name:"Defence potion", itemDescription:"(x) doses of Defence Potion.", shopValue:4510, lowAlch:352, highAlch:528, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17588} -{name:"Defence potion", itemDescription:"(x) doses of Defence Potion.", shopValue:4510, lowAlch:352, highAlch:528, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17589} -{name:"Stat restore potion", itemDescription:"X dose(s) of restore potion.", shopValue:4510, lowAlch:35, highAlch:52, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17590} -{name:"Stat restore potion", itemDescription:"X dose(s) of restore potion.", shopValue:4510, lowAlch:35, highAlch:52, isStackable:true, isNoteable:true, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17591} -{name:"Cure potion", itemDescription:"A potion that protects against poison, disease and dragonfire. (Tier 2)", shopValue:4510, lowAlch:1804, highAlch:2706, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17592} -{name:"Cure potion", itemDescription:"A potion that protects against poison, disease and dragonfire. (Tier 2)", shopValue:4510, lowAlch:1804, highAlch:2706, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17593} -{name:"Rejuvenation potion", itemDescription:"A potion that restores prayer and summoning points. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17594} -{name:"Rejuvenation potion", itemDescription:"A potion that restores prayer and summoning points. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17595} -{name:"Weapon poison", itemDescription:"For use on daggers and projectiles.", shopValue:2750, lowAlch:57, highAlch:86, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17596} -{name:"Weapon poison", itemDescription:"For use on daggers and projectiles.", shopValue:2750, lowAlch:57, highAlch:86, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17597} -{name:"Gatherer's potion", itemDescription:"A potion that improves a person's gathering skills. (Tier 2)", shopValue:2750, lowAlch:1100, highAlch:1650, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17598} -{name:"Gatherer's potion", itemDescription:"A potion that improves a person's gathering skills. (Tier 2)", shopValue:2750, lowAlch:1100, highAlch:1650, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17599} -{name:"Artisan's potion", itemDescription:"A potion that improves a person's creation skills. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17600} -{name:"Artisan's potion", itemDescription:"A potion that improves a person's creation skills. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17601} -{name:"Naturalist's potion", itemDescription:"A potion that improves Cooking, Farming, Herblore and Runecrafting. (Tier 2)", shopValue:2750, lowAlch:1100, highAlch:1650, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17602} -{name:"Naturalist's potion", itemDescription:"A potion that improves Cooking, Farming, Herblore and Runecrafting. (Tier 2)", shopValue:2750, lowAlch:1100, highAlch:1650, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17603} -{name:"Survivalist's potion", itemDescription:"A potion that improves Agility, Thieving, Hunter and Slayer. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17604} -{name:"Survivalist's potion", itemDescription:"A potion that improves Agility, Thieving, Hunter and Slayer. (Tier 2)", shopValue:3465, lowAlch:1386, highAlch:2079, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17605} -{name:"Strong magic potion", itemDescription:"A potion that increases a person's magical abilities. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17606} -{name:"Strong magic potion", itemDescription:"A potion that increases a person's magical abilities. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17607} -{name:"Strong ranged potion", itemDescription:"A potion that increases a person's ranged abilities. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17608} -{name:"Strong ranged potion", itemDescription:"A potion that increases a person's ranged abilities. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17609} -{name:"Strong melee potion", itemDescription:"A potion that increases a person's melee abilities. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17610} -{name:"Strong melee potion", itemDescription:"A potion that increases a person's melee abilities. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17611} -{name:"Strong defence potion", itemDescription:"A potion that strengthens a person's defence. (Tier 3)", shopValue:7150, lowAlch:2860, highAlch:4290, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17612} -{name:"Strong defence potion", itemDescription:"A potion that strengthens a person's defence. (Tier 3)", shopValue:7150, lowAlch:2860, highAlch:4290, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17613} -{name:"Strong stat restore potion", itemDescription:"This potion restores drained stats. (Tier 3)", shopValue:7150, lowAlch:2860, highAlch:4290, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17614} -{name:"Strong stat restore potion", itemDescription:"This potion restores drained stats. (Tier 3)", shopValue:7150, lowAlch:2860, highAlch:4290, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17615} -{name:"Strong cure potion", itemDescription:"A potion that protects against poison, disease and dragonfire. (Tier 3)", shopValue:7150, lowAlch:2860, highAlch:4290, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17616} -{name:"Strong cure potion", itemDescription:"A potion that protects against poison, disease and dragonfire. (Tier 3)", shopValue:7150, lowAlch:2860, highAlch:4290, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17617} -{name:"Strong rejuvenation potion", itemDescription:"A potion that restores prayer and summoning points. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17618} -{name:"Strong rejuvenation potion", itemDescription:"A potion that restores prayer and summoning points. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17619} -{name:"Strong weapon poison", itemDescription:"A vial of weapon poison. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17620} -{name:"Strong weapon poison", itemDescription:"A vial of weapon poison. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17621} -{name:"Strong gatherer's potion", itemDescription:"A potion that improves a person's gathering skills. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17622} -{name:"Strong gatherer's potion", itemDescription:"A potion that improves a person's gathering skills. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17623} -{name:"Strong artisan's potion", itemDescription:"A potion that increases a person's creation skills. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17624} -{name:"Strong artisan's potion", itemDescription:"A potion that increases a person's creation skills. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17625} -{name:"Strong naturalist's potion", itemDescription:"A potion that improves Cooking, Farming, Herblore and Runecrafting. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17626} -{name:"Strong naturalist's potion", itemDescription:"A potion that improves Cooking, Farming, Herblore and Runecrafting. (Tier 3)", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17627} -{name:"Strong survivalist's potion", itemDescription:"A potion that improves Agility, Thieving, Hunter and Slayer. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17628} -{name:"Strong survivalist's potion", itemDescription:"A potion that improves Agility, Thieving, Hunter and Slayer. (Tier 3)", shopValue:5665, lowAlch:2266, highAlch:3399, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17629} -{name:"Novite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17630} -{name:"Novite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 1)", shopValue:1, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17631} -{name:"Bathus ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17632} -{name:"Bathus ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 2)", shopValue:1, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17633} -{name:"Marmaros ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17634} -{name:"Marmaros ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 3)", shopValue:1, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17635} -{name:"Kratonium ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17636} -{name:"Kratonium ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 4)", shopValue:1, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17637} -{name:"Fractite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17638} -{name:"Fractite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 5)", shopValue:1, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17639} -{name:"Zephyrium ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17640} -{name:"Zephyrium ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 6)", shopValue:1, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17641} -{name:"Argonite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17642} -{name:"Argonite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 7)", shopValue:1, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17643} -{name:"Katagon ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17644} -{name:"Katagon ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 8)", shopValue:1, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17645} -{name:"Gorgonite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17646} -{name:"Gorgonite ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 9)", shopValue:1, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17647} -{name:"Promethium ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17648} -{name:"Promethium ore", itemDescription:"It's a rock now, but there's potential for so much more! (Tier 10)", shopValue:1, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:225.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17649} -{name:"Novite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17650} -{name:"Novite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 1)", shopValue:350, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17651} -{name:"Bathus bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17652} -{name:"Bathus bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 2)", shopValue:850, lowAlch:340, highAlch:510, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17653} -{name:"Marmaros bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17654} -{name:"Marmaros bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 3)", shopValue:1600, lowAlch:640, highAlch:960, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17655} -{name:"Kratonite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17656} -{name:"Kratonite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 4)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17657} -{name:"Fractite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17658} -{name:"Fractite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 5)", shopValue:3050, lowAlch:1220, highAlch:1830, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17659} -{name:"Zephyrium bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:false, isNoteable:false, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17660} -{name:"Zephyrium bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 6)", shopValue:3550, lowAlch:1420, highAlch:2130, isStackable:true, isNoteable:true, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17661} -{name:"Argonite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17662} -{name:"Argonite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 7)", shopValue:4450, lowAlch:1780, highAlch:2670, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17663} -{name:"Katagon bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17664} -{name:"Katagon bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 8)", shopValue:5050, lowAlch:2020, highAlch:3030, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17665} -{name:"Gorgonite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17666} -{name:"Gorgonite bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 9)", shopValue:5750, lowAlch:2300, highAlch:3450, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17667} -{name:"Promethium bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:false, isNoteable:false, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17668} -{name:"Promethium bar", itemDescription:"A solid bar of metal, used for smithing. (Tier 10)", shopValue:6800, lowAlch:2720, highAlch:4080, isStackable:true, isNoteable:true, weight:175.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17669} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17670} -{name:"Bones", itemDescription:"0.5 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17671} -{name:"Bat bones", itemDescription:"Ew it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17672} -{name:"Bat bones", itemDescription:"Ew it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17673} -{name:"Big bones", itemDescription:"Ew, it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17674} -{name:"Big bones", itemDescription:"Ew, it's a pile of bones.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17675} -{name:"Dragon bones", itemDescription:"These would feed a dog for months!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17676} -{name:"Dragon bones", itemDescription:"These would feed a dog for months!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17677} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:25, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17678} -{name:"Tinderbox", itemDescription:"Useful for lighting a fire.", shopValue:25, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17679} -{name:"Ashes", itemDescription:"A heap of ashes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:56.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17680} -{name:"Ashes", itemDescription:"A heap of ashes.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:56.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17681} -{name:"Tangle gum branches", itemDescription:"There's enough wood here to be of use. (Tier 1)", shopValue:150, lowAlch:60, highAlch:90, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17682} -{name:"Tangle gum branches", itemDescription:"There's enough wood here to be of use. (Tier 1)", shopValue:1, lowAlch:60, highAlch:90, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17683} -{name:"Seeping elm branches", itemDescription:"There's enough wood here to be of use. (Tier 2)", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17684} -{name:"Seeping elm branches", itemDescription:"There's enough wood here to be of use. (Tier 2)", shopValue:1, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17685} -{name:"Blood spindle branches", itemDescription:"There's enough wood here to be of use. (Tier 3)", shopValue:550, lowAlch:220, highAlch:330, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17686} -{name:"Blood spindle branches", itemDescription:"There's enough wood here to be of use. (Tier 3)", shopValue:1, lowAlch:220, highAlch:330, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17687} -{name:"Utuku branches", itemDescription:"There's enough wood here to be of use. (Tier 4)", shopValue:750, lowAlch:300, highAlch:450, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17688} -{name:"Utuku branches", itemDescription:"There's enough wood here to be of use. (Tier 4)", shopValue:1, lowAlch:300, highAlch:450, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17689} -{name:"Spinebeam branches", itemDescription:"There's enough wood here to be of use. (Tier 5)", shopValue:1050, lowAlch:420, highAlch:630, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17690} -{name:"Spinebeam branches", itemDescription:"There's enough wood here to be of use. (Tier 5)", shopValue:1, lowAlch:420, highAlch:630, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17691} -{name:"Bovistrangler branches", itemDescription:"There's enough wood here to be of use. (Tier 6)", shopValue:1250, lowAlch:500, highAlch:750, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17692} -{name:"Bovistrangler branches", itemDescription:"There's enough wood here to be of use. (Tier 6)", shopValue:1, lowAlch:500, highAlch:750, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17693} -{name:"Thigat branches", itemDescription:"There's enough wood here to be of use. (Tier 7)", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17694} -{name:"Thigat branches", itemDescription:"There's enough wood here to be of use. (Tier 7)", shopValue:1, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17695} -{name:"Corpsethorn branches", itemDescription:"There's enough wood here to be of use. (Tier 8)", shopValue:1750, lowAlch:700, highAlch:1050, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17696} -{name:"Corpsethorn branches", itemDescription:"There's enough wood here to be of use. (Tier 8)", shopValue:1, lowAlch:700, highAlch:1050, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17697} -{name:"Entgallow branches", itemDescription:"There's enough wood here to be of use. (Tier 9)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17698} -{name:"Entgallow branches", itemDescription:"There's enough wood here to be of use. (Tier 9)", shopValue:1, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17699} -{name:"Grave creeper branches", itemDescription:"There's enough wood here to be of use. (Tier 10)", shopValue:2350, lowAlch:940, highAlch:1410, isStackable:false, isNoteable:false, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17700} -{name:"Grave creeper branches", itemDescription:"There's enough wood here to be of use. (Tier 10)", shopValue:1, lowAlch:940, highAlch:1410, isStackable:true, isNoteable:true, weight:19.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17701} -{name:"Tangle gum shortbow (u)", itemDescription:"I need to find a string for this (Tier 1).", shopValue:490, lowAlch:196, highAlch:294, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17702} -{name:"Tangle gum shortbow (u)", itemDescription:"I need to find a string for this (Tier 1).", shopValue:490, lowAlch:196, highAlch:294, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17703} -{name:"Seeping elm shortbow (u)", itemDescription:"I need to find a string for this. (Tier 2)", shopValue:1220, lowAlch:488, highAlch:732, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17704} -{name:"Seeping elm shortbow (u)", itemDescription:"I need to find a string for this. (Tier 2)", shopValue:1220, lowAlch:488, highAlch:732, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17705} -{name:"Blood spindle shortbow (u)", itemDescription:"I need to find a string for this. (Tier 3)", shopValue:2300, lowAlch:920, highAlch:1380, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17706} -{name:"Blood spindle shortbow (u)", itemDescription:"I need to find a string for this. (Tier 3)", shopValue:2300, lowAlch:920, highAlch:1380, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17707} -{name:"Utuku shortbow (u)", itemDescription:"I need to find a string for this. (Tier 4)", shopValue:3170, lowAlch:1268, highAlch:1902, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17708} -{name:"Utuku shortbow (u)", itemDescription:"I need to find a string for this. (Tier 4)", shopValue:3170, lowAlch:1268, highAlch:1902, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17709} -{name:"Spinebeam shortbow (u)", itemDescription:"I need to find a string for this. (Tier 5)", shopValue:4390, lowAlch:1756, highAlch:2634, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17710} -{name:"Spinebeam shortbow (u)", itemDescription:"I need to find a string for this. (Tier 5)", shopValue:4390, lowAlch:1756, highAlch:2634, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17711} -{name:"Bovistrangler shortbow (u)", itemDescription:"I need to find a string for this. (Tier 6)", shopValue:5110, lowAlch:2044, highAlch:3066, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17712} -{name:"Bovistrangler shortbow (u)", itemDescription:"I need to find a string for this. (Tier 6)", shopValue:5110, lowAlch:2044, highAlch:3066, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17713} -{name:"Thigat shortbow (u)", itemDescription:"I need to find a string for this. (Tier 7)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17714} -{name:"Thigat shortbow (u)", itemDescription:"I need to find a string for this. (Tier 7)", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17715} -{name:"Corpsethorn shortbow (u)", itemDescription:"I need to find a string for this. (Tier 8)", shopValue:7270, lowAlch:2908, highAlch:4362, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17716} -{name:"Corpsethorn shortbow (u)", itemDescription:"I need to find a string for this. (Tier 8)", shopValue:7270, lowAlch:2908, highAlch:4362, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17717} -{name:"Entgallow shortbow (u)", itemDescription:"I need to find a string for this. (Tier 9)", shopValue:8280, lowAlch:3312, highAlch:4968, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17718} -{name:"Entgallow shortbow (u)", itemDescription:"I need to find a string for this. (Tier 9)", shopValue:8280, lowAlch:3312, highAlch:4968, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17719} -{name:"Grave creeper shortbow (u)", itemDescription:"I need to find a string for this. (Tier 10)", shopValue:9790, lowAlch:3916, highAlch:5874, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17720} -{name:"Grave creeper shortbow (u)", itemDescription:"I need to find a string for this. (Tier 10)", shopValue:9790, lowAlch:3916, highAlch:5874, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17721} -{name:"Tangle gum longbow (u)", itemDescription:"I need to find a string for this. (Tier 1)", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17722} -{name:"Tangle gum longbow (u)", itemDescription:"I need to find a string for this. (Tier 1)", shopValue:400, lowAlch:160, highAlch:240, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17723} -{name:"Seeping elm longbow (u)", itemDescription:"I need to find a string for this. (Tier 2)", shopValue:990, lowAlch:396, highAlch:594, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17724} -{name:"Seeping elm longbow (u)", itemDescription:"I need to find a string for this. (Tier 2)", shopValue:990, lowAlch:396, highAlch:594, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17725} -{name:"Blood spindle longbow (u)", itemDescription:"I need to find a string for this. (Tier 3)", shopValue:1870, lowAlch:748, highAlch:1122, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17726} -{name:"Blood spindle longbow (u)", itemDescription:"I need to find a string for this. (Tier 3)", shopValue:1870, lowAlch:748, highAlch:1122, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17727} -{name:"Utuku longbow (u)", itemDescription:"I need to find a string for this. (Tier 4)", shopValue:2570, lowAlch:1028, highAlch:1542, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17728} -{name:"Utuku longbow (u)", itemDescription:"I need to find a string for this. (Tier 4)", shopValue:2570, lowAlch:1028, highAlch:1542, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17729} -{name:"Spinebeam longbow (u)", itemDescription:"I need to find a string for this. (Tier 5)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17730} -{name:"Spinebeam longbow (u)", itemDescription:"I need to find a string for this. (Tier 5)", shopValue:3560, lowAlch:1424, highAlch:2136, isStackable:true, isNoteable:true, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17731} -{name:"Bovistrangler longbow (u)", itemDescription:"I need to find a string for this. (Tier 6)", shopValue:4150, lowAlch:1660, highAlch:2490, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17732} -{name:"Bovistrangler longbow (u)", itemDescription:"I need to find a string for this. (Tier 6)", shopValue:4150, lowAlch:1660, highAlch:2490, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17733} -{name:"Thigat longbow (u)", itemDescription:"I need to find a string for this. (Tier 7)", shopValue:5200, lowAlch:2080, highAlch:3120, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17734} -{name:"Thigat longbow (u)", itemDescription:"I need to find a string for this. (Tier 7)", shopValue:5200, lowAlch:2080, highAlch:3120, isStackable:true, isNoteable:true, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17735} -{name:"Corpsethorn longbow (u)", itemDescription:"I need to find a string for this. (Tier 8)", shopValue:5900, lowAlch:2360, highAlch:3540, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17736} -{name:"Corpsethorn longbow (u)", itemDescription:"I need to find a string for this. (Tier 8)", shopValue:5900, lowAlch:2360, highAlch:3540, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17737} -{name:"Entgallow longbow (u)", itemDescription:"I need to find a string for this. (Tier 9)", shopValue:6720, lowAlch:2688, highAlch:4032, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17738} -{name:"Entgallow longbow (u)", itemDescription:"I need to find a string for this. (Tier 9)", shopValue:6720, lowAlch:2688, highAlch:4032, isStackable:true, isNoteable:true, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17739} -{name:"Grave creeper longbow (u)", itemDescription:"I need to find a string for this. (Tier 10)", shopValue:7960, lowAlch:3184, highAlch:4776, isStackable:false, isNoteable:false, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17740} -{name:"Grave creeper longbow (u)", itemDescription:"I need to find a string for this. (Tier 10)", shopValue:7960, lowAlch:3184, highAlch:4776, isStackable:true, isNoteable:true, weight:125.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17741} -{name:"Arrow shaft", itemDescription:"A wooden arrow shaft", shopValue:0, lowAlch:4, highAlch:7, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17742} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17743} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17744} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17745} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17746} -{name:"Headless arrow", itemDescription:"A wooden arrow shaft with flights attached.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17747} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17748} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17749} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17750} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17751} -{name:"Bow string", itemDescription:"I need a bow stave to attach this to.", shopValue:60, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17752} -{name:"Bow string", itemDescription:"I need a bow stave to attach this to.", shopValue:60, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17753} -{name:"Knife", itemDescription:"A dangerous looking knife.", shopValue:50, lowAlch:10, highAlch:15, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17754} -{name:"Knife", itemDescription:"A dangerous looking knife.", shopValue:50, lowAlch:10, highAlch:15, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17755} -{name:"Tangle gum trap", itemDescription:"Used to trap bovimastyx. (Tier 1)", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17756} -{name:"Tangle gum trap", itemDescription:"Used to trap bovimastyx. (Tier 1)", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17757} -{name:"Seeping elm trap", itemDescription:"Used to trap bovimastyx. (Tier 2)", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17758} -{name:"Seeping elm trap", itemDescription:"Used to trap bovimastyx. (Tier 2)", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17759} -{name:"Blood spindle trap", itemDescription:"Used to trap bovimastyx. (Tier 3)", shopValue:1100, lowAlch:440, highAlch:660, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17760} -{name:"Blood spindle trap", itemDescription:"Used to trap bovimastyx. (Tier 3)", shopValue:1100, lowAlch:440, highAlch:660, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17761} -{name:"Utuku trap", itemDescription:"Used to trap bovimastyx. (Tier 4)", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17762} -{name:"Utuku trap", itemDescription:"Used to trap bovimastyx. (Tier 4)", shopValue:1500, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17763} -{name:"Spinebeam trap", itemDescription:"Used to trap bovimastyx. (Tier 5)", shopValue:2100, lowAlch:840, highAlch:1260, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17764} -{name:"Spinebeam trap", itemDescription:"Used to trap bovimastyx. (Tier 5)", shopValue:2100, lowAlch:840, highAlch:1260, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17765} -{name:"Bovistrangler trap", itemDescription:"Used to trap bovimastyx. (Tier 6)", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17766} -{name:"Bovistrangler trap", itemDescription:"Used to trap bovimastyx. (Tier 6)", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17767} -{name:"Thigat trap", itemDescription:"Used to trap bovimastyx. (Tier 7)", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17768} -{name:"Thigat trap", itemDescription:"Used to trap bovimastyx. (Tier 7)", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17769} -{name:"Corpsethorn trap", itemDescription:"Used to trap the bovimastyx. (Tier 8)", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17770} -{name:"Corpsethorn trap", itemDescription:"Used to trap the bovimastyx. (Tier 8)", shopValue:3500, lowAlch:1400, highAlch:2100, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17771} -{name:"Entgallow trap", itemDescription:"Used to trap bovimastyx. (Tier 9)", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17772} -{name:"Entgallow trap", itemDescription:"Used to trap bovimastyx. (Tier 9)", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17773} -{name:"Grave creeper trap", itemDescription:"Used to trap bovimastyx. (Tier 10)", shopValue:4700, lowAlch:1880, highAlch:2820, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17774} -{name:"Grave creeper trap", itemDescription:"Used to trap bovimastyx. (Tier 10)", shopValue:4700, lowAlch:1880, highAlch:2820, isStackable:true, isNoteable:true, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17775} -{name:"Rune essence", itemDescription:"An uncharged Rune Stone.", shopValue:50, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17776} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17777} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17778} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17779} -{name:"Air rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:4, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17780} -{name:"Water rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17781} -{name:"Earth rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:8, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17782} -{name:"Fire rune", itemDescription:"One of the 4 basic elemental Runes.", shopValue:10, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17783} -{name:"Mind rune", itemDescription:"Used for basic level missile spells.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17784} -{name:"Chaos rune", itemDescription:"Used for low level missile spells.", shopValue:13, lowAlch:18, highAlch:28, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17785} -{name:"Death rune", itemDescription:"Used for medium level missile spells.", shopValue:20, lowAlch:41, highAlch:62, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17786} -{name:"Blood rune", itemDescription:"Used for high level missile spells.", shopValue:20, lowAlch:73, highAlch:110, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17787} -{name:"Body rune", itemDescription:"Used for Curse spells", shopValue:10, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17788} -{name:"Cosmic rune", itemDescription:"Used for enchant spells.", shopValue:13, lowAlch:30, highAlch:46, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17789} -{name:"Astral rune", itemDescription:"Used for Lunar Spells", shopValue:13, lowAlch:29, highAlch:44, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17790} -{name:"Nature rune", itemDescription:"Used for alchemy spells.", shopValue:13, lowAlch:49, highAlch:74, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17791} -{name:"Law rune", itemDescription:"Used for teleport spells.", shopValue:20, lowAlch:50, highAlch:75, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17792} -{name:"Soul rune", itemDescription:"Used for high level curse spells.", shopValue:40, lowAlch:54, highAlch:82, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17793} -{name:"Fly fishing rod", itemDescription:" Just add feathers.", shopValue:50, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17794} -{name:"Fly fishing rod", itemDescription:" Just add feathers.", shopValue:50, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17795} -{name:"Feather", itemDescription:"Used for fly fishing.", shopValue:6, lowAlch:2, highAlch:3, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17796} -{name:"Raw heim crab", itemDescription:"I should try cooking this. (Tier 1)", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17797} -{name:"Raw heim crab", itemDescription:"I should try cooking this. (Tier 1)", shopValue:1, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17798} -{name:"Raw red-eye", itemDescription:"I should try cooking this. (Tier 2)", shopValue:500, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17799} -{name:"Raw red-eye", itemDescription:"I should try cooking this. (Tier 2)", shopValue:1, lowAlch:200, highAlch:300, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17800} -{name:"Raw dusk eel", itemDescription:"I should try cooking this. (Tier 3)", shopValue:700, lowAlch:280, highAlch:420, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17801} -{name:"Raw dusk eel", itemDescription:"I should try cooking this. (Tier 3)", shopValue:1, lowAlch:280, highAlch:420, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17802} -{name:"Raw giant flatfish", itemDescription:"I should try cooking this. (Tier 4)", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17803} -{name:"Raw giant flatfish", itemDescription:"I should try cooking this. (Tier 4)", shopValue:1, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17804} -{name:"Raw short-finned eel", itemDescription:"I should try cooking this. (Tier 5)", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17805} -{name:"Raw short-finned eel", itemDescription:"I should try cooking this. (Tier 5)", shopValue:1, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17806} -{name:"Raw web snipper", itemDescription:"I should try cooking this. (Tier 6)", shopValue:1500, lowAlch:600, highAlch:900, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17807} -{name:"Raw web snipper", itemDescription:"I should try cooking this. (Tier 6)", shopValue:1, lowAlch:600, highAlch:900, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17808} -{name:"Raw bouldabass", itemDescription:"I should try cooking this. (Tier 7)", shopValue:1700, lowAlch:680, highAlch:1020, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17809} -{name:"Raw bouldabass", itemDescription:"I should try cooking this. (Tier 7)", shopValue:1, lowAlch:680, highAlch:1020, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17810} -{name:"Raw salve eel", itemDescription:"I should try cooking this. (Tier 8)", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17811} -{name:"Raw salve eel", itemDescription:"I should try cooking this. (Tier 8)", shopValue:1, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17812} -{name:"Raw blue crab", itemDescription:"I should try cooking this. (Tier 9)", shopValue:2200, lowAlch:880, highAlch:1320, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17813} -{name:"Raw blue crab", itemDescription:"I should try cooking this. (Tier 9)", shopValue:1, lowAlch:880, highAlch:1320, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17814} -{name:"Raw cave moray", itemDescription:"I should try cooking this. (Tier 10)", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17815} -{name:"Raw cave moray", itemDescription:"I should try cooking this. (Tier 10)", shopValue:1, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17816} -{name:"Raw cave potato", itemDescription:"Not very tasty raw.", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17817} -{name:"Raw cave potato", itemDescription:"Not very tasty raw.", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17818} -{name:"Gissel mushroom", itemDescription:"Fungus, but tasty!", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17819} -{name:"Gissel mushroom", itemDescription:"Fungus, but tasty!", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17820} -{name:"Edicap mushroom", itemDescription:"Fungus, but really tasty!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17821} -{name:"Edicap mushroom", itemDescription:"Fungus, but really tasty!", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17822} -{name:"Cave potato seed", itemDescription:"", shopValue:540, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17823} -{name:"Gissel mushroom spore", itemDescription:"", shopValue:900, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17824} -{name:"Edicap mushroom spore", itemDescription:"", shopValue:3000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17825} -{name:"Sagewort seed", itemDescription:"", shopValue:2250, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17826} -{name:"Valerian seed", itemDescription:"", shopValue:3000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17827} -{name:"Aloe seed", itemDescription:"", shopValue:4050, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17828} -{name:"Wormwood seed", itemDescription:"", shopValue:4500, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17829} -{name:"Magebane seed", itemDescription:"", shopValue:6000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17830} -{name:"Featherfoil seed", itemDescription:"", shopValue:8100, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17831} -{name:"Winter's grip seed", itemDescription:"", shopValue:9000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17832} -{name:"Lycopus seed", itemDescription:"", shopValue:10500, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17833} -{name:"Buckthorn seed", itemDescription:"", shopValue:13500, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17834} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17835} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17836} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17837} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17838} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17839} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17840} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17841} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17842} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17843} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17844} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17845} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17846} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17847} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17848} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17849} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17850} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17851} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17852} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17853} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17854} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17855} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17856} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17857} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17858} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17859} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17860} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17861} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17862} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17863} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17864} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17865} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17866} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17867} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17868} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17869} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17870} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17871} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17872} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17873} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17874} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17875} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17876} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17877} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17878} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17879} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17880} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17881} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17882} -{name:"Hammer", itemDescription:"Good for hitting things!", shopValue:10, lowAlch:5, highAlch:7, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17883} -{name:"Hammer", itemDescription:"Good for hitting things!", shopValue:10, lowAlch:5, highAlch:7, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17884} -{name:"Novite arrowtips", itemDescription:"I can make some arrows with these. (Tier 1)", shopValue:35, lowAlch:14, highAlch:20, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17885} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17886} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17887} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17888} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17889} -{name:"Bathus arrowtips", itemDescription:"I can make some arrows with these. (Tier 2)", shopValue:85, lowAlch:34, highAlch:51, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17890} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17891} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17892} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17893} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17894} -{name:"Marmaros arrowtips", itemDescription:"I can make some arrows with these. (Tier 3)", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17895} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17896} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17897} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17898} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17899} -{name:"Kratonite arrowtips", itemDescription:"I can make some arrows with these. (Tier 4)", shopValue:220, lowAlch:88, highAlch:132, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17900} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17901} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17902} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17903} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17904} -{name:"Fractite arrowtips", itemDescription:"I can make some arrows with these. (Tier 5)", shopValue:305, lowAlch:122, highAlch:183, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17905} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17906} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17907} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17908} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17909} -{name:"Zephyrium arrowtips", itemDescription:"I can make some arrows with these. (Tier 6)", shopValue:355, lowAlch:142, highAlch:213, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17910} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17911} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17912} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17913} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17914} -{name:"Argonite arrowtips", itemDescription:"I can make some arrows with these. (Tier 7)", shopValue:445, lowAlch:178, highAlch:267, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17915} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17916} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17917} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17918} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17919} -{name:"Katagon arrowtips", itemDescription:"I can make some arrows with these. (Tier 8)", shopValue:505, lowAlch:202, highAlch:303, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17920} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17921} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17922} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17923} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17924} -{name:"Gorgonite arrowtips", itemDescription:"I can make some arrows with these. (Tier 9)", shopValue:575, lowAlch:230, highAlch:344, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17925} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17926} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17927} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17928} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17929} -{name:"Promethium arrowtips", itemDescription:"I can make some arrows with these. (Tier 10)", shopValue:680, lowAlch:272, highAlch:408, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17930} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17931} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17932} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17933} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17934} -{name:"Cub bloodrager pouch", itemDescription:"", shopValue:7146, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17935} -{name:"Little bloodrager pouch", itemDescription:"", shopValue:8053, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17936} -{name:"Na?ve bloodrager pouch", itemDescription:"", shopValue:9126, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17937} -{name:"Keen bloodrager pouch", itemDescription:"", shopValue:22991, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17938} -{name:"Brave bloodrager pouch", itemDescription:"", shopValue:24311, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17939} -{name:"Brah bloodrager pouch", itemDescription:"", shopValue:25274, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17940} -{name:"Naabe bloodrager pouch", itemDescription:"", shopValue:39480, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17941} -{name:"Wise bloodrager pouch", itemDescription:"", shopValue:40773, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17942} -{name:"Adept bloodrager pouch", itemDescription:"", shopValue:50981, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17943} -{name:"Sachem bloodrager pouch", itemDescription:"", shopValue:53648, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17944} -{name:"Cub stormbringer pouch", itemDescription:"", shopValue:7096, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17945} -{name:"Little stormbringer pouch", itemDescription:"", shopValue:7921, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17946} -{name:"Na?ve stormbringer pouch", itemDescription:"", shopValue:8829, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17947} -{name:"Keen stormbringer pouch", itemDescription:"", shopValue:22590, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17948} -{name:"Brave stormbringer pouch", itemDescription:"", shopValue:23750, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17949} -{name:"Brah stormbringer pouch", itemDescription:"", shopValue:24658, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17950} -{name:"Naabe stormbringer pouch", itemDescription:"", shopValue:38694, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17951} -{name:"Wise stormbringer pouch", itemDescription:"", shopValue:39909, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17952} -{name:"Adept stormbringer pouch", itemDescription:"", shopValue:50046, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17953} -{name:"Sachem stormbringer pouch", itemDescription:"", shopValue:52592, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17954} -{name:"Cub hoardstalker pouch", itemDescription:"", shopValue:7096, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17955} -{name:"Little hoardstalker pouch", itemDescription:"", shopValue:7921, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17956} -{name:"Na?ve hoardstalker pouch", itemDescription:"", shopValue:8856, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17957} -{name:"Keen hoardstalker pouch", itemDescription:"", shopValue:22645, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17958} -{name:"Brave hoardstalker pouch", itemDescription:"", shopValue:23833, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17959} -{name:"Brah hoardstalker pouch", itemDescription:"", shopValue:24740, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17960} -{name:"Naabe hoardstalker pouch", itemDescription:"", shopValue:38776, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17961} -{name:"Wise hoardstalker pouch", itemDescription:"", shopValue:40019, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17962} -{name:"Adept hoardstalker pouch", itemDescription:"", shopValue:50211, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17963} -{name:"Sachem hoardstalker pouch", itemDescription:"", shopValue:52812, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17964} -{name:"Cub skinweaver pouch", itemDescription:"", shopValue:7371, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17965} -{name:"Little skinweaver pouch", itemDescription:"", shopValue:8548, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17966} -{name:"Na?ve skinweaver pouch", itemDescription:"", shopValue:9379, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17967} -{name:"Keen skinweaver pouch", itemDescription:"", shopValue:23459, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17968} -{name:"Brave skinweaver pouch", itemDescription:"", shopValue:24427, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17969} -{name:"Brah skinweaver pouch", itemDescription:"", shopValue:25714, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17970} -{name:"Naabe skinweaver pouch", itemDescription:"", shopValue:39541, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17971} -{name:"Wise skinweaver pouch", itemDescription:"", shopValue:41103, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17972} -{name:"Adept skinweaver pouch", itemDescription:"", shopValue:51261, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17973} -{name:"Sachem skinweaver pouch", itemDescription:"", shopValue:53868, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17974} -{name:"Cub worldbearer pouch", itemDescription:"", shopValue:7157, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17975} -{name:"Little worldbearer pouch", itemDescription:"", shopValue:7982, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17976} -{name:"Na?ve worldbearer pouch", itemDescription:"", shopValue:8966, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17977} -{name:"Keen worldbearer pouch", itemDescription:"", shopValue:22766, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17978} -{name:"Brave worldbearer pouch", itemDescription:"", shopValue:23987, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17979} -{name:"Brah worldbearer pouch", itemDescription:"", shopValue:24927, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17980} -{name:"Naabe worldbearer pouch", itemDescription:"", shopValue:39007, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17981} -{name:"Wise worldbearer pouch", itemDescription:"", shopValue:40305, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17982} -{name:"Adept worldbearer pouch", itemDescription:"", shopValue:50574, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17983} -{name:"Sachem worldbearer pouch", itemDescription:"", shopValue:53263, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17984} -{name:"Cub deathslinger pouch", itemDescription:"", shopValue:7091, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17985} -{name:"Little deathslinger pouch", itemDescription:"", shopValue:7806, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17986} -{name:"Na?ve deathslinger pouch", itemDescription:"", shopValue:8603, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17987} -{name:"Keen deathslinger pouch", itemDescription:"", shopValue:22276, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17988} -{name:"Brave deathslinger pouch", itemDescription:"", shopValue:23321, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17989} -{name:"Brah deathslinger pouch", itemDescription:"", shopValue:24201, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17990} -{name:"Naabe deathslinger pouch", itemDescription:"", shopValue:37968, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17991} -{name:"Wise deathslinger pouch", itemDescription:"", shopValue:39178, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17992} -{name:"Adept deathslinger pouch", itemDescription:"", shopValue:49221, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17993} -{name:"Sachem deathslinger pouch", itemDescription:"", shopValue:51558, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17994} -{name:"Protoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 1)", shopValue:310, lowAlch:124, highAlch:186, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17995} -{name:"Protoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 1)", shopValue:310, lowAlch:124, highAlch:186, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17996} -{name:"Subleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 2)", shopValue:710, lowAlch:284, highAlch:426, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17997} -{name:"Subleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 2)", shopValue:710, lowAlch:284, highAlch:426, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17998} -{name:"Paraleather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 3)", shopValue:1330, lowAlch:532, highAlch:798, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:17999} -{name:"Paraleather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 3)", shopValue:1330, lowAlch:532, highAlch:798, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18000} -{name:"Archleather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 4)", shopValue:1820, lowAlch:728, highAlch:1092, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18001} -{name:"Archleather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 4)", shopValue:1820, lowAlch:728, highAlch:1092, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18002} -{name:"Dromoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 5)", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18003} -{name:"Dromoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 5)", shopValue:2530, lowAlch:1012, highAlch:1518, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18004} -{name:"Spinoleather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 6)", shopValue:2960, lowAlch:1184, highAlch:1776, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18005} -{name:"Spinoleather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 6)", shopValue:2960, lowAlch:1184, highAlch:1776, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18006} -{name:"Gallileather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 7)", shopValue:3670, lowAlch:1468, highAlch:2202, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18007} -{name:"Gallileather torn bag", itemDescription:"Useful to summoners, and valuable to smugglers. (Tier 7)", shopValue:3670, lowAlch:1468, highAlch:2202, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18008} -{name:"Stegoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 8)", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18009} -{name:"Stegoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 8)", shopValue:4200, lowAlch:1680, highAlch:2520, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18010} -{name:"Megaleather torn bag", itemDescription:"Useful to Summoners, valuable to smugglers. (Tier 9)", shopValue:4780, lowAlch:1912, highAlch:2868, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18011} -{name:"Megaleather torn bag", itemDescription:"Useful to Summoners, valuable to smugglers. (Tier 9)", shopValue:4780, lowAlch:1912, highAlch:2868, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18012} -{name:"Tyrannoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 10)", shopValue:5650, lowAlch:2260, highAlch:3390, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18013} -{name:"Tyrannoleather torn bag", itemDescription:"Useful to Summoners, and valuable to smugglers. (Tier 10)", shopValue:5650, lowAlch:2260, highAlch:3390, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18014} -{name:"Pouch", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18015} -{name:"Spirit shards", itemDescription:"Shards of an obelisk.", shopValue:25, lowAlch:10, highAlch:15, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18016} -{name:"Gold charm", itemDescription:"A charm used to summon familiars.", shopValue:2985, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18017} -{name:"Green charm", itemDescription:"A charm used to summon familiars.", shopValue:8825, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18018} -{name:"Crimson charm", itemDescription:"A charm used to summon familiars.", shopValue:14645, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18019} -{name:"Blue charm", itemDescription:"A charm used to summon familiars.", shopValue:18460, lowAlch:0, highAlch:2, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18020} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18021} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18022} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18023} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18024} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18025} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18026} -{name:"Sundering strike (tier 1)", itemDescription:"", shopValue:715, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18027} -{name:"Sundering strike (tier 2)", itemDescription:"", shopValue:805, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18028} -{name:"Sundering strike (tier 3)", itemDescription:"", shopValue:913, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18029} -{name:"Sundering strike (tier 4)", itemDescription:"", shopValue:2299, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18030} -{name:"Sundering strike (tier 5)", itemDescription:"", shopValue:2431, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18031} -{name:"Sundering strike (tier 6)", itemDescription:"", shopValue:2527, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18032} -{name:"Sundering strike (tier 7)", itemDescription:"", shopValue:3948, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18033} -{name:"Sundering strike (tier 8)", itemDescription:"", shopValue:4077, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18034} -{name:"Sundering strike (tier 9)", itemDescription:"", shopValue:5098, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18035} -{name:"Sundering strike (tier 10)", itemDescription:"", shopValue:5365, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18036} -{name:"Poisonous shot (tier 1)", itemDescription:"", shopValue:709, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18037} -{name:"Poisonous shot (tier 2)", itemDescription:"", shopValue:781, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18038} -{name:"Poisonous shot (tier 3)", itemDescription:"", shopValue:860, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18039} -{name:"Poisonous shot (tier 4)", itemDescription:"", shopValue:2228, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18040} -{name:"Poisonous shot (tier 5)", itemDescription:"", shopValue:2332, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18041} -{name:"Poisonous shot (tier 6)", itemDescription:"", shopValue:2420, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18042} -{name:"Poisonous shot (tier 7)", itemDescription:"", shopValue:3797, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18043} -{name:"Poisonous shot (tier 8)", itemDescription:"", shopValue:3918, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18044} -{name:"Poisonous shot (tier 9)", itemDescription:"", shopValue:4922, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18045} -{name:"Poisonous shot (tier 10)", itemDescription:"", shopValue:5156, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18046} -{name:"Snaring wave (tier 1)", itemDescription:"", shopValue:710, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18047} -{name:"Snaring wave (tier 2)", itemDescription:"", shopValue:792, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18048} -{name:"Snaring wave (tier 3)", itemDescription:"", shopValue:883, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18049} -{name:"Snaring wave (tier 4)", itemDescription:"", shopValue:2259, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18050} -{name:"Snaring wave (tier 5)", itemDescription:"", shopValue:2375, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18051} -{name:"Snaring wave (tier 6)", itemDescription:"", shopValue:2466, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18052} -{name:"Snaring wave (tier 7)", itemDescription:"", shopValue:3869, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18053} -{name:"Snaring wave (tier 8)", itemDescription:"", shopValue:3991, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18054} -{name:"Snaring wave (tier 9)", itemDescription:"", shopValue:5005, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18055} -{name:"Snaring wave (tier 10)", itemDescription:"", shopValue:5259, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18056} -{name:"Aptitude (tier 1)", itemDescription:"", shopValue:710, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18057} -{name:"Aptitude (tier 2)", itemDescription:"", shopValue:792, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18058} -{name:"Aptitude (tier 3)", itemDescription:"", shopValue:886, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18059} -{name:"Aptitude (tier 4)", itemDescription:"", shopValue:2265, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18060} -{name:"Aptitude (tier 5)", itemDescription:"", shopValue:2383, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18061} -{name:"Aptitude (tier 6)", itemDescription:"", shopValue:2474, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18062} -{name:"Aptitude (tier 7)", itemDescription:"", shopValue:3878, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18063} -{name:"Aptitude (tier 8)", itemDescription:"", shopValue:4002, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18064} -{name:"Aptitude (tier 9)", itemDescription:"", shopValue:5021, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18065} -{name:"Aptitude (tier 10)", itemDescription:"", shopValue:5281, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18066} -{name:"Second wind (tier 1)", itemDescription:"", shopValue:716, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18067} -{name:"Second wind (tier 2)", itemDescription:"", shopValue:798, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18068} -{name:"Second wind (tier 3)", itemDescription:"", shopValue:897, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18069} -{name:"Second wind (tier 4)", itemDescription:"", shopValue:2277, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18070} -{name:"Second wind (tier 5)", itemDescription:"", shopValue:2399, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18071} -{name:"Second wind (tier 6)", itemDescription:"", shopValue:2493, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18072} -{name:"Second wind (tier 7)", itemDescription:"", shopValue:3901, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18073} -{name:"Second wind (tier 8)", itemDescription:"", shopValue:4031, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18074} -{name:"Second wind (tier 9)", itemDescription:"", shopValue:5057, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18075} -{name:"Second wind (tier 10)", itemDescription:"", shopValue:5326, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18076} -{name:"Glimmer of light (tier 1)", itemDescription:"", shopValue:737, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18077} -{name:"Glimmer of light (tier 2)", itemDescription:"", shopValue:855, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18078} -{name:"Glimmer of light (tier 3)", itemDescription:"", shopValue:938, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18079} -{name:"Glimmer of light (tier 4)", itemDescription:"", shopValue:2346, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18080} -{name:"Glimmer of light (tier 5)", itemDescription:"", shopValue:2443, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18081} -{name:"Glimmer of light (tier 6)", itemDescription:"", shopValue:2571, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18082} -{name:"Glimmer of light (tier 7)", itemDescription:"", shopValue:3954, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18083} -{name:"Glimmer of light (tier 8)", itemDescription:"", shopValue:4110, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18084} -{name:"Glimmer of light (tier 9)", itemDescription:"", shopValue:5126, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18085} -{name:"Glimmer of light (tier 10)", itemDescription:"", shopValue:5387, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18086} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18087} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18088} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18089} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18090} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18091} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18092} -{name:"Baked cave potato", itemDescription:"Mmm...smells good.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18093} -{name:"Baked cave potato", itemDescription:"Mmm...smells good.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18094} -{name:"Gissel potato", itemDescription:"A potato with gissel mushroom.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18095} -{name:"Gissel potato", itemDescription:"A potato with gissel mushroom.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18096} -{name:"Edicap potato", itemDescription:"A potato with a more nutritious edicap mushroom.", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18097} -{name:"Edicap potato", itemDescription:"A potato with a more nutritious edicap mushroom.", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18098} -{name:"Heim crab potato", itemDescription:"Mmm...a potato full of heim crab. (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18099} -{name:"Heim crab potato", itemDescription:"Mmm...a potato full of heim crab. (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18100} -{name:"Red-eye potato", itemDescription:"Mmm...a potato full of red-eye. (Tier 2)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18101} -{name:"Red-eye potato", itemDescription:"Mmm...a potato full of red-eye. (Tier 2)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18102} -{name:"Dusk eel potato", itemDescription:"Mmm...a potato full of dusk eel. (Tier 3)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18103} -{name:"Dusk eel potato", itemDescription:"Mmm...a potato full of dusk eel. (Tier 3)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18104} -{name:"Giant flatfish potato", itemDescription:"Mmm...a potato full of flatfish. (Tier 4)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18105} -{name:"Giant flatfish potato", itemDescription:"Mmm...a potato full of flatfish. (Tier 4)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18106} -{name:"Short-fin eel potato", itemDescription:"Mmm...a potato full of short-fin eel. (Tier 5)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18107} -{name:"Short-fin eel potato", itemDescription:"Mmm...a potato full of short-fin eel. (Tier 5)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18108} -{name:"Snipper potato", itemDescription:"Mmm...a potato full of web-snipper. (Tier 6)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18109} -{name:"Snipper potato", itemDescription:"Mmm...a potato full of web-snipper. (Tier 6)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18110} -{name:"Bouldabass potato", itemDescription:"Mmm...a potato full of bouldabass. (Tier 7)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18111} -{name:"Bouldabass potato", itemDescription:"Mmm...a potato full of bouldabass. (Tier 7)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18112} -{name:"Salve eel potato", itemDescription:"Mmm...a potato full of salve eel. (Tier 8)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18113} -{name:"Salve eel potato", itemDescription:"Mmm...a potato full of salve eel. (Tier 8)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18114} -{name:"Blue crab potato", itemDescription:"Mmm... a potato full of blue crab. (Tier 9)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18115} -{name:"Blue crab potato", itemDescription:"Mmm... a potato full of blue crab. (Tier 9)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18116} -{name:"Cave moray potato", itemDescription:"Mmm... a potato full of cave moray. (Tier 10)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18117} -{name:"Cave moray potato", itemDescription:"Mmm... a potato full of cave moray. (Tier 10)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18118} -{name:"Heim crab & gissel potato", itemDescription:"Mmm...a gissel potato full of tasty heim crab. Delicious! (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18119} -{name:"Heim crab & gissel potato", itemDescription:"Mmm...a gissel potato full of tasty heim crab. Delicious! (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18120} -{name:"Red-eye & gissel potato", itemDescription:"Yum...a gissel potato filled with tasty red-eye fish! (Tier 2)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18121} -{name:"Red-eye & gissel potato", itemDescription:"Yum...a gissel potato filled with tasty red-eye fish! (Tier 2)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18122} -{name:"Dusk eel & gissel potato", itemDescription:"Nice...a gissel potato loaded with delicious dusk eel. (Tier 3)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18123} -{name:"Dusk eel & gissel potato", itemDescription:"Nice...a gissel potato loaded with delicious dusk eel. (Tier 3)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18124} -{name:"Flatfish & gissel potato", itemDescription:"Yum...a gissel potato filled with some tasty flatfish. Lovely! (Tier 4)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18125} -{name:"Flatfish & gissel potato", itemDescription:"Yum...a gissel potato filled with some tasty flatfish. Lovely! (Tier 4)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18126} -{name:"Short-fin & gissel potato", itemDescription:"Nice...a gissel potato crammed with delicious short-fin. Tasty! (Tier 5)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18127} -{name:"Short-fin & gissel potato", itemDescription:"Nice...a gissel potato crammed with delicious short-fin. Tasty! (Tier 5)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18128} -{name:"Snipper & gissel potato", itemDescription:"Sweet...a gissel potato loaded with snipper fish. Yummy! (Tier 6)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18129} -{name:"Snipper & gissel potato", itemDescription:"Sweet...a gissel potato loaded with snipper fish. Yummy! (Tier 6)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18130} -{name:"Bouldabass & gissel potato", itemDescription:"Yum...a gissel potato filled with some Bouldabass. Nice! (Tier 7)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18131} -{name:"Bouldabass & gissel potato", itemDescription:"Yum...a gissel potato filled with some Bouldabass. Nice! (Tier 7)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18132} -{name:"Salve eel & gissel potato", itemDescription:"Yum...a gissel potato crammed full of salve eel. Tasty! (Tier 8)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18133} -{name:"Salve eel & gissel potato", itemDescription:"Yum...a gissel potato crammed full of salve eel. Tasty! (Tier 8)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18134} -{name:"Blue crab & gissel potato", itemDescription:"Mmm...a gissel potato full of blue crab. (Tier 9)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18135} -{name:"Blue crab & gissel potato", itemDescription:"Mmm...a gissel potato full of blue crab. (Tier 9)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18136} -{name:"Moray & gissel potato", itemDescription:"Mmm...a gissel potato fully loaded with delicious Moray. (Tier 10)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18137} -{name:"Moray & gissel potato", itemDescription:"Mmm...a gissel potato fully loaded with delicious Moray. (Tier 10)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18138} -{name:"Heim crab & edicap potato", itemDescription:"Yum...an edicap potato crammed full of heim crab. Tasty! (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18139} -{name:"Heim crab & edicap potato", itemDescription:"Yum...an edicap potato crammed full of heim crab. Tasty! (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18140} -{name:"Red-eye & edicap potato", itemDescription:"Yum...an edicap potato crammed full of red-eye. Tasty! (Tier 2)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18141} -{name:"Red-eye & edicap potato", itemDescription:"Yum...an edicap potato crammed full of red-eye. Tasty! (Tier 2)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18142} -{name:"Dusk eel & edicap potato", itemDescription:"Nice...an edicap potato loaded with delicious dusk eel. (Tier 3)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18143} -{name:"Dusk eel & edicap potato", itemDescription:"Nice...an edicap potato loaded with delicious dusk eel. (Tier 3)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18144} -{name:"Flatfish & edicap potato", itemDescription:"Yum...an edicap potato filled with some tasty flatfish. Lovely! (Tier 4)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18145} -{name:"Flatfish & edicap potato", itemDescription:"Yum...an edicap potato filled with some tasty flatfish. Lovely! (Tier 4)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18146} -{name:"Short-fin & edicap potato", itemDescription:"Yum...an edicap potato crammed full of short-finned eel. Tasty! (Tier 5)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18147} -{name:"Short-fin & edicap potato", itemDescription:"Yum...an edicap potato crammed full of short-finned eel. Tasty! (Tier 5)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18148} -{name:"Snipper & edicap potato", itemDescription:"Sweet...an edicap potato loaded with snipper fish. Yummy! (Tier 6)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18149} -{name:"Snipper & edicap potato", itemDescription:"Sweet...an edicap potato loaded with snipper fish. Yummy! (Tier 6)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18150} -{name:"Bouldabass & edicap potato", itemDescription:"Yum...an edicap potato filled with some Bouldabass. Nice! (Tier 7)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18151} -{name:"Bouldabass & edicap potato", itemDescription:"Yum...an edicap potato filled with some Bouldabass. Nice! (Tier 7)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18152} -{name:"Salve eel & edicap potato", itemDescription:"Yum...an edicap potato crammed full of salve eel. Tasty! (Tier 8)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18153} -{name:"Salve eel & edicap potato", itemDescription:"Yum...an edicap potato crammed full of salve eel. Tasty! (Tier 8)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18154} -{name:"Blue crab & edicap potato", itemDescription:"Mmm...an edicap potato full of blue crab. (Tier 9)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18155} -{name:"Blue crab & edicap potato", itemDescription:"Mmm...an edicap potato full of blue crab. (Tier 9)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18156} -{name:"Moray & edicap potato", itemDescription:"Mmm...an edicap potato fully loaded with delicious Moray. (Tier 10)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18157} -{name:"Moray & edicap potato", itemDescription:"Mmm...an edicap potato fully loaded with delicious Moray. (Tier 10)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18158} -{name:"Heim crab", itemDescription:"It's not looking so snappy now it's cooked! (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18159} -{name:"Heim crab", itemDescription:"It's not looking so snappy now it's cooked! (Tier 1)", shopValue:240, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18160} -{name:"Red-eye", itemDescription:"I wonder why they call it a Red-eye. It's[sic] eyes don't look very red! (Tier 2)", shopValue:600, lowAlch:240, highAlch:360, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18161} -{name:"Red-eye", itemDescription:"I wonder why they call it a Red-eye. It's[sic] eyes don't look very red! (Tier 2)", shopValue:600, lowAlch:240, highAlch:360, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18162} -{name:"Dusk eel", itemDescription:"It still doesn't look very appetising. (Tier 3)", shopValue:840, lowAlch:336, highAlch:504, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18163} -{name:"Dusk eel", itemDescription:"It still doesn't look very appetising. (Tier 3)", shopValue:840, lowAlch:336, highAlch:504, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18164} -{name:"Giant flatfish", itemDescription:"Wow this fish is giant and very, very flat. (Tier 4)", shopValue:1200, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18165} -{name:"Giant flatfish", itemDescription:"Wow this fish is giant and very, very flat. (Tier 4)", shopValue:1200, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18166} -{name:"Short-finned eel", itemDescription:"This looks only slightly more appetising than a dusk eel. (Tier 5)", shopValue:1440, lowAlch:576, highAlch:864, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18167} -{name:"Short-finned eel", itemDescription:"This looks only slightly more appetising than a dusk eel. (Tier 5)", shopValue:1440, lowAlch:576, highAlch:864, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18168} -{name:"Web snipper", itemDescription:"I'd better be careful eating this. (Tier 6)", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18169} -{name:"Web snipper", itemDescription:"I'd better be careful eating this. (Tier 6)", shopValue:1800, lowAlch:720, highAlch:1080, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18170} -{name:"Bouldabass", itemDescription:"This should make quite the meal! (Tier 7)", shopValue:2040, lowAlch:816, highAlch:1224, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18171} -{name:"Bouldabass", itemDescription:"This should make quite the meal! (Tier 7)", shopValue:2040, lowAlch:816, highAlch:1224, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18172} -{name:"Salve eel", itemDescription:"This looks only so slightly more tasty than one of those short-finned eels. (Tier 8)", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18173} -{name:"Salve eel", itemDescription:"This looks only so slightly more tasty than one of those short-finned eels. (Tier 8)", shopValue:2400, lowAlch:960, highAlch:1440, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18174} -{name:"Blue crab", itemDescription:"I'd better mind the pincers when eating that, they could take my eye out. (Tier 9)", shopValue:2640, lowAlch:1056, highAlch:1584, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18175} -{name:"Blue crab", itemDescription:"I'd better mind the pincers when eating that, they could take my eye out. (Tier 9)", shopValue:2640, lowAlch:1056, highAlch:1584, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18176} -{name:"Cave moray", itemDescription:"It should make quite the feast. (Tier 10)", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18177} -{name:"Cave moray", itemDescription:"It should make quite the feast. (Tier 10)", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18178} -{name:"Burnt heim crab", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18179} -{name:"Burnt heim crab", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18180} -{name:"Burnt red-eye", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18181} -{name:"Burnt red-eye", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18182} -{name:"Burnt dusk eel", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18183} -{name:"Burnt dusk eel", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18184} -{name:"Burnt giant flatfish", itemDescription:"Wow this fish is giant and very, very flat. (Tier 4)", shopValue:1, lowAlch:480, highAlch:720, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18185} -{name:"Burnt giant flatfish", itemDescription:"Wow this fish is giant and very, very flat. (Tier 4)", shopValue:1, lowAlch:480, highAlch:720, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18186} -{name:"Burnt short-finned eel", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18187} -{name:"Burnt short-finned eel", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18188} -{name:"Burnt web snipper", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18189} -{name:"Burnt web snipper", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18190} -{name:"Burnt bouldabass", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18191} -{name:"Burnt bouldabass", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18192} -{name:"Burnt salve eel", itemDescription:"This looks only so slightly more tasty than one of those short-finned eels. (Tier 8)", shopValue:1, lowAlch:960, highAlch:1440, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18193} -{name:"Burnt salve eel", itemDescription:"This looks only so slightly more tasty than one of those short-finned eels. (Tier 8)", shopValue:1, lowAlch:960, highAlch:1440, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18194} -{name:"Burnt blue crab", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18195} -{name:"Burnt blue crab", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18196} -{name:"Burnt cave moray", itemDescription:"It should make quite the feast. (Tier 10)", shopValue:1, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18197} -{name:"Burnt cave moray", itemDescription:"It should make quite the feast. (Tier 10)", shopValue:1, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18198} -{name:"Banana", itemDescription:"Mmm this looks tasty.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18199} -{name:"Banana", itemDescription:"Mmm this looks tasty.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18200} -{name:"Coins", itemDescription:" Lovely money!", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18201} -{name:"Orange triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18202} -{name:"Orange triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18203} -{name:"Orange diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18204} -{name:"Orange diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18205} -{name:"Orange rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18206} -{name:"Orange rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18207} -{name:"Orange pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18208} -{name:"Orange pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18209} -{name:"Orange corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18210} -{name:"Orange corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18211} -{name:"Orange crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18212} -{name:"Orange crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18213} -{name:"Orange wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18214} -{name:"Orange wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18215} -{name:"Orange shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18216} -{name:"Orange shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18217} -{name:"Silver triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18218} -{name:"Silver triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18219} -{name:"Silver diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18220} -{name:"Silver diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18221} -{name:"Silver rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18222} -{name:"Silver rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18223} -{name:"Silver pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18224} -{name:"Silver pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18225} -{name:"Silver corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18226} -{name:"Silver corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18227} -{name:"Silver crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18228} -{name:"Silver crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18229} -{name:"Silver wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18230} -{name:"Silver wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18231} -{name:"Silver shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18232} -{name:"Silver shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18233} -{name:"Yellow triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18234} -{name:"Yellow triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18235} -{name:"Yellow diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18236} -{name:"Yellow diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18237} -{name:"Yellow rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18238} -{name:"Yellow rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18239} -{name:"Yellow pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18240} -{name:"Yellow pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18241} -{name:"Yellow corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18242} -{name:"Yellow corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18243} -{name:"Yellow crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18244} -{name:"Yellow crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18245} -{name:"Yellow wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18246} -{name:"Yellow wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18247} -{name:"Yellow shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18248} -{name:"Yellow shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18249} -{name:"Green triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18250} -{name:"Green triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18251} -{name:"Green diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18252} -{name:"Green diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18253} -{name:"Green rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18254} -{name:"Green rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18255} -{name:"Green pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18256} -{name:"Green pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18257} -{name:"Green corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18258} -{name:"Green corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18259} -{name:"Green crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18260} -{name:"Green crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18261} -{name:"Green wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18262} -{name:"Green wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18263} -{name:"Green shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18264} -{name:"Green shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18265} -{name:"Blue triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18266} -{name:"Blue triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18267} -{name:"Blue diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18268} -{name:"Blue diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18269} -{name:"Blue rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18270} -{name:"Blue rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18271} -{name:"Blue pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18272} -{name:"Blue pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18273} -{name:"Blue corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18274} -{name:"Blue corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18275} -{name:"Blue crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18276} -{name:"Blue crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18277} -{name:"Blue wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18278} -{name:"Blue wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18279} -{name:"Blue shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18280} -{name:"Blue shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18281} -{name:"Purple triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18282} -{name:"Purple triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18283} -{name:"Purple diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18284} -{name:"Purple diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18285} -{name:"Purple rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18286} -{name:"Purple rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18287} -{name:"Purple pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18288} -{name:"Purple pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18289} -{name:"Purple corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18290} -{name:"Purple corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18291} -{name:"Purple crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18292} -{name:"Purple crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18293} -{name:"Purple wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18294} -{name:"Purple wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18295} -{name:"Purple shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18296} -{name:"Purple shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18297} -{name:"Crimson triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18298} -{name:"Crimson triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18299} -{name:"Crimson diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18300} -{name:"Crimson diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18301} -{name:"Crimson rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18302} -{name:"Crimson rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18303} -{name:"Crimson pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18304} -{name:"Crimson pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18305} -{name:"Crimson corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18306} -{name:"Crimson corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18307} -{name:"Crimson crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18308} -{name:"Crimson crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18309} -{name:"Crimson wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18310} -{name:"Crimson wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18311} -{name:"Crimson shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18312} -{name:"Crimson shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18313} -{name:"Gold triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18314} -{name:"Gold triangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18315} -{name:"Gold diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18316} -{name:"Gold diamond key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18317} -{name:"Gold rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18318} -{name:"Gold rectangle key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18319} -{name:"Gold pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18320} -{name:"Gold pentagon key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18321} -{name:"Gold corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18322} -{name:"Gold corner key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18323} -{name:"Gold crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18324} -{name:"Gold crescent key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18325} -{name:"Gold wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18326} -{name:"Gold wedge key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18327} -{name:"Gold shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18328} -{name:"Gold shield key", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18329} -{name:"Longbow sight", itemDescription:"For improving the performance of a maple or magic longbow.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18330} -{name:"Maple longbow (sighted)", itemDescription:"It has a sight on it that should improve its performance.", shopValue:6280, lowAlch:2512, highAlch:3768, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 110.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18331} -{name:"Magic longbow (sighted)", itemDescription:"It has a sight on it that should improve its performance.", shopValue:8560, lowAlch:3424, highAlch:5136, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 140.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18332} -{name:"Arcane pulse necklace", itemDescription:"The energy from this necklace is unlike anything you have ever felt.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18333} -{name:"Arcane blast necklace", itemDescription:"The energy from this necklace is unlike anything you have ever felt.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18334} -{name:"Arcane stream necklace", itemDescription:"The energy from this necklace is unlike anything you have ever felt.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18335} -{name:"Scroll of life", itemDescription:"Secrets of nature lie within.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18336} -{name:"Bonecrusher", itemDescription:"The chisel of a diligent worker.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18337} -{name:"Gem bag", itemDescription:"A bag that can hold plenty of uncut gems.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18338} -{name:"Coal bag", itemDescription:"A bag for holding coal.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18339} -{name:"Anti-poison totem", itemDescription:"An icon from an ancient race.", shopValue:25000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 40.0, 35.0, 30.0, 5.0, 40.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18340} -{name:"Nature staff", itemDescription:"Buzzing with the essence of nature.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18341} -{name:"Law staff", itemDescription:"A perfectly balanced staff.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 28.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 35.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18342} -{name:"Scroll of renewal", itemDescription:"A scroll that surges with lifeforce.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18343} -{name:"Scroll of augury", itemDescription:"Contains the omens of things to come.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18344} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18345} -{name:"Tome of frost", itemDescription:"Like a snowflake, no page is the same as another.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18346} -{name:"Mercenary's gloves", itemDescription:"The gloves of a mercenary.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:12.0, bonuses:[0.0, 0.0, 0.0, -10.0, 13.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18347} -{name:"Dungeoneering experience", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18348} -{name:"Chaotic rapier", itemDescription:"A razor-sharp rapier.", shopValue:130000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[94.0, 78.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 101.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18349} -{name:"Chaotic rapier (broken)", itemDescription:"A razor-sharp rapier.", shopValue:130000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[94.0, 78.0, -2.0, 0.0, 0.0, 0.0, 2.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 101.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18350} -{name:"Chaotic longsword", itemDescription:"A razor-sharp longsword.", shopValue:130000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[107.0, 124.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18351} -{name:"Chaotic longsword (broken)", itemDescription:"A razor-sharp longsword.", shopValue:130000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:27.0, bonuses:[107.0, 124.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18352} -{name:"Chaotic maul", itemDescription:"A maul used to claim life from those who don't deserve it.", shopValue:130000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 167.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 155.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18353} -{name:"Chaotic maul (broken)", itemDescription:"A maul used to claim life from those who don't deserve it.", shopValue:130000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:49.0, bonuses:[-4.0, -4.0, 167.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 155.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18354} -{name:"Chaotic staff", itemDescription:"This staff makes destructive spells more powerful.", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 20.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18355} -{name:"Chaotic staff (broken)", itemDescription:"This staff makes destructive spells more powerful.", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, -1.0, 65.0, 18.0, 0.0, 5.0, 7.0, 4.0, 18.0, 0.0, 0.0, 0.0, 0.0, 0.0, 72.0, 0.0, 0.0, 20.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18356} -{name:"Chaotic crossbow", itemDescription:"A small crossbow, only effective at short distance.", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18357} -{name:"Chaotic crossbow (broken)", itemDescription:"A small crossbow, only effective at short distance.", shopValue:50000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18358} -{name:"Chaotic kiteshield", itemDescription:"A large metal shield.", shopValue:100001, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:54.0, bonuses:[2.0, 0.0, 4.0, -15.0, 0.0, 83.0, 90.0, 86.0, -5.0, 89.0, 0.0, 7.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18359} -{name:"Chaotic kiteshield (broken)", itemDescription:"A large metal shield.", shopValue:100001, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:54.0, bonuses:[2.0, 0.0, 4.0, -15.0, 0.0, 83.0, 90.0, 86.0, -5.0, 89.0, 0.0, 7.0, 0.0, 14.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18360} -{name:"Eagle-eye kiteshield", itemDescription:"A large metal shield.", shopValue:100001, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:54.0, bonuses:[-5.0, -5.0, -5.0, 0.0, 4.0, 50.0, 50.0, 70.0, 25.0, 50.0, 0.0, 0.0, 14.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18361} -{name:"Eagle-eye kiteshield (broken)", itemDescription:"A large metal shield.", shopValue:100001, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:54.0, bonuses:[-5.0, -5.0, -5.0, 0.0, 4.0, 50.0, 50.0, 70.0, 25.0, 50.0, 0.0, 0.0, 14.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18362} -{name:"Farseer kiteshield", itemDescription:"A large metal shield.", shopValue:100001, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 17.0, -15.0, 55.0, 55.0, 55.0, 5.0, 40.0, 0.0, 14.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18363} -{name:"Farseer kiteshield (broken)", itemDescription:"A large metal shield.", shopValue:100001, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 17.0, -15.0, 55.0, 55.0, 55.0, 5.0, 40.0, 0.0, 14.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18364} -{name:"Gravite rapier", itemDescription:"A razor-sharp rapier.", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:18.0, bonuses:[50.0, 9.0, -3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18365} -{name:"Gravite rapier (broken)", itemDescription:"A razor-sharp rapier.", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:18.0, bonuses:[50.0, 9.0, -3.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 48.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18366} -{name:"Gravite longsword", itemDescription:"A razor-sharp longsword.", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:2.0, bonuses:[43.0, 53.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 545.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18367} -{name:"Gravite longsword (broken)", itemDescription:"A razor-sharp longsword.", shopValue:13600, lowAlch:5440, highAlch:8160, isStackable:false, isNoteable:false, weight:2.0, bonuses:[43.0, 53.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 545.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18368} -{name:"Gravite 2h sword", itemDescription:"A two-handed sword.", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, -4.0, 87.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18369} -{name:"Gravite 2h sword (broken)", itemDescription:"A two-handed sword.", shopValue:27200, lowAlch:10880, highAlch:16320, isStackable:false, isNoteable:false, weight:36.0, bonuses:[-4.0, -4.0, 87.0, -4.0, 0.0, 0.0, 0.0, 0.0, 0.0, -1.0, 0.0, 0.0, 0.0, 0.0, 90.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18370} -{name:"Gravite staff", itemDescription:"This staff makes destructive spells more powerful.", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-1.0, -1.0, 15.0, 15.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 5.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18371} -{name:"Gravite staff (broken)", itemDescription:"This staff makes destructive spells more powerful.", shopValue:10880, lowAlch:4352, highAlch:6528, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-1.0, -1.0, 15.0, 15.0, 0.0, 2.0, 3.0, 1.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 5.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18372} -{name:"Gravite shortbow", itemDescription:"A small bow, only effective at short distance.", shopValue:10880, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18373} -{name:"Gravite shortbow (broken)", itemDescription:"A small bow, only effective at short distance.", shopValue:10880, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 47.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18374} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18375} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18376} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18377} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18378} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18379} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18380} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18381} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18382} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18383} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18384} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18385} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18386} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18387} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18388} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18389} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18390} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18391} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18392} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18393} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18394} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18395} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18396} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18397} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18398} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18399} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18400} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18401} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18402} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18403} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18404} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18405} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18406} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18407} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18408} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18409} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18410} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18411} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18412} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18413} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18414} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18415} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18416} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18417} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18418} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18419} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18420} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18421} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18422} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18423} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18424} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18425} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18426} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18427} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18428} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18429} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18430} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18431} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18432} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18433} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18434} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18435} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18436} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18437} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18438} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18439} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18440} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18441} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18442} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18443} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18444} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18445} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18446} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18447} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18448} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18449} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18450} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18451} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18452} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18453} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18454} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18455} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18456} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18457} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18458} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18459} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18460} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18461} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18462} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18463} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18464} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18465} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18466} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18467} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18468} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18469} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18470} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18471} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18472} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18473} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18474} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18475} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18476} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18477} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18478} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18479} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18480} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18481} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18482} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18483} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18484} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18485} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18486} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18487} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18488} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18489} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18490} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18491} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18492} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18493} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18494} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18495} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18496} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18497} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18498} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18499} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18500} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18501} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18502} -{name:"Edimmu", itemDescription:"A spiritual zombie that sucks life out of its victims.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18503} -{name:"Night spider", itemDescription:"A dark spider with red eyes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18504} -{name:"Seeker", itemDescription:"A floating eye of some sort", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18505} -{name:"Spirit guardian", itemDescription:"The spiritual remains of a defender of the dungeons.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18506} -{name:"Stalker", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18507} -{name:"Dungeoneering cape", itemDescription:"The cape worn by veterans of Daemonheim.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18508} -{name:"Dungeoneering cape (t)", itemDescription:"The cape worn by veterans of Daemonheim.", shopValue:99000, lowAlch:39600, highAlch:59400, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18509} -{name:"Dungeoneering hood", itemDescription:"Dungeoneering skillcape hood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18510} -{name:"Cub bloodrager pouch", itemDescription:"", shopValue:7146, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18511} -{name:"Little bloodrager pouch", itemDescription:"", shopValue:8053, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18512} -{name:"Na?ve bloodrager pouch", itemDescription:"", shopValue:9126, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18513} -{name:"Keen bloodrager pouch", itemDescription:"", shopValue:22991, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18514} -{name:"Brave bloodrager pouch", itemDescription:"", shopValue:24311, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18515} -{name:"Brah bloodrager pouch", itemDescription:"", shopValue:25274, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18516} -{name:"Naabe bloodrager pouch", itemDescription:"", shopValue:39480, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18517} -{name:"Wise bloodrager pouch", itemDescription:"", shopValue:40773, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18518} -{name:"Adept bloodrager pouch", itemDescription:"", shopValue:50981, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18519} -{name:"Sachem bloodrager pouch", itemDescription:"", shopValue:53648, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18520} -{name:"Cub stormbringer pouch", itemDescription:"", shopValue:7096, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18521} -{name:"Little stormbringer pouch", itemDescription:"", shopValue:7921, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18522} -{name:"Na?ve stormbringer pouch", itemDescription:"", shopValue:8829, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18523} -{name:"Keen stormbringer pouch", itemDescription:"", shopValue:22590, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18524} -{name:"Brave stormbringer pouch", itemDescription:"", shopValue:23750, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18525} -{name:"Brah stormbringer pouch", itemDescription:"", shopValue:24658, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18526} -{name:"Naabe stormbringer pouch", itemDescription:"", shopValue:38694, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18527} -{name:"Wise stormbringer pouch", itemDescription:"", shopValue:39909, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18528} -{name:"Adept stormbringer pouch", itemDescription:"", shopValue:50046, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18529} -{name:"Sachem stormbringer pouch", itemDescription:"", shopValue:52592, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18530} -{name:"Cub hoardstalker pouch", itemDescription:"", shopValue:7096, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18531} -{name:"Little hoardstalker pouch", itemDescription:"", shopValue:7921, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18532} -{name:"Na?ve hoardstalker pouch", itemDescription:"", shopValue:8856, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18533} -{name:"Keen hoardstalker pouch", itemDescription:"", shopValue:22645, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18534} -{name:"Brave hoardstalker pouch", itemDescription:"", shopValue:23833, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18535} -{name:"Brah hoardstalker pouch", itemDescription:"", shopValue:24740, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18536} -{name:"Naabe hoardstalker pouch", itemDescription:"", shopValue:38776, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18537} -{name:"Wise hoardstalker pouch", itemDescription:"", shopValue:40019, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18538} -{name:"Adept hoardstalker pouch", itemDescription:"", shopValue:50211, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18539} -{name:"Sachem hoardstalker pouch", itemDescription:"", shopValue:52812, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18540} -{name:"Cub skinweaver pouch", itemDescription:"", shopValue:7371, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18541} -{name:"Little skinweaver pouch", itemDescription:"", shopValue:8548, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18542} -{name:"Na?ve skinweaver pouch", itemDescription:"", shopValue:9379, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18543} -{name:"Keen skinweaver pouch", itemDescription:"", shopValue:23459, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18544} -{name:"Brave skinweaver pouch", itemDescription:"", shopValue:24427, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18545} -{name:"Brah skinweaver pouch", itemDescription:"", shopValue:25714, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18546} -{name:"Naabe skinweaver pouch", itemDescription:"", shopValue:39541, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18547} -{name:"Wise skinweaver pouch", itemDescription:"", shopValue:41103, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18548} -{name:"Adept skinweaver pouch", itemDescription:"", shopValue:51261, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18549} -{name:"Sachem skinweaver pouch", itemDescription:"", shopValue:53868, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18550} -{name:"Cub worldbearer pouch", itemDescription:"", shopValue:7157, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18551} -{name:"Little worldbearer pouch", itemDescription:"", shopValue:7982, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18552} -{name:"Na?ve worldbearer pouch", itemDescription:"", shopValue:8966, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18553} -{name:"Keen worldbearer pouch", itemDescription:"", shopValue:22766, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18554} -{name:"Brave worldbearer pouch", itemDescription:"", shopValue:23987, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18555} -{name:"Brah worldbearer pouch", itemDescription:"", shopValue:24927, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18556} -{name:"Naabe worldbearer pouch", itemDescription:"", shopValue:39007, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18557} -{name:"Wise worldbearer pouch", itemDescription:"", shopValue:40305, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18558} -{name:"Adept worldbearer pouch", itemDescription:"", shopValue:50574, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18559} -{name:"Sachem worldbearer pouch", itemDescription:"", shopValue:53263, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18560} -{name:"Cub deathslinger pouch", itemDescription:"", shopValue:7091, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18561} -{name:"Little deathslinger pouch", itemDescription:"", shopValue:7806, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18562} -{name:"Na?ve deathslinger pouch", itemDescription:"", shopValue:8603, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18563} -{name:"Keen deathslinger pouch", itemDescription:"", shopValue:22276, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18564} -{name:"Brave deathslinger pouch", itemDescription:"", shopValue:23321, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18565} -{name:"Brah deathslinger pouch", itemDescription:"", shopValue:24201, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18566} -{name:"Naabe deathslinger pouch", itemDescription:"", shopValue:37968, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18567} -{name:"Wise deathslinger pouch", itemDescription:"", shopValue:39178, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18568} -{name:"Adept deathslinger pouch", itemDescription:"", shopValue:49221, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18569} -{name:"Sachem deathslinger pouch", itemDescription:"", shopValue:51558, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18570} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18571} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18572} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18573} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18574} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18575} -{name:"Pouch", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18576} -{name:"Kinship ring", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18577} -{name:"Kinship ring", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18578} -{name:"Kinship ring", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18579} -{name:"Viking crossbow", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18580} -{name:"Viking crossbow", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18581} -{name:"Viking shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18582} -{name:"Viking shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18583} -{name:"Catalytic shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18584} -{name:"Catalytic shield", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18585} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18586} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18587} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18588} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18589} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18590} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18591} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18592} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18593} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18594} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18595} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18596} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18597} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18598} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18599} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18600} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18601} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18602} -{name:"Scroll", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18603} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18604} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18605} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18606} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18607} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18608} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18609} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18610} -{name:"Herb", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18611} -{name:"Rand edimmu slayerguide icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18612} -{name:"Rand night spider slayerguide icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18613} -{name:"Rand seeker slayerguide icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18614} -{name:"Rand spirit gaurdian slayerguide icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18615} -{name:"Rand stalker slayerguide icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18616} -{name:"Rand ancient mage icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18617} -{name:"Rand antiboss icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18618} -{name:"Rand behemoth survival icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18619} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18620} -{name:"Rand coldstare icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18621} -{name:"Rand elitegaurdian icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18622} -{name:"Rand frostshatter demon icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18623} -{name:"Rand hobgoblin mage icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18624} -{name:"Rand ice lord icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18625} -{name:"Rand ihlakhizan icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18626} -{name:"Rand librarimancer icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18627} -{name:"Rand luminescent icefiend icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18628} -{name:"Rand magedemon icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18629} -{name:"Rand rambo icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18630} -{name:"Rand seeker boss icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18631} -{name:"Rand skeletal archmage icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18632} -{name:"Rand stomp icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18633} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18634} -{name:"Power crystal", itemDescription:"Used to power some ancient device.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18635} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18636} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18637} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18638} -{name:"Perfect blue dragon scale", itemDescription:"A perfect example of a blue dragon scale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18639} -{name:"Perfect green dragon scale", itemDescription:"A perfect example of a green dragon scale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18640} -{name:"Perfect red dragon scale", itemDescription:"A perfect example of a red dragon scale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18641} -{name:"Perfect black dragon scale", itemDescription:"A perfect example of a black dragon scale.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18642} -{name:"Experimental spray", itemDescription:"Chaelder's experimental fungicide.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18643} -{name:"Rubber blackjack", itemDescription:"A training cosh.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18644} -{name:"Dodgy flyer", itemDescription:"Someone has put a great deal of effort into this handwritten flyer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18645} -{name:"Thieves' guild pamphlet", itemDescription:"Full of useful advice, Thieving XP and handy tips for budding bandits!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18646} -{name:"Complex key", itemDescription:"A small, complex key to fit a display case. (Buyers and Cellars)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18647} -{name:"Golden chalice", itemDescription:"Very valuable to the right collector.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18648} -{name:"Urist's talisman", itemDescription:" Urist has 'dropped' his lucky golden talisman here.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18649} -{name:"Craftsman's monocle", itemDescription:"A powerful, well-made monocle for delicate crafting work.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18650} -{name:"Toy baby dragon", itemDescription:"Looks almost as if it could breathe fire...and it can!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18651} -{name:"Banker's note", itemDescription:"A very large sum of money, sadly not made out to you.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18652} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18653} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18654} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18655} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18656} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18657} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18658} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18659} -{name:"Flame fragment", itemDescription:"This fragment of elemental fire pulses as if alive. (Taken from a citizen/HAM member/rogue/master farmer/farmer/guard/warrior.)", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18660} -{name:"Vial of stench", itemDescription:"Better not uncork this!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18661} -{name:"Vial of stench (a)", itemDescription:"(During caper) Keeps thieves from being recognised inside the Guild Registry.(After caper) No shopkeeper will recognise you if you have this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18662} -{name:"Vial of stench (a)", itemDescription:"(During caper) Keeps thieves from being recognised inside the Guild Registry.(After caper) No shopkeeper will recognise you if you have this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18663} -{name:"Cuckoo clock key", itemDescription:"A key for a cuckoo clock. (Buyers and Cellars)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18664} -{name:"Lever key", itemDescription:"This key unlocks the lever controlling the vault access trapdoor. (Buyers and Cellars)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18665} -{name:"Bonds", itemDescription:"A large sum of money made out to the Registry Guild.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18666} -{name:"Flagstaff of festivities", itemDescription:"A flagstaff celebrating Runefest '10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18667} -{name:"Tooth creature", itemDescription:"(Baby) A baby tooth creature from Zanaris.(Healthy Adult) A healthy tooth creature from Zanaris.(Decayed Adult) A decayed tooth creature from Zanaris.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18668} -{name:"Tooth creature (healthy)", itemDescription:"(Baby) A baby tooth creature from Zanaris.(Healthy Adult) A healthy tooth creature from Zanaris.(Decayed Adult) A decayed tooth creature from Zanaris.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18669} -{name:"Tooth creature (decayed)", itemDescription:"(Baby) A baby tooth creature from Zanaris.(Healthy Adult) A healthy tooth creature from Zanaris.(Decayed Adult) A decayed tooth creature from Zanaris.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18670} -{name:"Milk tooth creature", itemDescription:"(Baby) A baby tooth creature from Zanaris.(Healthy Adult) A healthy tooth creature from Zanaris.(Decayed Adult) A decayed tooth creature from Zanaris.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18671} -{name:"Milk tooth creature", itemDescription:"(Baby) A baby tooth creature from Zanaris.(Healthy Adult) A healthy tooth creature from Zanaris.(Decayed Adult) A decayed tooth creature from Zanaris.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18672} -{name:"Tooth extractor", itemDescription:"Also called a BITE (Basic Improvised Tooth Extractor).", shopValue:5, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18673} -{name:"Gnarly", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18674} -{name:"Fairy dossier", itemDescription:"A dossier detailing battle plans against the Fairy Godfather", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18675} -{name:"Mango", itemDescription:"A juicy-looking mango, but still quite firm to the touch.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18676} -{name:"Mango with tooth", itemDescription:"A juicy looking mango with a tooth stuck in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18677} -{name:"Bre'egth's tooth", itemDescription:"A gnarled and slightly mushy ork tooth.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18678} -{name:"Shredflesh's tooth", itemDescription:"A barely identifiable ork tooth. Much like an ork, it's rotten to the core.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18679} -{name:"Gromblod's tooth", itemDescription:"A disgustingly rotten ork tooth. It hasn't been brushed in a long time...if ever.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18680} -{name:"Fairy wand", itemDescription:"The '#ZFW1 combat apparatus' - it's a magic wand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18681} -{name:"Magic watering can", itemDescription:"This watering can is always completely full.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18682} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18683} -{name:"Human tooth", itemDescription:"The tooth of a human child, left with the hope of fiscal remuneration.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18684} -{name:"Ragged book", itemDescription:"Book of the Elemental Body, there is a raised relief on the front.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18685} -{name:"Key mould", itemDescription:"A key mould, made from a ragged book.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18686} -{name:"Ragged silver key", itemDescription:"A small silver key. (Elemental Workshop III)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18687} -{name:"Ragged gold key", itemDescription:"A small gold key. (Elemental Workshop III)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18688} -{name:"Ragged elemental key", itemDescription:"A small elemental key. (Elemental Workshop III)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18689} -{name:"Body bar", itemDescription:"An elemental body bar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18690} -{name:"Body shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18691} -{name:"Body shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18692} -{name:"Body helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:20, lowAlch:8, highAlch:12, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18693} -{name:"Body helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18694} -{name:"Body body", itemDescription:"A body made in the Elemental Workshop.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18695} -{name:"Body body", itemDescription:"A body made in the Elemental Workshop.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 17.0, 0.0, 25.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18696} -{name:"Mind body", itemDescription:"A body made in the Elemental Workshop.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18697} -{name:"Mind body", itemDescription:"A body made in the Elemental Workshop.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 15.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18698} -{name:"Elemental body", itemDescription:"A body made in the Elemental Workshop.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18699} -{name:"Elemental body", itemDescription:"A body made in the Elemental Workshop.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 12.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18700} -{name:"Diagram", itemDescription:"A scroll with a diagram drawn on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18701} -{name:"Book of knowledge", itemDescription:"Educate yourself.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18702} -{name:"Board game piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18703} -{name:"Flare", itemDescription:"I can use this to signal to a catapult operator.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18704} -{name:"Profound decorative sword", itemDescription:"A sword with stunningly profound decoration.", shopValue:54000, lowAlch:21600, highAlch:32400, isStackable:false, isNoteable:false, weight:1.0, bonuses:[38.0, 47.0, -2.0, 0.0, 0.0, 0.0, 3.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18705} -{name:"Profound decorative platebody", itemDescription:"A platebody with stunningly profound decoration.", shopValue:204000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:86.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18706} -{name:"Profound decorative platelegs", itemDescription:"Some platelegs with stunningly profound decoration.", shopValue:104000, lowAlch:41600, highAlch:62400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18707} -{name:"Profound decorative helm", itemDescription:"A helm with stunningly profound decoration.", shopValue:34000, lowAlch:13600, highAlch:20400, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 22.0, 23.0, 21.0, -1.0, 22.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18708} -{name:"Profound decorative shield", itemDescription:"A shield with stunningly profound decoration.", shopValue:89000, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:52.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18709} -{name:"Ballista base", itemDescription:"Heavy struts that help keep the ballista stable.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18710} -{name:"Ballista bolt stack", itemDescription:"The bolts will be loaded in here, ready to be moved to the chamber.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18711} -{name:"Ballista bow", itemDescription:"Powerful enough to launch the ballista's large ammo.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18712} -{name:"Ballista chamber", itemDescription:"Helps steady the ammo as it's launched against its target.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18713} -{name:"Ballista ammo", itemDescription:"A projectile made for a ballista.", shopValue:50, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18714} -{name:"Cw super attack potion (4)", itemDescription:"X doses of super attack potion.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18715} -{name:"Cw super attack potion (3)", itemDescription:"X doses of super attack potion.", shopValue:600, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18716} -{name:"Cw super attack potion (2)", itemDescription:"X doses of super attack potion.", shopValue:400, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18717} -{name:"Cw super attack potion (1)", itemDescription:"X doses of super attack potion.", shopValue:200, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18718} -{name:"Cw super strength potion (4)", itemDescription:"X doses of super strength potion.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18719} -{name:"Cw super strength potion (3)", itemDescription:"X doses of super strength potion.", shopValue:600, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18720} -{name:"Cw super strength potion (2)", itemDescription:"X doses of super strength potion.", shopValue:400, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18721} -{name:"Cw super strength potion (1)", itemDescription:"X doses of super strength potion.", shopValue:200, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18722} -{name:"Cw super defence potion (4)", itemDescription:"X doses of super defence potion.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18723} -{name:"Cw super defence potion (3)", itemDescription:"X doses of super defence potion.", shopValue:600, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18724} -{name:"Cw super defence potion (2)", itemDescription:"X doses of super defence potion.", shopValue:400, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18725} -{name:"Cw super defence potion (1)", itemDescription:"X doses of super defence potion.", shopValue:200, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18726} -{name:"Cw super energy potion (4)", itemDescription:"X doses of super energy potion.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18727} -{name:"Cw super energy potion (3)", itemDescription:"X doses of super energy potion.", shopValue:600, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18728} -{name:"Cw super energy potion (2)", itemDescription:"X doses of super energy potion.", shopValue:400, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18729} -{name:"Cw super energy potion (1)", itemDescription:"X doses of super energy potion.", shopValue:200, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18730} -{name:"Cw super ranging potion (4)", itemDescription:"X doses of super ranging potion.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18731} -{name:"Cw super ranging potion (3)", itemDescription:"X doses of super ranging potion.", shopValue:600, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18732} -{name:"Cw super ranging potion (2)", itemDescription:"X doses of super ranging potion.", shopValue:400, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18733} -{name:"Cw super ranging potion (1)", itemDescription:"X doses of super ranging potion.", shopValue:200, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18734} -{name:"Cw super magic potion (4)", itemDescription:"X doses of super magic potion.", shopValue:800, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18735} -{name:"Cw super magic potion (3)", itemDescription:"X doses of super magic potion.", shopValue:600, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18736} -{name:"Cw super magic potion (2)", itemDescription:"X doses of super magic potion.", shopValue:400, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18737} -{name:"Cw super magic potion (1)", itemDescription:"X doses of super magic potion.", shopValue:200, lowAlch:320, highAlch:480, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18738} -{name:"Castle wars flag cape", itemDescription:"For the honour of capturing most flags in a Castle Wars match.", shopValue:4000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18739} -{name:"Castle wars kills cape", itemDescription:"For the honour of killing the most players in a Castle Wars match.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18740} -{name:"Castle wars hobbyist cape", itemDescription:"For the honour of completing 500 matches.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18741} -{name:"Castle wars enthusiast cape", itemDescription:"For the honour of completing 1,000 matches.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18742} -{name:"Castle wars professional cape", itemDescription:"For the honour of completing 5000 matches.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18743} -{name:"Guthix halo", itemDescription:"Halo with the protection of Guthix.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 10.0, 11.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18744} -{name:"Saradomin halo", itemDescription:"Halo with the protection of Saradomin.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 10.0, 11.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18745} -{name:"Zamorak halo", itemDescription:"Halo with the protection of Zamorak.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 12.0, 10.0, 11.0, -1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18746} -{name:"Faithful shield", itemDescription:"A shield for the Castle Wars faithful.", shopValue:120000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:54.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18747} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18748} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18749} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18750} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18751} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18752} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18753} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18754} -{name:"Profound decorative armour", itemDescription:"N/A", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[38.0, 47.0, -2.0, -62.0, -20.0, 199.0, 203.0, 188.0, -12.0, 197.0, 102.0, 9.0, 0.0, 20.0, 49.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18755} -{name:"Hunter kit", itemDescription:"A box of Hunter goodies.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18756} -{name:"Court summons", itemDescription:"A summons to the Seers' Village courthouse.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18757} -{name:"Case report 1", itemDescription:"The first report on the case I am investigating.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18758} -{name:"Case report 2", itemDescription:"The second report on the case I am investigating.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18759} -{name:"Case report 3", itemDescription:"The third report on the case I am investigating.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18760} -{name:"Crime scene viewing orb", itemDescription:"This orb lets me investigate the scene as it was at the time of the crime.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18761} -{name:"Magnifying glass", itemDescription:"A tool for sleuths.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[-100.0, -100.0, -50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -10.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18762} -{name:"Mission machine", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18763} -{name:"Magical amplifier", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18764} -{name:"Bat in a box", itemDescription:"A bat in a box.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18765} -{name:"Nightstick", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18766} -{name:"Humble pie", itemDescription:"Mmm pie.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18767} -{name:"Mystery box", itemDescription:"Could there be something valuable in here?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18768} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18769} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18770} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18771} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18772} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18773} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18774} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18775} -{name:"Barrister wig", itemDescription:"Who would have an objection to this wig?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18776} -{name:"Gavel", itemDescription:"For pounding justice into delinquents!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18777} -{name:"Starved ancient effigy", itemDescription:"It sounds like something is contained within this relic.", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18778} -{name:"Nourished ancient effigy", itemDescription:"It sounds like something is contained within this relic.", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18779} -{name:"Sated ancient effigy", itemDescription:"It sounds like something is contained within this relic.", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18780} -{name:"Gorged ancient effigy", itemDescription:"It sounds like something is contained within this relic.", shopValue:100000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18781} -{name:"Dragonkin lamp", itemDescription:"Glowing from the raging flame contained within.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18782} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18783} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18784} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18785} -{name:"Korasi's sword", itemDescription:"The sword of a Void Knight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[60.0, 70.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18786} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18787} -{name:"Climbing boots", itemDescription:"Boots made for general climbing; rocks a speciality.", shopValue:12, lowAlch:4, highAlch:7, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18788} -{name:"Cheese wheel", itemDescription:"A big wheel of delicious cheese. / A wheel of cheese with a bit missing.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18789} -{name:"Cheese wheel (sliced)", itemDescription:"A big wheel of delicious cheese. / A wheel of cheese with a bit missing.", shopValue:30, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:25.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18790} -{name:"Pit dog", itemDescription:"Like a wolf, only without the glamour", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18791} -{name:"Pit ogre", itemDescription:"It's not very smart, but it knows how to fight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18792} -{name:"Pit rock protector", itemDescription:"A being of ore and minerals.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18793} -{name:"Pit scabarite", itemDescription:"Two legs, four arms, and a very nasty-looking bow.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18794} -{name:"Pit black demon", itemDescription:"A big, scary, pet-black demon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18795} -{name:"Pit iron dragon", itemDescription:"Its scales are made of iron.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18796} -{name:"Minor pit trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18797} -{name:"Major pit trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18798} -{name:"Superior pit trap", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18799} -{name:"Dungeon pit", itemDescription:"", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18800} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18801} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18802} -{name:"Mabel's ring", itemDescription:"It doesn't look very valuable, but Mabel likes it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18803} -{name:"Twig", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18804} -{name:"Dummy", itemDescription:"I can train on this", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18805} -{name:"Teleport to house (chipped)", itemDescription:"The tablet has been chipped and can now be opened.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18806} -{name:"Teleport to house (chipped)", itemDescription:"The tablet has been chipped and can now be opened.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18807} -{name:"Mabel's lamp", itemDescription:"A battered lamp that belonged to Mabel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18808} -{name:"Rimmington tablet", itemDescription:"A Teleport to House tablet that has been redirected to Rimmmington.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18809} -{name:"Taverley tablet", itemDescription:"A Teleport to House tablet that has been redirected to Taverley.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18810} -{name:"Pollnivneach tablet", itemDescription:"A Teleport to House tablet that has been redirected to Pollnivneach.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18811} -{name:"Rellekka tablet", itemDescription:"A Teleport to House tablet that has been redirected to Rellekka.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18812} -{name:"Brimhaven tablet", itemDescription:"A Teleport to House tablet that has been redirected to Brimhaven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18813} -{name:"Yanille tablet", itemDescription:"A Teleport to House tablet that has been redirected to Yanille.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18814} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18815} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18816} -{name:"Ring of kinship (tank)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18817} -{name:"Ring of kinship (tactician)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18818} -{name:"Ring of kinship (berserker)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18819} -{name:"Ring of kinship (sniper)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18820} -{name:"Ring of kinship (keen-eye)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18821} -{name:"Ring of kinship (desperado)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18822} -{name:"Ring of kinship (blazer)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18823} -{name:"Ring of kinship (blaster)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18824} -{name:"Ring of kinship (blitzer)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18825} -{name:"Ring of kinship (medic)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18826} -{name:"Ring of kinship (gatherer)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18827} -{name:"Ring of kinship (artisan)", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18828} -{name:"Group gatestone", itemDescription:"All members of the party can teleport to this stone from the group gatestone portal.", shopValue:0, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18829} -{name:"Frost dragon bones", itemDescription:"I doubt a dog would enjoy eating these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18830} -{name:"Frost dragon bones", itemDescription:"I doubt a dog would enjoy eating these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18831} -{name:"Frost dragon bones", itemDescription:"I doubt a dog would enjoy eating these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18832} -{name:"Frost dragon bones", itemDescription:"I doubt a dog would enjoy eating these.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18833} -{name:"Bonemeal", itemDescription:"A pot of crushed [type of bones].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18834} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18835} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18836} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18837} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18838} -{name:"Scroll of rigour", itemDescription:"It imbues you with a sense of purpose.", shopValue:25000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18839} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18840} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18841} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18842} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18843} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18844} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18845} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18846} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18847} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18848} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18849} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18850} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18851} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18852} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18853} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18854} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18855} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18856} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18857} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18858} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18859} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18860} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18861} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18862} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18863} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18864} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18865} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18866} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18867} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18868} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18869} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18870} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18871} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18872} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18873} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18874} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18875} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18876} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18877} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18878} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18879} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18880} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18881} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18882} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18883} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18884} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18885} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18886} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18887} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18888} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18889} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18890} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18891} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18892} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18893} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18894} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18895} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18896} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18897} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18898} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18899} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18900} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18901} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18902} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18903} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18904} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18905} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18906} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18907} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18908} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18909} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18910} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18911} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18912} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18913} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18914} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18915} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18916} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18917} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18918} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18919} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18920} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18921} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18922} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18923} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18924} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18925} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18926} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18927} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18928} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18929} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18930} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18931} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18932} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18933} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18934} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18935} -{name:"Sliding piece", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18936} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18937} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18938} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18939} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18940} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18941} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18942} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18943} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18944} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18945} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18946} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18947} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18948} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18949} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18950} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18951} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18952} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18953} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18954} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18955} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18956} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18957} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18958} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18959} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18960} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18961} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18962} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18963} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18964} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18965} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18966} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18967} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18968} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18969} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18970} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18971} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18972} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18973} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18974} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18975} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18976} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18977} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18978} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18979} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18980} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18981} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18982} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18983} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18984} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18985} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18986} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18987} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18988} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18989} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18990} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18991} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18992} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18993} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18994} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18995} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18996} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18997} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18998} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:18999} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19000} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19001} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19002} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19003} -{name:"Scroll box (hard)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19004} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19005} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19006} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19007} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19008} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19009} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19010} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19011} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19012} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19013} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19014} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19015} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19016} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19017} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19018} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19019} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19020} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19021} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19022} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19023} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19024} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19025} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19026} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19027} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19028} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19029} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19030} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19031} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19032} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19033} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19034} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19035} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19036} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19037} -{name:"Scroll box (easy)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19038} -{name:"Casket (elite)", itemDescription:"I hope there's treasure in it.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19039} -{name:"Puzzle casket (elite)", itemDescription:"There's treasure in it!", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19040} -{name:"Scroll box (elite)", itemDescription:"There's another clue in it.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19041} -{name:"Puzzle scroll box (elite)", itemDescription:"There's another clue in it.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19042} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19043} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19044} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19045} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19046} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19047} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19048} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19049} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19050} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19051} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19052} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19053} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19054} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19055} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19056} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19057} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19058} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19059} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19060} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19061} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19062} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19063} -{name:"Clue scroll (elite)", itemDescription:"A clue!A clue to great treasure!", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19064} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19065} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19066} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19067} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19068} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19069} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19070} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19071} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19072} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19073} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19074} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19075} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19076} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19077} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19078} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19079} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19080} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19081} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19082} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19083} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19084} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19085} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19086} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19087} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19088} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19089} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19090} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19091} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19092} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19093} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19094} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19095} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19096} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19097} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19098} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19099} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19100} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19101} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19102} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19103} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19104} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19105} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19106} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19107} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19108} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19109} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19110} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19111} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19112} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19113} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19114} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19115} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19116} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19117} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19118} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19119} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19120} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19121} -{name:"Scroll box (medium)", itemDescription:"There's another clue in it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19122} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19123} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19124} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19125} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19126} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19127} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19128} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19129} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19130} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19131} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19132} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19133} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19134} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19135} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19136} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19137} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19138} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19139} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19140} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19141} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19142} -{name:"Saradomin bow", itemDescription:"A bow imbued with the power of Saradomin.", shopValue:120001, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19143} -{name:"Saradomin bow", itemDescription:"A bow imbued with the power of Saradomin.", shopValue:120001, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19144} -{name:"Saradomin bow", itemDescription:"A bow imbued with the power of Saradomin.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19145} -{name:"Guthix bow", itemDescription:"A bow imbued with the power of Guthix.", shopValue:120001, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19146} -{name:"Guthix bow", itemDescription:"A bow imbued with the power of Guthix.", shopValue:120001, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19147} -{name:"Guthix bow", itemDescription:"A bow imbued with the power of Guthix.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19148} -{name:"Zamorak bow", itemDescription:"A bow imbued with the power of Zamorak.", shopValue:120001, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19149} -{name:"Zamorak bow", itemDescription:"A bow imbued with the power of Zamorak.", shopValue:120001, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19150} -{name:"Zamorak bow", itemDescription:"A bow imbued with the power of Zamorak.", shopValue:0, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 80.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19151} -{name:"Saradomin arrows", itemDescription:"Arrow(s) imbued with the power of Saradomin.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19152} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19153} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19154} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19155} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19156} -{name:"Guthix arrows", itemDescription:"Arrow(s) imbued with the power of Guthix.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19157} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19158} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19159} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19160} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19161} -{name:"Zamorak arrows", itemDescription:"Arrow(s) imbued with the power of Zamorak.", shopValue:300, lowAlch:120, highAlch:180, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19162} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19163} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19164} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19165} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19166} -{name:"Black platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19167} -{name:"Black platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19168} -{name:"Black platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19169} -{name:"Black platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19170} -{name:"Black plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19171} -{name:"Black plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19172} -{name:"Adamant platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19173} -{name:"Adamant platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19174} -{name:"Adamant platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19175} -{name:"Adamant platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19176} -{name:"Adamant plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19177} -{name:"Adamant plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19178} -{name:"Rune platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19179} -{name:"Rune platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19180} -{name:"Rune platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19181} -{name:"Rune platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19182} -{name:"Rune platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19183} -{name:"Rune platelegs (h1)", itemDescription:"Platelegs with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19184} -{name:"Rune plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19185} -{name:"Rune plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19186} -{name:"Rune plateskirt (h1)", itemDescription:"A plateskirt with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19187} -{name:"Black platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19188} -{name:"Black platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19189} -{name:"Black platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19190} -{name:"Black platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19191} -{name:"Black plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19192} -{name:"Black plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19193} -{name:"Adamant platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19194} -{name:"Adamant platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19195} -{name:"Adamant platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19196} -{name:"Adamant platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19197} -{name:"Adamant plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19198} -{name:"Adamant plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19199} -{name:"Rune platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19200} -{name:"Rune platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19201} -{name:"Rune platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19202} -{name:"Rune platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19203} -{name:"Rune platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19204} -{name:"Rune platelegs (h2)", itemDescription:"Platelegs with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19205} -{name:"Rune plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19206} -{name:"Rune plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19207} -{name:"Rune plateskirt (h2)", itemDescription:"A plateskirt with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19208} -{name:"Black platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19209} -{name:"Black platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19210} -{name:"Black platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19211} -{name:"Black platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19212} -{name:"Black plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19213} -{name:"Black plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:90.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19214} -{name:"Adamant platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19215} -{name:"Adamant platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19216} -{name:"Adamant platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19217} -{name:"Adamant platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19218} -{name:"Adamant plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19219} -{name:"Adamant plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19220} -{name:"Rune platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19221} -{name:"Rune platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19222} -{name:"Rune platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19223} -{name:"Rune platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19224} -{name:"Rune platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19225} -{name:"Rune platelegs (h3)", itemDescription:"Platelegs with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19226} -{name:"Rune plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19227} -{name:"Rune plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19228} -{name:"Rune plateskirt (h3)", itemDescription:"A plateskirt with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19229} -{name:"Black platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19230} -{name:"Black platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19231} -{name:"Black platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19232} -{name:"Black platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19233} -{name:"Black plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19234} -{name:"Black plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19235} -{name:"Adamant platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19236} -{name:"Adamant platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19237} -{name:"Adamant platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:104.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19238} -{name:"Adamant platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:104.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19239} -{name:"Adamant plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19240} -{name:"Adamant plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19241} -{name:"Rune platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19242} -{name:"Rune platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19243} -{name:"Rune platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19244} -{name:"Rune platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19245} -{name:"Rune platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19246} -{name:"Rune platelegs (h4)", itemDescription:"Platelegs with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19247} -{name:"Rune plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19248} -{name:"Rune plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19249} -{name:"Rune plateskirt (h4)", itemDescription:"A plateskirt with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19250} -{name:"Black platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19251} -{name:"Black platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:3840, lowAlch:1536, highAlch:2304, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19252} -{name:"Black platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19253} -{name:"Black platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19254} -{name:"Black plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19255} -{name:"Black plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:1920, lowAlch:768, highAlch:1152, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19256} -{name:"Adamant platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19257} -{name:"Adamant platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:12800, lowAlch:6656, highAlch:9984, isStackable:true, isNoteable:true, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19258} -{name:"Adamant platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19259} -{name:"Adamant platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19260} -{name:"Adamant plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19261} -{name:"Adamant plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:6400, lowAlch:2560, highAlch:3840, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 33.0, 31.0, 29.0, -4.0, 31.0, 10.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19262} -{name:"Rune platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19263} -{name:"Rune platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19264} -{name:"Rune platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19265} -{name:"Rune platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19266} -{name:"Rune platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19267} -{name:"Rune platelegs (h5)", itemDescription:"Platelegs with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19268} -{name:"Rune plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19269} -{name:"Rune plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19270} -{name:"Rune plateskirt (h5)", itemDescription:"A plateskirt with a heraldic design.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19271} -{name:"Fox mask", itemDescription:"A cunning disguise.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19272} -{name:"Fox mask", itemDescription:"A cunning disguise.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19273} -{name:"Fox mask", itemDescription:"A cunning disguise.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19274} -{name:"White unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19275} -{name:"White unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19276} -{name:"White unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19277} -{name:"Black unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19278} -{name:"Black unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19279} -{name:"Black unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19280} -{name:"Green dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19281} -{name:"Green dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19282} -{name:"Green dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19283} -{name:"Blue dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19284} -{name:"Blue dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19285} -{name:"Blue dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19286} -{name:"Red dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:900, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19287} -{name:"Red dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:900, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19288} -{name:"Red dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19289} -{name:"Black dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:1000, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19290} -{name:"Black dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:1000, lowAlch:360, highAlch:540, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19291} -{name:"Black dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19292} -{name:"Frost dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19293} -{name:"Frost dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19294} -{name:"Frost dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19295} -{name:"Bronze dragon mask", itemDescription:"Never has bronze looked so impressive.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19296} -{name:"Bronze dragon mask", itemDescription:"Never has bronze looked so impressive.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19297} -{name:"Bronze dragon mask", itemDescription:"Never has bronze looked so impressive.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19298} -{name:"Iron dragon mask", itemDescription:"Never has iron looked so impressive.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19299} -{name:"Iron dragon mask", itemDescription:"Never has iron looked so impressive.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19300} -{name:"Iron dragon mask", itemDescription:"Never has iron looked so impressive.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19301} -{name:"Steel dragon mask", itemDescription:"Never has steel looked so impressive.", shopValue:1000, lowAlch:15000, highAlch:22500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19302} -{name:"Steel dragon mask", itemDescription:"Never has steel looked so impressive.", shopValue:1000, lowAlch:15000, highAlch:22500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19303} -{name:"Steel dragon mask", itemDescription:"Never has steel looked so impressive.", shopValue:0, lowAlch:15000, highAlch:22500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19304} -{name:"Mithril dragon mask", itemDescription:"Never has mithril looked so impressive.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19305} -{name:"Mithril dragon mask", itemDescription:"Never has mithril looked so impressive.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19306} -{name:"Mithril dragon mask", itemDescription:"Never has mithril looked so impressive.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19307} -{name:"Third-age druidic staff", itemDescription:"A fabulously ancient gnarled staff as used by the druids of old.", shopValue:48000, lowAlch:19200, highAlch:28800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[10.0, -1.0, 50.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19308} -{name:"Third-age druidic staff", itemDescription:"A fabulously ancient gnarled staff as used by the druids of old.", shopValue:48000, lowAlch:19200, highAlch:28800, isStackable:true, isNoteable:true, weight:10.0, bonuses:[10.0, -1.0, 50.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19309} -{name:"Third-age druidic staff", itemDescription:"A fabulously ancient gnarled staff as used by the druids of old.", shopValue:0, lowAlch:19200, highAlch:28800, isStackable:false, isNoteable:false, weight:10.0, bonuses:[10.0, -1.0, 50.0, 15.0, 0.0, 3.0, 5.0, 2.0, 15.0, 0.0, 0.0, 0.0, 0.0, 0.0, 65.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19310} -{name:"Third-age druidic cloak", itemDescription:"A fabulously ancient vine cloak as worn by the druids of old.", shopValue:40000, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19311} -{name:"Third-age druidic cloak", itemDescription:"A fabulously ancient vine cloak as worn by the druids of old.", shopValue:40000, lowAlch:80000, highAlch:120000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19312} -{name:"Third-age druidic cloak", itemDescription:"A fabulously ancient vine cloak as worn by the druids of old.", shopValue:0, lowAlch:80000, highAlch:120000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19313} -{name:"Third-age druidic wreath", itemDescription:"A fabulously ancient wreath of oak as worn by the druids of old.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19314} -{name:"Third-age druidic wreath", itemDescription:"A fabulously ancient wreath of oak as worn by the druids of old.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19315} -{name:"Third-age druidic wreath", itemDescription:"A fabulously ancient wreath of oak as worn by the druids of old.", shopValue:0, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19316} -{name:"Third-age druidic robe top", itemDescription:"A fabulously ancient woven robe top as worn by the druids of old.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19317} -{name:"Third-age druidic robe top", itemDescription:"A fabulously ancient woven robe top as worn by the druids of old.", shopValue:45000, lowAlch:18000, highAlch:27000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19318} -{name:"Third-age druidic robe top", itemDescription:"A fabulously ancient woven robe top as worn by the druids of old.", shopValue:0, lowAlch:18000, highAlch:27000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19319} -{name:"Third-age druidic robe", itemDescription:"A fabulously ancient woven robe as worn by the druids of old.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19320} -{name:"Third-age druidic robe", itemDescription:"A fabulously ancient woven robe as worn by the druids of old.", shopValue:40000, lowAlch:16000, highAlch:24000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19321} -{name:"Third-age druidic robe", itemDescription:"A fabulously ancient woven robe as worn by the druids of old.", shopValue:0, lowAlch:16000, highAlch:24000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19322} -{name:"Dragon staff", itemDescription:"This fire staff displays the carved head of a majestic dragon.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:false, isNoteable:false, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19323} -{name:"Dragon staff", itemDescription:"This fire staff displays the carved head of a majestic dragon.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:true, isNoteable:true, weight:22.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19324} -{name:"Penguin staff", itemDescription:"This water staff displayed the carved head of a proud penguin.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19325} -{name:"Penguin staff", itemDescription:"This water staff displayed the carved head of a proud penguin.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19326} -{name:"Bat staff", itemDescription:"This air staff displays the carved head of a fierce bat.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19327} -{name:"Bat staff", itemDescription:"This air staff displays the carved head of a fierce bat.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19328} -{name:"Wolf staff", itemDescription:"This earth staff displays the carved head of a fearsome wolf.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19329} -{name:"Wolf staff", itemDescription:"This earth staff displays the carved head of a fearsome wolf.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19330} -{name:"Cat staff", itemDescription:"This staff displays the carved head of an inquisitive cat.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:false, isNoteable:false, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19331} -{name:"Cat staff", itemDescription:"This staff displays the carved head of an inquisitive cat.", shopValue:47500, lowAlch:19000, highAlch:28500, isStackable:true, isNoteable:true, weight:2.0, bonuses:[10.0, -1.0, 40.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 2.0, 0.0, 0.0, 0.0, 50.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19332} -{name:"Fury ornament kit", itemDescription:"Use on an amulet of fury to make it look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19333} -{name:"Fury ornament kit", itemDescription:"Use on an amulet of fury to make it look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19334} -{name:"Amulet of fury (or)", itemDescription:"A very powerful and pretty onyx amulet.", shopValue:202000, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 0.0, 0.0, 0.0, 8.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19335} -{name:"Dragon full helm (or)", itemDescription:"Dragon full helm with an ornate decoration.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 45.0, 48.0, 41.0, -1.0, 46.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19336} -{name:"Dragon platebody (or)", itemDescription:"Dragon platebody with an ornate decoration.", shopValue:1760000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19337} -{name:"Dragon platelegs (or)", itemDescription:"Dragon platelegs with ornate decoration.", shopValue:270000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19338} -{name:"Dragon plateskirt (or)", itemDescription:"Dragon plateskirt with an ornate decoration.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19339} -{name:"Dragon square shield (or)", itemDescription:"Dragon square shield with an ornate decoration.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19340} -{name:"Dragon full helm (sp)", itemDescription:"Dragon full helm with a spiky decoration.", shopValue:150000, lowAlch:60000, highAlch:90000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 45.0, 48.0, 41.0, -1.0, 46.0, 12.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19341} -{name:"Dragon platebody (sp)", itemDescription:"Dragon platebody with a spiky decoration.", shopValue:1760000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19342} -{name:"Dragon platelegs (sp)", itemDescription:"Dragon platelegs with a spiky decoration.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19343} -{name:"Dragon plateskirt (sp)", itemDescription:"Dragon plateskirt with a spiky decoration.", shopValue:270000, lowAlch:108000, highAlch:162000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 68.0, 66.0, 63.0, -4.0, 65.0, 20.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19344} -{name:"Dragon sq shield (sp)", itemDescription:"Dragon square shield with a spiky decoration.", shopValue:500000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 50.0, 52.0, 48.0, 0.0, 50.0, 50.0, 5.0, 0.0, 11.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19345} -{name:"Dragon full helm ornament kit (or)", itemDescription:"Use on a dragon full helm to make it look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19346} -{name:"Dragon full helm ornament kit (or)", itemDescription:"Use on a dragon full helm to make it look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19347} -{name:"Dragon platelegs/skirt ornament kit (or)", itemDescription:"Use on dragon platelegs or a dragon plateskirt to make them look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19348} -{name:"Dragon platelegs/skirt ornament kit (or)", itemDescription:"Use on dragon platelegs or a dragon plateskirt to make them look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19349} -{name:"Dragon platebody ornament kit (or)", itemDescription:"Use on a dragon platebody to make it look fancier.", shopValue:10000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19350} -{name:"Dragon platebody ornament kit (or)", itemDescription:"Use on a dragon platebody to make it look fancier.", shopValue:10000, lowAlch:8000, highAlch:12000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19351} -{name:"Dragon sq shield ornament kit (or)", itemDescription:"Use on a dragon square shield to make it look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19352} -{name:"Dragon sq shield ornament kit (or)", itemDescription:"Use on a dragon square shield to make it look fancier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19353} -{name:"Dragon full helm ornament kit (sp)", itemDescription:"Use on a dragon full helm to make it look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19354} -{name:"Dragon full helm ornament kit (sp)", itemDescription:"Use on a dragon full helm to make it look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19355} -{name:"Dragon platelegs/skirt ornament kit (sp)", itemDescription:"Use on dragon platelegs or a dragon plateskirt to make them look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19356} -{name:"Dragon platelegs/skirt ornament kit (sp)", itemDescription:"Use on dragon platelegs or a dragon plateskirt to make them look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19357} -{name:"Dragon platebody ornament kit (sp)", itemDescription:"Use on a dragon platebody to make it look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19358} -{name:"Dragon platebody ornament kit (sp)", itemDescription:"Use on a dragon platebody to make it look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19359} -{name:"Dragon sq shield ornament kit (sp)", itemDescription:"Used on a dragon sq shield to make it look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19360} -{name:"Dragon sq shield ornament kit (sp)", itemDescription:"Used on a dragon sq shield to make it look spikier.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19361} -{name:"Armadyl crozier", itemDescription:"An Armadyl crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19362} -{name:"Armadyl crozier", itemDescription:"An Armadyl crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19363} -{name:"Bandos crozier", itemDescription:"A Bandos crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:20.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19364} -{name:"Bandos crozier", itemDescription:"A Bandos crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:20.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19365} -{name:"Ancient crozier", itemDescription:"An Ancient crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19366} -{name:"Ancient crozier", itemDescription:"An Ancient crozier.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[7.0, -1.0, 25.0, 10.0, 0.0, 2.0, 3.0, 1.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 32.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19367} -{name:"Armadyl cloak", itemDescription:"A blessed cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19368} -{name:"Armadyl cloak", itemDescription:"A blessed cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19369} -{name:"Bandos cloak", itemDescription:"A blessed cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19370} -{name:"Bandos cloak", itemDescription:"A blessed cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19371} -{name:"Ancient cloak", itemDescription:"A blessed cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19372} -{name:"Ancient cloak", itemDescription:"A blessed cloak.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19373} -{name:"Armadyl mitre", itemDescription:"A blessed mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19374} -{name:"Armadyl mitre", itemDescription:"A blessed mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19375} -{name:"Bandos mitre", itemDescription:"A Bandos mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19376} -{name:"Bandos mitre", itemDescription:"A Bandos mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 3.0, 1.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19377} -{name:"Ancient mitre", itemDescription:"A blessed mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19378} -{name:"Ancient mitre", itemDescription:"A blessed mitre.", shopValue:5000, lowAlch:2000, highAlch:3000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19379} -{name:"Armadyl robe top", itemDescription:"A vestment of Armadyl.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19380} -{name:"Armadyl robe top", itemDescription:"A vestment of Armadyl.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19381} -{name:"Ancient robe top", itemDescription:"A vestment of a forgotten god.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19382} -{name:"Ancient robe top", itemDescription:"A vestment of a forgotten god.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19383} -{name:"Bandos robe top", itemDescription:"A vestment of Bandos.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19384} -{name:"Bandos robe top", itemDescription:"A vestment of Bandos.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19385} -{name:"Armadyl robe legs", itemDescription:"Legs that match the Armadyl vestment.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19386} -{name:"Armadyl robe legs", itemDescription:"Legs that match the Armadyl vestment.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19387} -{name:"Bandos robe legs", itemDescription:"Legs that match the Bandos vestment.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19388} -{name:"Bandos robe legs", itemDescription:"Legs that match the Bandos vestment.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19389} -{name:"Ancient robe legs", itemDescription:"Legs that match the Zaros vestment.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19390} -{name:"Ancient robe legs", itemDescription:"Legs that match the Zaros vestment.", shopValue:7000, lowAlch:2800, highAlch:4200, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19391} -{name:"Armadyl stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19392} -{name:"Armadyl stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19393} -{name:"Bandos stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19394} -{name:"Bandos stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19395} -{name:"Ancient stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19396} -{name:"Ancient stole", itemDescription:"A blessed stole.", shopValue:2500, lowAlch:1000, highAlch:1500, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19397} -{name:"Ancient platebody", itemDescription:"A rune platebody in the colours of a forgotten god.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19398} -{name:"Ancient platebody", itemDescription:"A rune platebody in the colours of a forgotten god.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19399} -{name:"Ancient platebody", itemDescription:"A rune platebody in the colours of a forgotten god.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19400} -{name:"Ancient platelegs", itemDescription:"Rune platelegs in the colours of a forgotten god.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:95.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19401} -{name:"Ancient platelegs", itemDescription:"Rune platelegs in the colours of a forgotten god.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:95.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19402} -{name:"Ancient platelegs", itemDescription:"Rune platelegs in the colours of a forgotten god.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:95.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19403} -{name:"Ancient plateskirt", itemDescription:"A rune plateskirt in the colours of a forgotten god.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19404} -{name:"Ancient plateskirt", itemDescription:"A rune plateskirt in the colours of a forgotten god.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19405} -{name:"Ancient plateskirt", itemDescription:"A rune plateskirt in the colours of a forgotten god.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19406} -{name:"Ancient full helm", itemDescription:"A rune full helmet in the colours of a forgotten god.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19407} -{name:"Ancient full helm", itemDescription:"A rune full helmet in the colours of a forgotten god.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19408} -{name:"Ancient full helm", itemDescription:"A rune full helmet in the colours of a forgotten god.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19409} -{name:"Ancient kiteshield", itemDescription:"A rune kiteshield in the colours of a forgotten god.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19410} -{name:"Ancient kiteshield", itemDescription:"A rune kiteshield in the colours of a forgotten god.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19411} -{name:"Ancient kiteshield", itemDescription:"A rune kiteshield in the colours of a forgotten god.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19412} -{name:"Armadyl platebody", itemDescription:"A rune platebody in the colours of Armadyl.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19413} -{name:"Armadyl platebody", itemDescription:"A rune platebody in the colours of Armadyl.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19414} -{name:"Armadyl platebody", itemDescription:"A rune platebody in the colours of Armadyl.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19415} -{name:"Armadyl platelegs", itemDescription:"Rune platelegs in the colours of Armadyl.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19416} -{name:"Armadyl platelegs", itemDescription:"Rune platelegs in the colours of Armadyl.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19417} -{name:"Armadyl platelegs", itemDescription:"Rune platelegs in the colours of Armadyl.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19418} -{name:"Armadyl plateskirt", itemDescription:"A rune plateskirt in the colours of Armadyl.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19419} -{name:"Armadyl plateskirt", itemDescription:"A rune plateskirt in the colours of Armadyl.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19420} -{name:"Armadyl plateskirt", itemDescription:"A rune plateskirt in the colours of Armadyl.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19421} -{name:"Armadyl full helm", itemDescription:"A full helmet in the colours of Armadyl.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19422} -{name:"Armadyl full helm", itemDescription:"A full helmet in the colours of Armadyl.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19423} -{name:"Armadyl full helm", itemDescription:"A full helmet in the colours of Armadyl.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19424} -{name:"Armadyl kiteshield", itemDescription:"A rune kiteshield in the colours of Armadyl", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19425} -{name:"Armadyl kiteshield", itemDescription:"A rune kiteshield in the colours of Armadyl", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19426} -{name:"Armadyl kiteshield", itemDescription:"A rune kiteshield in the colours of Armadyl", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19427} -{name:"Bandos platebody", itemDescription:"A rune platebody in the colours of Bandos.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19428} -{name:"Bandos platebody", itemDescription:"A rune platebody in the colours of Bandos.", shopValue:65000, lowAlch:26000, highAlch:39000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19429} -{name:"Bandos platebody", itemDescription:"A rune platebody in the colours of Bandos.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19430} -{name:"Bandos platelegs", itemDescription:"Rune platelegs in the colours of Bandos.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19431} -{name:"Bandos platelegs", itemDescription:"Rune platelegs in the colours of Bandos.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19432} -{name:"Bandos platelegs", itemDescription:"Rune platelegs in the colours of Bandos.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19433} -{name:"Bandos plateskirt", itemDescription:"A rune plateskirt in the colours of Bandos.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19434} -{name:"Bandos plateskirt", itemDescription:"A rune plateskirt in the colours of Bandos.", shopValue:64000, lowAlch:25600, highAlch:38400, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19435} -{name:"Bandos plateskirt", itemDescription:"A rune plateskirt in the colours of Bandos.", shopValue:0, lowAlch:25600, highAlch:38400, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 51.0, 49.0, 47.0, -4.0, 49.0, 15.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19436} -{name:"Bandos full helm", itemDescription:"A rune full helmet in the colours of Bandos.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19437} -{name:"Bandos full helm", itemDescription:"A rune full helmet in the colours of Bandos.", shopValue:35200, lowAlch:14080, highAlch:21120, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19438} -{name:"Bandos full helm", itemDescription:"A rune full helmet in the colours of Bandos.", shopValue:0, lowAlch:14080, highAlch:21120, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 30.0, 32.0, 27.0, -1.0, 30.0, 7.0, 1.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19439} -{name:"Bandos kiteshield", itemDescription:"A rune kiteshield in the colours of Bandos.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19440} -{name:"Bandos kiteshield", itemDescription:"A rune kiteshield in the colours of Bandos.", shopValue:54400, lowAlch:21760, highAlch:32640, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19441} -{name:"Bandos kiteshield", itemDescription:"A rune kiteshield in the colours of Bandos.", shopValue:0, lowAlch:21760, highAlch:32640, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 44.0, 48.0, 46.0, -1.0, 46.0, 40.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19442} -{name:"Ancient vambraces", itemDescription:"Blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19443} -{name:"Ancient vambraces", itemDescription:"Blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19444} -{name:"Ancient body", itemDescription:"Blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19445} -{name:"Ancient body", itemDescription:"Blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19446} -{name:"Ancient chaps", itemDescription:"Blessed dragonhide chaps.", shopValue:6000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19447} -{name:"Ancient chaps", itemDescription:"Blessed dragonhide chaps.", shopValue:6000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19448} -{name:"Ancient coif", itemDescription:"Blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19449} -{name:"Ancient coif", itemDescription:"Blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19450} -{name:"Bandos vambraces", itemDescription:"Bandos blessed dragonhide vambraces.", shopValue:6000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19451} -{name:"Bandos vambraces", itemDescription:"Bandos blessed dragonhide vambraces.", shopValue:6000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19452} -{name:"Bandos body", itemDescription:"Blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19453} -{name:"Bandos body", itemDescription:"Blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19454} -{name:"Bandos chaps", itemDescription:"Blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19455} -{name:"Bandos chaps", itemDescription:"Blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:45.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19456} -{name:"Bandos coif", itemDescription:"Blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19457} -{name:"Bandos coif", itemDescription:"Blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19458} -{name:"Armadyl vambraces", itemDescription:"Armadyl blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19459} -{name:"Armadyl vambraces", itemDescription:"Armadyl blessed dragonhide vambraces.", shopValue:4000, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, -10.0, 11.0, 6.0, 5.0, 7.0, 8.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19460} -{name:"Armadyl body", itemDescription:"Armadyl blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19461} -{name:"Armadyl body", itemDescription:"Armadyl blessed dragonhide body armour.", shopValue:13000, lowAlch:5200, highAlch:7800, isStackable:true, isNoteable:true, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19462} -{name:"Armadyl chaps", itemDescription:"Blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19463} -{name:"Armadyl chaps", itemDescription:"Blessed dragonhide chaps.", shopValue:6000, lowAlch:2400, highAlch:3600, isStackable:true, isNoteable:true, weight:5.0, bonuses:[0.0, 0.0, 0.0, -10.0, 17.0, 31.0, 25.0, 33.0, 28.0, 31.0, 30.0, 0.0, 4.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19464} -{name:"Armadyl coif", itemDescription:"Blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19465} -{name:"Armadyl coif", itemDescription:"Blessed dragonhide coif.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -1.0, 7.0, 4.0, 7.0, 10.0, 4.0, 8.0, 8.0, 0.0, 3.0, 1.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19466} -{name:"Biscuits", itemDescription:"These tasty biscuits have god symbols on them.", shopValue:20, lowAlch:8, highAlch:12, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19467} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19468} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19469} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19470} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19471} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19472} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19473} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19474} -{name:"Nardah teleport", itemDescription:"A one-use scroll containing a teleport spell.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19475} -{name:"Bandit camp teleport", itemDescription:"A one-use scroll containing a teleport spell.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19476} -{name:"Miscellania teleport", itemDescription:"A one-use scroll containing a teleport spell.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19477} -{name:"Phoenix lair teleport", itemDescription:"A one-use scroll containing a teleport spell.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19478} -{name:"Tai bwo wannai teleport", itemDescription:"A one-use scroll containing a teleport spell.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19479} -{name:"Lumber yard teleport", itemDescription:"A one-use scroll containing a teleport spell.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19480} -{name:"Black platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19481} -{name:"Adamant platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19482} -{name:"Rune platebody (h1)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19483} -{name:"Black platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19484} -{name:"Adamant platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19485} -{name:"Rune platebody (h2)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19486} -{name:"Black platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19487} -{name:"Adamant platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19488} -{name:"Rune platebody (h3)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19489} -{name:"Black platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19490} -{name:"Adamant platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19491} -{name:"Rune platebody (h4)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19492} -{name:"Black platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:1536, highAlch:2304, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19493} -{name:"Adamant platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:6656, highAlch:9984, isStackable:false, isNoteable:false, weight:11.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 65.0, 63.0, 55.0, -6.0, 63.0, 30.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19494} -{name:"Rune platebody (h5)", itemDescription:"A platebody with a heraldic design.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19495} -{name:"Fox mask", itemDescription:"A cunning disguise.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19496} -{name:"White unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19497} -{name:"Black unicorn mask", itemDescription:"Not to be used in antipoison potions.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19498} -{name:"Green dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19499} -{name:"Blue dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19500} -{name:"Red dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19501} -{name:"Black dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:360, highAlch:540, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19502} -{name:"Frost dragon mask", itemDescription:"Doesn't let you breathe fire, sadly.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19503} -{name:"Bronze dragon mask", itemDescription:"Never has bronze looked so impressive.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19504} -{name:"Iron dragon mask", itemDescription:"Never has iron looked so impressive.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19505} -{name:"Steel dragon mask", itemDescription:"Never has steel looked so impressive.", shopValue:0, lowAlch:15000, highAlch:22500, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19506} -{name:"Mithril dragon mask", itemDescription:"Never has mithril looked so impressive.", shopValue:0, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19507} -{name:"Armadyl robe top", itemDescription:"A vestment of Armadyl.", shopValue:0, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19508} -{name:"Ancient robe top", itemDescription:"A vestment of a forgotten god.", shopValue:0, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19509} -{name:"Bandos robe top", itemDescription:"A vestment of Bandos.", shopValue:0, lowAlch:2800, highAlch:4200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19510} -{name:"Dragon platebody (s)", itemDescription:"Dragon platebody with a spiky decoration.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19511} -{name:"Dragon platebody (o)", itemDescription:"Dragon platebody with an ornate decoration.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, 0.0, 109.0, 107.0, 97.0, -6.0, 106.0, 50.0, 4.0, 0.0, 9.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19512} -{name:"Amulet of fury (o)", itemDescription:"A very powerful and pretty onyx amulet.", shopValue:0, lowAlch:80800, highAlch:121200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[10.0, 10.0, 10.0, 10.0, 10.0, 15.0, 15.0, 15.0, 15.0, 15.0, 15.0, 0.0, 0.0, 0.0, 8.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19513} -{name:"Ancient platebody", itemDescription:"A rune platebody in the colours of a forgotten god.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19514} -{name:"Armadyl platebody", itemDescription:"A rune platebody in the colours of Armadyl.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:99.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19515} -{name:"Bandos platebody", itemDescription:"A rune platebody in the colours of Bandos.", shopValue:0, lowAlch:26000, highAlch:39000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 82.0, 80.0, 72.0, -6.0, 80.0, 40.0, 3.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19516} -{name:"Ancient dragonhide", itemDescription:"Blessed dragonhide body armour.", shopValue:0, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19517} -{name:"Bandos dragonhide", itemDescription:"Blessed dragonhide body armour.", shopValue:0, lowAlch:5200, highAlch:7800, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, -15.0, 30.0, 55.0, 47.0, 60.0, 50.0, 55.0, 55.0, 0.0, 6.0, 3.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19518} -{name:"Armadyl dragonhide", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19519} -{name:"Black heraldic armour set 1 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19520} -{name:"Black heraldic armour set 1 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19521} -{name:"Black heraldic armour set 2 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19522} -{name:"Black heraldic armour set 2 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19523} -{name:"Black heraldic armour set 3 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19524} -{name:"Black heraldic armour set 3 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19525} -{name:"Black heraldic armour set 4 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19526} -{name:"Black heraldic armour set 4 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19527} -{name:"Black heraldic armour set 5 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19528} -{name:"Black heraldic armour set 5 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19529} -{name:"Black heraldic armour set 1 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19530} -{name:"Black heraldic armour set 1 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19531} -{name:"Black heraldic armour set 2 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19532} -{name:"Black heraldic armour set 2 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19533} -{name:"Black heraldic armour set 3 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19534} -{name:"Black heraldic armour set 3 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19535} -{name:"Black heraldic armour set 4 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19536} -{name:"Black heraldic armour set 4 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19537} -{name:"Black heraldic armour set 5 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19538} -{name:"Black heraldic armour set 5 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 91.0, 92.0, 77.0, -12.0, 90.0, 23.0, 2.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19539} -{name:"Adamant heraldic armour set 1 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19540} -{name:"Adamant heraldic armour set 1 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19541} -{name:"Adamant heraldic armour set 2 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19542} -{name:"Adamant heraldic armour set 2 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19543} -{name:"Adamant heraldic armour set 3 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19544} -{name:"Adamant heraldic armour set 3 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19545} -{name:"Adamant heraldic armour set 4 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19546} -{name:"Adamant heraldic armour set 4 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19547} -{name:"Adamant heraldic armour set 5 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19548} -{name:"Adamant heraldic armour set 5 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19549} -{name:"Adamant heraldic armour set 1 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19550} -{name:"Adamant heraldic armour set 1 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19551} -{name:"Adamant heraldic armour set 2 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19552} -{name:"Adamant heraldic armour set 2 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19553} -{name:"Adamant heraldic armour set 3 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19554} -{name:"Adamant heraldic armour set 3 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19555} -{name:"Adamant heraldic armour set 4 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19556} -{name:"Adamant heraldic armour set 4 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19557} -{name:"Adamant heraldic armour set 5 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19558} -{name:"Adamant heraldic armour set 5 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 144.0, 146.0, 129.0, -12.0, 142.0, 76.0, 7.0, 0.0, 15.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19559} -{name:"Rune heraldic armour set 1 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19560} -{name:"Rune heraldic armour set 1 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19561} -{name:"Rune heraldic armour set 2 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19562} -{name:"Rune heraldic armour set 2 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19563} -{name:"Rune heraldic armour set 3 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19564} -{name:"Rune heraldic armour set 3 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19565} -{name:"Rune heraldic armour set 4 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19566} -{name:"Rune heraldic armour set 4 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:15.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19567} -{name:"Rune heraldic armour set 5 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19568} -{name:"Rune heraldic armour set 5 (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19569} -{name:"Rune heraldic armour set 1 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19570} -{name:"Rune heraldic armour set 1 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19571} -{name:"Rune heraldic armour set 2 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19572} -{name:"Rune heraldic armour set 2 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19573} -{name:"Rune heraldic armour set 3 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19574} -{name:"Rune heraldic armour set 3 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19575} -{name:"Rune heraldic armour set 4 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19576} -{name:"Rune heraldic armour set 4 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19577} -{name:"Rune heraldic armour set 5 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19578} -{name:"Rune heraldic armour set 5 (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19579} -{name:"Third-age prayer set", itemDescription:"Grand Exchange set containing a staff, cloak, wreath, top and bottoms.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19580} -{name:"Third-age prayer set", itemDescription:"Grand Exchange set containing a staff, cloak, wreath, top and bottoms.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19581} -{name:"Dyed brown d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19582} -{name:"Dyed brown d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19583} -{name:"Dyed purple d'hide blessed set", itemDescription:"Grand Exchange set containing a body, chaps, bracers and coif.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19584} -{name:"Dyed purple d'hide blessed set", itemDescription:"Grand Exchange set containing a body, chaps, bracers and coif.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19585} -{name:"Dyed silver d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19586} -{name:"Dyed silver d'hide blessed set", itemDescription:"Grand Exchange set containing body, chaps, bracers and coif.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19587} -{name:"Armadyl armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19588} -{name:"Armadyl armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19589} -{name:"Armadyl armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19590} -{name:"Armadyl armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19591} -{name:"Bandos armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19592} -{name:"Bandos armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19593} -{name:"Bandos armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19594} -{name:"Bandos armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19595} -{name:"Ancient armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19596} -{name:"Ancient armour set (lg)", itemDescription:"Grand Exchange set containing a full helm, platebody, legs and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19597} -{name:"Ancient armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19598} -{name:"Ancient armour set (sk)", itemDescription:"Grand Exchange set containing a full helm, platebody, skirt and kiteshield.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:22.0, bonuses:[0.0, 0.0, 0.0, -65.0, -21.0, 207.0, 209.0, 192.0, -12.0, 205.0, 102.0, 9.0, 0.0, 20.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19599} -{name:"Bandos page 1", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19600} -{name:"Bandos page 2", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19601} -{name:"Bandos page 3", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19602} -{name:"Bandos page 4", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19603} -{name:"Armadyl page 1", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19604} -{name:"Armadyl page 2", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19605} -{name:"Armadyl page 3", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19606} -{name:"Armadyl page 4", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19607} -{name:"Ancient page 1", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19608} -{name:"Ancient page 2", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19609} -{name:"Ancient page 3", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19610} -{name:"Ancient page 4", itemDescription:"This seems to have been torn from a book.", shopValue:200, lowAlch:80, highAlch:120, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19611} -{name:"Damaged book", itemDescription:"An incomplete book of Saradomin/Guthix/Zamorak/Bandos/ArmadylAn incomplete ancient book", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19612} -{name:"Book of war", itemDescription:"The holy book of the Big High War God.", shopValue:200, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:1.0, bonuses:[6.0, 6.0, 6.0, 0.0, 0.0, 6.0, 6.0, 6.0, 0.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19613} -{name:"Damaged book", itemDescription:"An incomplete book of Saradomin/Guthix/Zamorak/Bandos/ArmadylAn incomplete ancient book", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19614} -{name:"Book of law", itemDescription:"The holy book of Armadyl.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[4.0, 4.0, 4.0, 0.0, 6.0, 4.0, 4.0, 4.0, 0.0, 6.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19615} -{name:"Damaged book", itemDescription:"An incomplete book of Saradomin/Guthix/Zamorak/Bandos/ArmadylAn incomplete ancient book", shopValue:0, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19616} -{name:"Ancient book", itemDescription:"The unholy book of a forgotten god.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[4.0, 4.0, 4.0, 6.0, 0.0, 4.0, 4.0, 4.0, 6.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19617} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19618} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19619} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19620} -{name:"Fetch casket scroll", itemDescription:"", shopValue:300, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19621} -{name:"Meerkats pouch", itemDescription:"", shopValue:3000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19622} -{name:"Meerkats pouch", itemDescription:"", shopValue:3000, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19623} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19624} -{name:"Puzzle box", itemDescription:"I need to solve this.", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19625} -{name:"Mysterious clue scroll", itemDescription:"The strange scroll that led Ali Tist to a stash of dubious boxes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19626} -{name:"Blocks (iron oxide)", itemDescription:"This chemical can be used to help balance the mixture.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19627} -{name:"Gas vial (chlorine)", itemDescription:"This chemical can be used to help balance the mixture.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19628} -{name:"Powder (copper sulphate)", itemDescription:"This chemical can be used to help balance the mixture.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19629} -{name:"Liquid (uric acid)", itemDescription:"This chemical can be used to help balance the mixture.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19630} -{name:"Black knight access insignia", itemDescription:"Black Knight Industrial Team badge.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19631} -{name:"Rusty anchor cellar key", itemDescription:"This key allows access to the cellar of the Rusty Anchor. (A Void Dance)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19632} -{name:"Search warrant", itemDescription:"This document entitles the bearer to search the stock of one Ali Tist.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19633} -{name:"Void drone 'bug'", itemDescription:"A void drone summoned by Jessika.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19634} -{name:"Void knight whistle", itemDescription:"Blow this if you get into difficulties.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19635} -{name:"Jointed log", itemDescription:"This log has a tenon joint cut into it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19636} -{name:"Jointed plank", itemDescription:"This log has a mortise cut into it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19637} -{name:"Joist", itemDescription:"A sturdy wooden joist.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19638} -{name:"Wood shards", itemDescription:"Broken bits of tooled, waxy wood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19639} -{name:"Commorb", itemDescription:"A Temple Knight Communication Orb. Top Secret! / Use this to stay in touch with Korasi and Jessika. (A Void Dance version) / Tyr's commorb, given to him by Sir Tiffy. (Tyr's commorb)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19640} -{name:"Commorb", itemDescription:"A Temple Knight Communication Orb. Top Secret! / Use this to stay in touch with Korasi and Jessika. (A Void Dance version) / Tyr's commorb, given to him by Sir Tiffy. (Tyr's commorb)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19641} -{name:"Void knight commendation", itemDescription:"Redeem this with a Void Knight for fifty Commendations.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19642} -{name:"Void pest research notes", itemDescription:"Jessika's collected notes on void pests.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19643} -{name:"Void knight book", itemDescription:"A definitive account of the Void Knight order.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19644} -{name:"Black knight workshop key", itemDescription:"A key to the secure area of the Black Knights' workshop. (A Void Dance)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19645} -{name:"Curious tool", itemDescription:"This might come in handy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19646} -{name:"Metal strip", itemDescription:"Unscrewed from the frame of a Black Knight workbench.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19647} -{name:"Hook", itemDescription:"You should see the shark...", shopValue:0, lowAlch:35, highAlch:53, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 5.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19648} -{name:"Gaff", itemDescription:"Jury-rigged, but might do the job.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19649} -{name:"Toolkit", itemDescription:"Good for repairing a broken cannon.", shopValue:1056, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19650} -{name:"Wooden plank", itemDescription:"A plank of wood!", shopValue:0, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19651} -{name:"Wooden plank", itemDescription:"A plank of wood!", shopValue:0, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19652} -{name:"Corianger", itemDescription:"A fierce, motile herb with a penchant for biting people.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19653} -{name:"Explosemary", itemDescription:"A highly unstable herb that explodes when handled without care.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19654} -{name:"Parslay", itemDescription:"It has whirling spines on the outside and an enchanted gem at its centre.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19655} -{name:"Cardamaim", itemDescription:"A herb with wickedly sharp leaves which could easily sever a finger.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19656} -{name:"Papreaper", itemDescription:"An ice-cold herb that seems to suck the life force from your body.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19657} -{name:"Slaughtercress", itemDescription:"A lethally toxic herb which induces cardiac arrest upon skin contact.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19658} -{name:"Consecrated herb", itemDescription:"This once-dangerous herb has been consecrated and is ready for burning in a censer.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19659} -{name:"Rock", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19660} -{name:"Carved keystone", itemDescription:"The stone has been carved into a bridge-shaped keystone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19661} -{name:"Carved keystone", itemDescription:"The stone has been carved into a bridge-shaped keystone.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19662} -{name:"Broken climbing hook head", itemDescription:"The head of a climbing hook. Combined with a rope, it could be useful.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19663} -{name:"Climbing hook head", itemDescription:"The head of a climbing hook. Combined with a rope, it could be useful.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19664} -{name:"Meatcorn", itemDescription:"A tough, almost inedible plant with strong fibres suitable for ropemaking.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19665} -{name:"Meatcorn", itemDescription:"A tough, almost inedible plant with strong fibres suitable for ropemaking.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19666} -{name:"Meatcorn rope", itemDescription:"A tough rope made from meatcorn fibres.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19667} -{name:"Climbing hook", itemDescription:"A climbing hook attached to a tough rope.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19668} -{name:"Ring of vigour", itemDescription:"Wearing it fills you with energy.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19669} -{name:"Scroll of efficiency", itemDescription:"Secrets of smithing lie within.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19670} -{name:"Magical blastbox", itemDescription:"It's brimming with power.", shopValue:20000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19671} -{name:"Eye of the ranger", itemDescription:"Not found in-game", shopValue:12500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19672} -{name:"Eye of the warrior", itemDescription:"N/A", shopValue:12500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19673} -{name:"Eye of the mage", itemDescription:"N/A", shopValue:12500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19674} -{name:"Herbicide", itemDescription:"It fills the room with fumes that are corrosive to plants.", shopValue:3850, lowAlch:1540, highAlch:2310, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19675} -{name:"Mysterious chronicle (part 19)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19676} -{name:"Mysterious chronicle (part 20)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19677} -{name:"Mysterious chronicle (part 21)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19678} -{name:"Mysterious chronicle (part 22)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19679} -{name:"Mysterious chronicle (part 23)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19680} -{name:"Mysterious chronicle (part 24)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19681} -{name:"Bellefleur's journal", itemDescription:"Written by one of the skeletal trio, before they became skeletons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19682} -{name:"Arch necrolord request", itemDescription:"A form sent from the Arch Necrolord.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19683} -{name:"Tombstone transcription", itemDescription:"A transcription of Grave Creeper's tombstone.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19684} -{name:"Behemoth notes (part 4)", itemDescription:"An unknown mage's notes on the behemoths.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19685} -{name:"Kal'gerion notes (part 4)", itemDescription:"An unknown mage's notes on the Kal'Gerion demons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19686} -{name:"Stalker notes (part 4)", itemDescription:"An unknown mage's notes on the stalkers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19687} -{name:"M. and thok letter (part 7)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19688} -{name:"M. and thok letter (part 8)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19689} -{name:"Kinship ring", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19690} -{name:"...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19691} -{name:"...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19692} -{name:"...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19693} -{name:"...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19694} -{name:"...", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19695} -{name:"Rand kalergian demon icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19696} -{name:"Rand portal demon icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19697} -{name:"Rand yklagor demon icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19698} -{name:"Rand behemoth icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19699} -{name:"Broken climbing hook head", itemDescription:"The head of a climbing hook. Combined with a rope, it could be useful.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19700} -{name:"Climbing hook head", itemDescription:"The head of a climbing hook. Combined with a rope, it could be useful.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19701} -{name:"Meatcorn rope", itemDescription:"A tough rope made from meatcorn fibres.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19702} -{name:"Climbing hook", itemDescription:"A climbing hook attached to a tough rope.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19703} -{name:"Statue collection bag", itemDescription:"A large bag for collecting statue pieces.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19704} -{name:"Mysterious book", itemDescription:"There are some pages missing.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19705} -{name:"Investigator's coat", itemDescription:"A coat that conveys your investigative abilities.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19706} -{name:"Investigator's trousers", itemDescription:"Some trousers that conveys your investigative abilities.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19707} -{name:"Investigator's hat", itemDescription:"A hat that conveys your investigative abilities.", shopValue:100, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19708} -{name:"Dungeoneering master cape", itemDescription:"The cape worn by the true masters of Daemonheim.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19709} -{name:"Dungeoneering master cape", itemDescription:"The cape worn by the true masters of Daemonheim.", shopValue:99000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 9.0, 9.0, 9.0, 9.0, 9.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19710} -{name:"Void knight deflector", itemDescription:"A deft void knight shield.", shopValue:0, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 10.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19711} -{name:"Void knight deflector", itemDescription:"A deft void knight shield.", shopValue:20000, lowAlch:8000, highAlch:12000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 10.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19712} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19713} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19714} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19715} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19716} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19717} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19718} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19719} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19720} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19721} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19722} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19723} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19724} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19725} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19726} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19727} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19728} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19729} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19730} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19731} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19732} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19733} -{name:"Junk", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19734} -{name:"Barrister top", itemDescription:"Top half of a barrister suit.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19735} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19736} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19737} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19738} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19739} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19740} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19741} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19742} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19743} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19744} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19745} -{name:"Dossier photo", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19746} -{name:"Rainbow afro", itemDescription:"A gift from Party Pete.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19747} -{name:"Ardougne cloak 4", itemDescription:"A shadowy Ardougne cloak.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[6.0, 0.0, 0.0, 6.0, 0.0, 6.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19748} -{name:"Falador shield 4", itemDescription:"An elite kiteshield from Falador.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, -8.0, -2.0, 27.0, 31.0, 29.0, -1.0, 29.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19749} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19750} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19751} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19752} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19753} -{name:"Karamja gloves 4", itemDescription:"A pair of greenish-black Karamja gloves.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19754} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19755} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19756} -{name:"Varrock armour 4", itemDescription:"Varrock Smithing armour.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 32.0, 31.0, 24.0, -6.0, 31.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19757} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19758} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19759} -{name:"Explorer's ring 4", itemDescription:"A Lumbridge explorer's ring.", shopValue:350, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19760} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19761} -{name:"Hamper", itemDescription:"A hamper full of cooked food.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19762} -{name:"Seer's headband 4", itemDescription:"A headband with an eye embroidered on it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19763} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19764} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19765} -{name:"Fremennik sea boots 4", itemDescription:"Incredibly sturdy boots for northern winters.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -3.0, -1.0, 10.0, 11.0, 12.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19766} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19767} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19768} -{name:"Mole nose", itemDescription:"The nose of a mole.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19769} -{name:"Ring from jeffery", itemDescription:"A gold ring made by Jeffery of Edgeville. It doesn't look particularly special to you.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19770} -{name:"Dororan's engraved ring", itemDescription:"The ring is engraved 'Gudrun the Fair, Gudrun the Fiery'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19771} -{name:"Gunnar's ground", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19772} -{name:"Gunnar's ground", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19773} -{name:"Love poem", itemDescription:"Laying everybody low with a love poem that he made.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19774} -{name:"Antique lamp", itemDescription:"I wonder what happens if I rub it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19775} -{name:"Swanky boots", itemDescription:"You can tell by the way I use my walk I'm too busy for a natter.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19776} -{name:"Swanky boots", itemDescription:"You can tell by the way I use my walk I'm too busy for a natter.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19777} -{name:"Oktoberfest pretzel", itemDescription:"A tasty pretzel. Won't last after the next update!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19778} -{name:"Oktoberfest pretzel", itemDescription:"A tasty pretzel. Won't last after the next update!", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19779} -{name:"Korasi's sword", itemDescription:"The sword of a Void Knight.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[60.0, 70.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19780} -{name:"Black platebody (bugged)", itemDescription:"This armour has been modified to track your movements.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -30.0, -10.0, 41.0, 40.0, 30.0, -6.0, 40.0, 10.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19781} -{name:"Black platelegs (bugged)", itemDescription:"This armour has been modified to track your movements.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -21.0, -7.0, 21.0, 20.0, 19.0, -4.0, 20.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19782} -{name:"Black full helm (bugged)", itemDescription:"This armour has been modified to track your movements.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -6.0, -2.0, 12.0, 13.0, 10.0, -1.0, 12.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19783} -{name:"Korasi's sword", itemDescription:"The sword of a Void Knight.", shopValue:245000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[60.0, 70.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 70.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19784} -{name:"Elite void knight top", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 45.0, 45.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19785} -{name:"Elite void knight robe", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19786} -{name:"Elite void knight top", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 45.0, 45.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19787} -{name:"Elite void knight robe", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19788} -{name:"Elite void knight top", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 45.0, 45.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19789} -{name:"Elite void knight robe", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19790} -{name:"Book of equilibrium", itemDescription:"The secrets of Void Knight combat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19791} -{name:"Security block", itemDescription:"A section of the Black Knights' security system.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19792} -{name:"Broken security block", itemDescription:"A shattered section of the Black Knights' security system.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19793} -{name:"Key block labelled 2", itemDescription:"A stamped block of metal from a box marked 2", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19794} -{name:"Key block labelled 3", itemDescription:"A stamped block of metal from a box marked 3", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19795} -{name:"Key block labelled 4", itemDescription:"A stamped block of metal from a box marked 4", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19796} -{name:"Key block labelled 5", itemDescription:"A stamped block of metal from a box marked 5", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19797} -{name:"Key block labelled 6", itemDescription:"A stamped block of metal from a box marked 6", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19798} -{name:"Commorb", itemDescription:"A Temple Knight Communication Orb. Top Secret! / Use this to stay in touch with Korasi and Jessika. (A Void Dance version) / Tyr's commorb, given to him by Sir Tiffy. (Tyr's commorb)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19799} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19800} -{name:"Black helm", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19801} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19802} -{name:"Elite void knight torso", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 45.0, 45.0, 45.0, 45.0, 45.0, 45.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19803} -{name:"Elite void knight legs", itemDescription:"Armour worn by Void Knight [Guardians/Justiciars/Executioners].", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 30.0, 30.0, 30.0, 30.0, 30.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19804} -{name:"Sprite lure", itemDescription:"1.0 kg", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19805} -{name:"Sprite lure bag", itemDescription:"A bag for holding the sprite lure in.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19806} -{name:"Sprite lure", itemDescription:"1.0 kg", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19807} -{name:"Yaktwee stick", itemDescription:"A rudimentary tool used to hunt charm sprites.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19808} -{name:"Gold charm slice", itemDescription:"Ethereal slice of a gold charm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19809} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19810} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19811} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19812} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19813} -{name:"Green charm slice", itemDescription:"Ethereal slice of a green charm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19814} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19815} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19816} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19817} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19818} -{name:"Crimson charm slice", itemDescription:"Ethereal slice of a crimson charm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19819} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19820} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19821} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19822} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19823} -{name:"Blue charm slice", itemDescription:"Ethereal slice of a blue charm.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19824} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19825} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19826} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19827} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19828} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19829} -{name:"Sling", itemDescription:"A basic sling to fire projectile at your enemies with.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19830} -{name:"Sling", itemDescription:"A basic sling to fire projectile at your enemies with.", shopValue:20, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19831} -{name:"Bone brooch", itemDescription:"A sinister brooch that screams occasionally.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19832} -{name:"Empty moonshine vial", itemDescription:"A glass vial for storing moonshine.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19833} -{name:"Strained moonshine vial", itemDescription:"A glass vial with leaves to strain liquids over it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19834} -{name:"Unfinished moonshine", itemDescription:"Two more ingredients are needed to finish this moonshine. (Initial item)One more ingredient is needed to finish this moonshine. (After Big bottle of fear has been added)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19835} -{name:"Unfinished moonshine", itemDescription:"Two more ingredients are needed to finish this moonshine. (Initial item)One more ingredient is needed to finish this moonshine. (After Big bottle of fear has been added)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19836} -{name:"Pile of ground bones", itemDescription:"Bones, ground into powder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19837} -{name:"Big bottle of blood", itemDescription:"A big bottle of sparrow blood.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19838} -{name:"Failed moonshine", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19839} -{name:"Pile of evil leaves", itemDescription:"Leaves from an evil tree.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19840} -{name:"Big bottle of fear", itemDescription:"A big bottle of raw fear. Creepy.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19841} -{name:"Moonshine", itemDescription:"A vial of delicious moonshine.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19842} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19843} -{name:"Picture", itemDescription:"A picture of a lady called Elena.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19844} -{name:"Zabeth's autograph", itemDescription:"Grim will be overjoyed to get this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19845} -{name:"Mysterious chronicle (part 25)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19846} -{name:"Mysterious chronicle (part 26)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19847} -{name:"Mysterious chronicle (part 27)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19848} -{name:"Mysterious chronicle (part 28)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19849} -{name:"Mysterious chronicle (part 29)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19850} -{name:"Mysterious chronicle (part 30)", itemDescription:"Who wrote this?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19851} -{name:"Blink's scribblings", itemDescription:"Almost-unintelligible scraps of text.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19852} -{name:"Gulega missive", itemDescription:"Notes back to the gorajo plane from a sachem.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19853} -{name:"Resource requisition orders", itemDescription:"It's covered in goo.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19854} -{name:"Behemoth notes (part 5)", itemDescription:"An unknown mage's notes on the behemoths.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19855} -{name:"Kalgerion notes (part 5)", itemDescription:"An unknown mage's notes on the Kal'Gerion demons.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19856} -{name:"Stalker notes (part 5)", itemDescription:"An unknown mage's notes on the stalkers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19857} -{name:"M. and thok letter (part 9)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19858} -{name:"M. and thok letter (part 10)", itemDescription:"A letter left behind by wandering adventurers.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19859} -{name:"Portal notes", itemDescription:"An unknown mage's notes on portals.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19860} -{name:"Scrap of parchment", itemDescription:"A faded scrap from an old diary of unknown origin.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19861} -{name:"Letter to an acolyte", itemDescription:"A strange letter that doesn't seem to belong here.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19862} -{name:"Letter from brundt", itemDescription:"What's this doing here?", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19863} -{name:"Strange token", itemDescription:"A token that doesn't seem to belong inside Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19864} -{name:"Magical blastbox (b)", itemDescription:"It's brimming with power.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19865} -{name:"Celestial surgebox (b)", itemDescription:"It could explode at any moment.", shopValue:0, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19866} -{name:"Magical blastbox", itemDescription:"It's brimming with power.", shopValue:2000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19867} -{name:"Celestial surgebox", itemDescription:"It could explode at any moment.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19868} -{name:"Blue vial", itemDescription:"A vial of blue-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19869} -{name:"Blue vial", itemDescription:"A vial of blue-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19870} -{name:"Green vial", itemDescription:"A vial of green-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19871} -{name:"Green vial", itemDescription:"A vial of green-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19872} -{name:"Yellow vial", itemDescription:"A vial of yellow-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19873} -{name:"Yellow vial", itemDescription:"A vial of yellow-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19874} -{name:"Violet vial", itemDescription:"A vial of violet-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19875} -{name:"Violet vial", itemDescription:"A vial of violet-coloured liquid.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19876} -{name:"Lump of stone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19877} -{name:"Lump of stone", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19878} -{name:"Antique ring", itemDescription:"It has no real monetary value.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19879} -{name:"Rand ghan ko demon icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19880} -{name:"Rand seeker torn icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19881} -{name:"Rand behemoth devourer icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19882} -{name:"Rand gulega icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19883} -{name:"Rand rammernaught warped icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19884} -{name:"Rand blink icon", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19885} -{name:"Twisted bird skull necklace", itemDescription:"The skull has been horrifically distorted.", shopValue:11500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19886} -{name:"Split dragontooth necklace", itemDescription:"Considering where it came from, it is unusually elegant.", shopValue:18500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 11.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19887} -{name:"Demon horn necklace", itemDescription:"Not everyone's first choice for a piece of jewellery.", shopValue:26500, lowAlch:10600, highAlch:15900, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 13.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19888} -{name:"Celestial surgebox", itemDescription:"It could explode at any moment.", shopValue:30000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19889} -{name:"Scroll of cleansing", itemDescription:"An artifact containing untold secrets of Herblore.", shopValue:25000, lowAlch:10000, highAlch:15000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19890} -{name:"Sneakerpeeper", itemDescription:"Isn't it abhor-able? (baby)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19891} -{name:"Amulet of zealots", itemDescription:"The folly of your adventure becomes clear as you wear it.", shopValue:14500, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[2.0, 2.0, 2.0, 2.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, -8.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19892} -{name:"Spirit cape", itemDescription:"A cape attuned to spirits.", shopValue:18000, lowAlch:7200, highAlch:10800, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 3.0, 3.0, 3.0, 3.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19893} -{name:"Sneakerpeeper spawn", itemDescription:"Isn't it abhor-able? (baby)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19894} -{name:"Sneakerpeeper", itemDescription:"Isn't it abhor-able? (baby)", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19895} -{name:"Kinship ring", itemDescription:"This ties you to your allies and enables party configuration in Daemonheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19896} -{name:"Erzille seed", itemDescription:"Plant in a vine herb patch.", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19897} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19898} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19899} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19900} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19901} -{name:"Ugune seed", itemDescription:"Plant in a vine herb patch.", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19902} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19903} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19904} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19905} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19906} -{name:"Argway seed", itemDescription:"Plant in a vine herb patch.", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19907} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19908} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19909} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19910} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19911} -{name:"Shengo seed", itemDescription:"Plant in a vine herb patch.", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19912} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19913} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19914} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19915} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19916} -{name:"Samaden seed", itemDescription:"Plant in a vine herb patch.", shopValue:64, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19917} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19918} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19919} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19920} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19921} -{name:"Red blossom seed", itemDescription:"Plant in a vine flower patch.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19922} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19923} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19924} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19925} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19926} -{name:"Blue blossom seed", itemDescription:"Plant in a vine flower patch.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19927} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19928} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19929} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19930} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19931} -{name:"Green blossom seed", itemDescription:"Plant in a vine flower patch.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19932} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19933} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19934} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19935} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19936} -{name:"Lergberry seed", itemDescription:"", shopValue:9, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19937} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19938} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19939} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19940} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19941} -{name:"Kalferberry seed", itemDescription:"", shopValue:9, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19942} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19943} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19944} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19945} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19946} -{name:"Raw baron shark", itemDescription:"A hearty meal when cooked.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19947} -{name:"Baron shark", itemDescription:"Shimming with Juju magic.", shopValue:300, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19948} -{name:"Juju gumbo", itemDescription:"A strange stew.", shopValue:20, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19949} -{name:"Strange potato", itemDescription:"Oddly seasoned and wriggling.", shopValue:4, lowAlch:0, highAlch:2, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19950} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19951} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19952} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19953} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19954} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19955} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19956} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19957} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19958} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19959} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19960} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19961} -{name:"Red vine blossom", itemDescription:"A beautiful vine blossom.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19962} -{name:"Blue vine blossom", itemDescription:"A beautiful vine blossom.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19963} -{name:"Green vine blossom", itemDescription:"A beautiful vine blossom.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19964} -{name:"Marasamaw plant", itemDescription:"Used to trap jadinkos.", shopValue:38, lowAlch:15, highAlch:22, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19965} -{name:"Marasamaw plant", itemDescription:"Used to trap jadinkos.", shopValue:38, lowAlch:15, highAlch:22, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19966} -{name:"Juju teleport spiritbag", itemDescription:"A small bag that carries a teleport spell within it.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19967} -{name:"Juju teleport spiritbag", itemDescription:"A small bag that carries a teleport spell within it.", shopValue:2000, lowAlch:800, highAlch:1200, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19968} -{name:"Lergberries", itemDescription:"Berries grown from vine plants.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19969} -{name:"Kalferberries", itemDescription:"Berries grown from vine plants.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19970} -{name:"Withered vine", itemDescription:"Jadinkos seem to find this vine tasty.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19971} -{name:"Oily vine", itemDescription:"An oily vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19972} -{name:"Draconic vine", itemDescription:"A scaled vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19973} -{name:"Pungent vine", itemDescription:"A smelly vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19974} -{name:"Plant teeth", itemDescription:"Teeth from a plant?", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19975} -{name:"Aquatic vine", itemDescription:"A wet vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19976} -{name:"Shadow vine", itemDescription:"A shaded vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19977} -{name:"Striped vine", itemDescription:"A striped vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19978} -{name:"Corrupt vine", itemDescription:"A corrupted vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19979} -{name:"Marble vine", itemDescription:"A stone vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19980} -{name:"Saradomin vine", itemDescription:"A pure vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19981} -{name:"Guthix vine", itemDescription:"A soothing vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19982} -{name:"Zamorak vine", itemDescription:"A sinister vine from a jadinko.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19983} -{name:"Grimy erzille", itemDescription:"Needs to be cleaned before it can be used.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19984} -{name:"Grimy argway", itemDescription:"Needs to be cleaned before it can be used.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19985} -{name:"Grimy ugune", itemDescription:"Needs to be cleaned before it can be used.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19986} -{name:"Grimy shengo", itemDescription:"Needs to be cleaned before it can be used.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19987} -{name:"Grimy samaden", itemDescription:"Needs to be cleaned before it can be used.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19988} -{name:"Clean erzille", itemDescription:"An unnatural herb.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19989} -{name:"Clean argway", itemDescription:"An unnatural herb.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19990} -{name:"Clean ugune", itemDescription:"An unnatural herb.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19991} -{name:"Clean shengo", itemDescription:"An unnatural herb.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19992} -{name:"Clean samaden", itemDescription:"An unnatural herb.", shopValue:3, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19993} -{name:"Juju vial of water", itemDescription:"A juju vial with water inside.", shopValue:10, lowAlch:4, highAlch:6, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19994} -{name:"Juju vial of water", itemDescription:"A juju vial with water inside.", shopValue:10, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19995} -{name:"Juju vial", itemDescription:"An empty, glass juju vial.", shopValue:5, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19996} -{name:"Juju vial", itemDescription:"An empty, glass juju vial.", shopValue:5, lowAlch:2, highAlch:3, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19997} -{name:"Erzille potion (unf)", itemDescription:"Water mixed with erzille herbs.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19998} -{name:"Ugune potion (unf)", itemDescription:"Water mixed with ugune herbs.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:19999} -{name:"Argway potion (unf)", itemDescription:"Water mixed with argway herbs.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20000} -{name:"Shengo potion (unf)", itemDescription:"Water mixed with shengo herbs.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20001} -{name:"Samaden potion (unf)", itemDescription:"Water mixed with samaden herbs.", shopValue:50, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20002} -{name:"Juju mining potion (4)", itemDescription:"X doses of juju mining potion.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20003} -{name:"Juju mining potion (3)", itemDescription:"X doses of juju mining potion.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20004} -{name:"Juju mining potion (2)", itemDescription:"X doses of juju mining potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20005} -{name:"Juju mining potion (1)", itemDescription:"X doses of juju mining potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20006} -{name:"Juju cooking potion (4)", itemDescription:"X doses of juju cooking potion.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20007} -{name:"Juju cooking potion (3)", itemDescription:"X doses of juju cooking potion.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20008} -{name:"Juju cooking potion (2)", itemDescription:"X doses of juju cooking potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20009} -{name:"Juju cooking potion (1)", itemDescription:"X doses of juju cooking potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20010} -{name:"Juju farming potion (4)", itemDescription:"X doses of juju farming potion.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20011} -{name:"Juju farming potion (3)", itemDescription:"X doses of juju farming potion.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20012} -{name:"Juju farming potion (2)", itemDescription:"X doses of juju farming potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20013} -{name:"Juju farming potion (1)", itemDescription:"X doses of juju farming potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20014} -{name:"Juju woodcutting potion (4)", itemDescription:"X doses of juju woodcutting potion.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20015} -{name:"Juju woodcutting potion (3)", itemDescription:"X doses of juju woodcutting potion.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20016} -{name:"Juju woodcutting potion (2)", itemDescription:"X doses of juju woodcutting potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20017} -{name:"Juju woodcutting potion (1)", itemDescription:"X doses of juju woodcutting potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20018} -{name:"Juju fishing potion (4)", itemDescription:"X doses of juju fishing potion.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20019} -{name:"Juju fishing potion (3)", itemDescription:"X doses of juju fishing potion.", shopValue:300, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20020} -{name:"Juju fishing potion (2)", itemDescription:"X doses of juju fishing potion.", shopValue:200, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20021} -{name:"Juju fishing potion (1)", itemDescription:"X doses of juju fishing potion.", shopValue:100, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20022} -{name:"Juju hunter potion (4)", itemDescription:"X doses of juju hunter potion.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20023} -{name:"Juju hunter potion (3)", itemDescription:"X doses of juju hunter potion.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20024} -{name:"Juju hunter potion (2)", itemDescription:"X doses of juju hunter potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20025} -{name:"Juju hunter potion (1)", itemDescription:"X doses of juju hunter potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20026} -{name:"Scentless potion (4)", itemDescription:"X doses of scentless potion.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20027} -{name:"Scentless potion (3)", itemDescription:"X doses of scentless potion.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20028} -{name:"Scentless potion (2)", itemDescription:"X doses of scentless potion.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20029} -{name:"Scentless potion (1)", itemDescription:"X doses of scentless potion.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20030} -{name:"Saradomin's blessing (4)", itemDescription:"X doses of Saradomin's blessing.", shopValue:400, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20031} -{name:"Saradomin's blessing (3)", itemDescription:"X doses of Saradomin's blessing.", shopValue:300, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20032} -{name:"Saradomin's blessing (2)", itemDescription:"X doses of Saradomin's blessing.", shopValue:200, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20033} -{name:"Saradomin's blessing (1)", itemDescription:"X doses of Saradomin's blessing.", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20034} -{name:"Guthix's gift (4)", itemDescription:"X doses of Guthix's gift.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20035} -{name:"Guthix's gift (3)", itemDescription:"X doses of Guthix's gift.", shopValue:300, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20036} -{name:"Guthix's gift (2)", itemDescription:"X doses of Guthix's gift.", shopValue:200, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20037} -{name:"Guthix's gift (1)", itemDescription:"X doses of Guthix's gift.", shopValue:100, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20038} -{name:"Zamorak's favour (4)", itemDescription:"X doses of Zamorak's favour.", shopValue:400, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20039} -{name:"Zamorak's favour (3)", itemDescription:"X doses of Zamorak's favour.", shopValue:300, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20040} -{name:"Zamorak's favour (2)", itemDescription:"X doses of Zamorak's favour.", shopValue:200, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20041} -{name:"Zamorak's favour (1)", itemDescription:"X doses of Zamorak's favour.", shopValue:100, lowAlch:160, highAlch:240, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20042} -{name:"Juju hunter potion (4)", itemDescription:"X doses of juju hunter potion.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20043} -{name:"Witchdoctor robes", itemDescription:"Camouflage for the herblore habitat.", shopValue:9000, lowAlch:3600, highAlch:5400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20044} -{name:"Witchdoctor legs", itemDescription:"Camouflage for the herblore habitat.", shopValue:9000, lowAlch:3600, highAlch:5400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20045} -{name:"Witchdoctor mask", itemDescription:"Camouflage for the herblore habitat.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20046} -{name:"Juju vial pack", itemDescription:"A pack of 50 noted vials.", shopValue:500, lowAlch:100, highAlch:150, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20047} -{name:"Witchdoctor robes", itemDescription:"Camouflage for the herblore habitat.", shopValue:9000, lowAlch:3600, highAlch:5400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 15.0, 19.0, 0.0, 12.0, 20.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20048} -{name:"Witchdoctor legs", itemDescription:"Camouflage for the herblore habitat.", shopValue:9000, lowAlch:3600, highAlch:5400, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, -7.0, 11.0, 10.0, 10.0, 0.0, 10.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20049} -{name:"Witchdoctor mask", itemDescription:"Camouflage for the herblore habitat.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, -1.0, 4.0, 5.0, 3.0, 0.0, 4.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20050} -{name:"null", itemDescription:"It's a null.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20051} -{name:"Clay ring (unfired)", itemDescription:"I need to fire this in a pottery oven.", shopValue:55, lowAlch:22, highAlch:33, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20052} -{name:"Clay ring", itemDescription:"I can have this blessed by a priest.", shopValue:140, lowAlch:56, highAlch:84, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20053} -{name:"Ring of devotion", itemDescription:"This ring is dedicated to Saradomin.", shopValue:200, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20054} -{name:"Clay ring (unfired)", itemDescription:"I need to fire this in a pottery oven.", shopValue:55, lowAlch:22, highAlch:33, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20055} -{name:"Clay ring", itemDescription:"I can have this blessed by a priest.", shopValue:140, lowAlch:56, highAlch:84, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20056} -{name:"Chimp ice", itemDescription:"Mmm, this looks tasty.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20057} -{name:"Chocolatey goop", itemDescription:"A sticky mess of chocolate.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20058} -{name:"Barrel of monkeys", itemDescription:"A squealing, rocking barrel of simians.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20059} -{name:"Monkey knife", itemDescription:"A small knife, perfect for a monkey.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20060} -{name:"Metal crate", itemDescription:"A large, metal crate.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20061} -{name:"Economy building for dummies", itemDescription:"A small book that teaches strong economy building.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20062} -{name:"Bundle of carpets", itemDescription:"This bundle of magic carpets is an entrepreneur's dream.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20063} -{name:"Cramulet", itemDescription:"See table", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20064} -{name:"Cramulet", itemDescription:"See table", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20065} -{name:"Cramulet", itemDescription:"See table", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20066} -{name:"Cramulet", itemDescription:"See table", shopValue:100, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20067} -{name:"Ava's alerter", itemDescription:"A superior bagged chicken with a magnet in its claw, ready to serve and detect.", shopValue:1000, lowAlch:400, highAlch:600, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 5.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20068} -{name:"Green banana", itemDescription:"A nearly ripe banana.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20069} -{name:"Cyclopean helmet", itemDescription:"Eye see you.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20070} -{name:"Cyclopean helmet", itemDescription:"Eye see you.", shopValue:3000, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:31.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20071} -{name:"Dragon defender", itemDescription:"A defensive weapon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[25.0, 24.0, 23.0, -3.0, -2.0, 25.0, 24.0, 23.0, -3.0, -2.0, 10.0, 0.0, 0.0, 0.0, 6.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20072} -{name:"Thorvar's bucket", itemDescription:" A bucket containing an extremely dangerous creature", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20073} -{name:"Thorvar's bucket", itemDescription:" A bucket containing an extremely dangerous creature", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20074} -{name:"Thorvar's bag", itemDescription:"A large bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20075} -{name:"Thorvar's bag", itemDescription:"A large bag.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20076} -{name:"Salty claws hat", itemDescription:"A crab in a hat.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20077} -{name:"Heimland games souvenir", itemDescription:"A gift from Thorvar Crittersmash.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20078} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20079} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20080} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20081} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20082} -{name:"Golden cracker", itemDescription:"A cracker to commemorate the winning of the Golden Joystick.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20083} -{name:"Golden hammer", itemDescription:"Celebrating the Golden Joystick awards for Jagex.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20084} -{name:"Miner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20085} -{name:"Miner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20086} -{name:"Miner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20087} -{name:"Miner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20088} -{name:"Miner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20089} -{name:"Miner", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20090} -{name:"Big rock", itemDescription:"A big rock.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20091} -{name:"Veldaban", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20092} -{name:"Pretty flower", itemDescription:"How pretty!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20093} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20094} -{name:"null", itemDescription:"It's a null.", shopValue:40, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20095} -{name:"Keldagrim library key", itemDescription:"A key to the Keldagrim Library display case.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20096} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20097} -{name:"Keldagrim key mould 1", itemDescription:"A mould of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20098} -{name:"Keldagrim key mould 2", itemDescription:"A mould of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20099} -{name:"Keldagrim key mould 3", itemDescription:"A mould of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20100} -{name:"Keldagrim key mould 4", itemDescription:"A mould of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20101} -{name:"Keldagrim key mould 5", itemDescription:"A mould of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20102} -{name:"Keldagrim key mould 6", itemDescription:"A mould of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20103} -{name:"Keldagrim key 1", itemDescription:"A duplicate of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20104} -{name:"Keldagrim key 2", itemDescription:"A duplicate of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20105} -{name:"Keldagrim key 3", itemDescription:"A duplicate of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20106} -{name:"Keldagrim key 4", itemDescription:"A duplicate of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20107} -{name:"Keldagrim key 5", itemDescription:"A duplicate of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20108} -{name:"Keldagrim key 6", itemDescription:"A duplicate of one of the six keys to Keldagrim's records chamber.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20109} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20110} -{name:"10th anniversary cake", itemDescription:" Put some 10th Anniversary candles on it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20111} -{name:"10th anniversary cake", itemDescription:" Put some 10th Anniversary candles on it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20112} -{name:"10th anniversary cake", itemDescription:" Put some 10th Anniversary candles on it.", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20113} -{name:"10th anniversary candles", itemDescription:"Put 10 of these on a 10th Anniversary cake.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20114} -{name:"Ancient ceremonial hood", itemDescription:"A ceremonial mask dedicated to an ancient god.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20115} -{name:"Ancient ceremonial top", itemDescription:"The top half of ceremonial robes dedicated to an ancient god.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20116} -{name:"Ancient ceremonial legs", itemDescription:"The bottom half of ceremonial robes dedicated to an ancient god.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20117} -{name:"Ancient ceremonial gloves", itemDescription:"Ceremonial gloves dedicated to an ancient god.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20118} -{name:"Ancient ceremonial boots", itemDescription:"Ceremonial boots dedicated to an ancient god.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20119} -{name:"Frozen key", itemDescription:"A small, cold key.", shopValue:20000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20120} -{name:"Frozen key piece (armadyl)", itemDescription:"One of the four parts of a mysterious frozen key.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20121} -{name:"Frozen key piece (bandos)", itemDescription:"One of the four parts of a mysterious frozen key.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20122} -{name:"Frozen key piece (zamorak)", itemDescription:"One of the four parts of a mysterious frozen key.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20123} -{name:"Frozen key piece (saradomin)", itemDescription:"One of the four parts of a mysterious frozen key.", shopValue:10000, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20124} -{name:"Ancient ceremonial mask", itemDescription:"A ceremonial mask dedicated to an ancient god.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20125} -{name:"Ancient ceremonial mask", itemDescription:"A ceremonial mask dedicated to an ancient god.", shopValue:15000, lowAlch:6000, highAlch:9000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20126} -{name:"Ancient ceremonial top", itemDescription:"The top half of ceremonial robes dedicated to an ancient god.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20127} -{name:"Ancient ceremonial top", itemDescription:"The top half of ceremonial robes dedicated to an ancient god.", shopValue:120000, lowAlch:48000, highAlch:72000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20128} -{name:"Ancient ceremonial legs", itemDescription:"The bottom half of ceremonial robes dedicated to an ancient god.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20129} -{name:"Ancient ceremonial legs", itemDescription:"The bottom half of ceremonial robes dedicated to an ancient god.", shopValue:80000, lowAlch:32000, highAlch:48000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20130} -{name:"Ancient ceremonial gloves", itemDescription:"Ceremonial gloves dedicated to an ancient god.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20131} -{name:"Ancient ceremonial gloves", itemDescription:"Ceremonial gloves dedicated to an ancient god.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20132} -{name:"Ancient ceremonial boots", itemDescription:"Ceremonial boots dedicated to an ancient god.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20133} -{name:"Ancient ceremonial boots", itemDescription:"Ceremonial boots dedicated to an ancient god.", shopValue:10000, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20134} -{name:"Torva full helm", itemDescription:"An ancient warrior's full helm.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -7.0, -3.0, 68.0, 73.0, 65.0, -2.0, 74.0, 17.0, 3.0, 0.0, 6.0, 3.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20135} -{name:"Torva full helm", itemDescription:"An ancient warrior's full helm.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, -7.0, -3.0, 68.0, 73.0, 65.0, -2.0, 74.0, 17.0, 3.0, 0.0, 6.0, 3.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20136} -{name:"Torva full helm", itemDescription:"An ancient warrior's full helm.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -7.0, -3.0, 68.0, 73.0, 65.0, -2.0, 74.0, 17.0, 3.0, 0.0, 6.0, 3.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20137} -{name:"Torva full helm (broken)", itemDescription:"An ancient warrior's full helm.", shopValue:390000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, -7.0, -3.0, 68.0, 73.0, 65.0, -2.0, 74.0, 17.0, 3.0, 0.0, 6.0, 3.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20138} -{name:"Torva platebody", itemDescription:"An Ancient warrior's Platebody.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -31.0, -11.0, 156.0, 140.0, 120.0, -10.0, 160.0, 65.0, 6.0, 0.0, 12.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20139} -{name:"Torva platebody", itemDescription:"An Ancient warrior's Platebody.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:9.0, bonuses:[0.0, 0.0, 0.0, -31.0, -11.0, 156.0, 140.0, 120.0, -10.0, 160.0, 65.0, 6.0, 0.0, 12.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20140} -{name:"Torva platebody", itemDescription:"An Ancient warrior's Platebody.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -31.0, -11.0, 156.0, 140.0, 120.0, -10.0, 160.0, 65.0, 6.0, 0.0, 12.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20141} -{name:"Torva platebody (broken)", itemDescription:"An Ancient warrior's Platebody.", shopValue:490000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, -31.0, -11.0, 156.0, 140.0, 120.0, -10.0, 160.0, 65.0, 6.0, 0.0, 12.0, 4.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20142} -{name:"Torva platelegs", itemDescription:"An ancient warrior's platelegs.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -8.0, 112.0, 100.0, 95.0, -5.0, 125.0, 65.0, 4.0, 0.0, 8.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20143} -{name:"Torva platelegs", itemDescription:"An ancient warrior's platelegs.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -8.0, 112.0, 100.0, 95.0, -5.0, 125.0, 65.0, 4.0, 0.0, 8.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20144} -{name:"Torva platelegs", itemDescription:"An ancient warrior's platelegs.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -8.0, 112.0, 100.0, 95.0, -5.0, 125.0, 65.0, 4.0, 0.0, 8.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20145} -{name:"Torva platelegs (broken)", itemDescription:"An ancient warrior's platelegs.", shopValue:390000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, -21.0, -8.0, 112.0, 100.0, 95.0, -5.0, 125.0, 65.0, 4.0, 0.0, 8.0, 2.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20146} -{name:"Pernix cowl", itemDescription:"An ancient ranger's cowl.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 14.0, 10.0, 10.0, 15.0, 9.0, 13.0, 17.0, 0.0, 6.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20147} -{name:"Pernix cowl", itemDescription:"An ancient ranger's cowl.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:27.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 14.0, 10.0, 10.0, 15.0, 9.0, 13.0, 17.0, 0.0, 6.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20148} -{name:"Pernix cowl", itemDescription:"An ancient ranger's cowl.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 14.0, 10.0, 10.0, 15.0, 9.0, 13.0, 17.0, 0.0, 6.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20149} -{name:"Pernix cowl (broken)", itemDescription:"An ancient ranger's cowl.", shopValue:390000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:27.0, bonuses:[-6.0, -6.0, -6.0, -10.0, 14.0, 10.0, 10.0, 15.0, 9.0, 13.0, 17.0, 0.0, 6.0, 3.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20150} -{name:"Pernix body", itemDescription:"An ancient ranger's body armour.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-8.0, -8.0, -8.0, -15.0, 38.0, 65.0, 50.0, 68.0, 75.0, 60.0, 65.0, 0.0, 12.0, 6.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20151} -{name:"Pernix body", itemDescription:"An ancient ranger's body armour.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[-8.0, -8.0, -8.0, -15.0, 38.0, 65.0, 50.0, 68.0, 75.0, 60.0, 65.0, 0.0, 12.0, 6.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20152} -{name:"Pernix body", itemDescription:"An ancient ranger's body armour.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-8.0, -8.0, -8.0, -15.0, 38.0, 65.0, 50.0, 68.0, 75.0, 60.0, 65.0, 0.0, 12.0, 6.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20153} -{name:"Pernix body (broken)", itemDescription:"An ancient ranger's body armour.", shopValue:490000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[-8.0, -8.0, -8.0, -15.0, 38.0, 65.0, 50.0, 68.0, 75.0, 60.0, 65.0, 0.0, 12.0, 6.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20154} -{name:"Pernix chaps", itemDescription:"An ancient ranger's chaps.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:90.0, bonuses:[-6.0, -6.0, -6.0, -15.0, 25.0, 38.0, 27.0, 40.0, 47.0, 38.0, 32.0, 0.0, 8.0, 4.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20155} -{name:"Pernix chaps", itemDescription:"An ancient ranger's chaps.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:90.0, bonuses:[-6.0, -6.0, -6.0, -15.0, 25.0, 38.0, 27.0, 40.0, 47.0, 38.0, 32.0, 0.0, 8.0, 4.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20156} -{name:"Pernix chaps", itemDescription:"An ancient ranger's chaps.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:90.0, bonuses:[-6.0, -6.0, -6.0, -15.0, 25.0, 38.0, 27.0, 40.0, 47.0, 38.0, 32.0, 0.0, 8.0, 4.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20157} -{name:"Pernix chaps (broken)", itemDescription:"An ancient ranger's chaps.", shopValue:390000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:90.0, bonuses:[-6.0, -6.0, -6.0, -15.0, 25.0, 38.0, 27.0, 40.0, 47.0, 38.0, 32.0, 0.0, 8.0, 4.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20158} -{name:"Virtus mask", itemDescription:"An ancient mage's mask.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 9.0, -3.0, 20.0, 18.0, 20.0, 9.0, -1.0, 17.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20159} -{name:"Virtus mask", itemDescription:"An ancient mage's mask.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 9.0, -3.0, 20.0, 18.0, 20.0, 9.0, -1.0, 17.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20160} -{name:"Virtus mask", itemDescription:"An ancient mage's mask.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 9.0, -3.0, 20.0, 18.0, 20.0, 9.0, -1.0, 17.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20161} -{name:"Virtus mask (broken)", itemDescription:"An ancient mage's mask.", shopValue:390000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 9.0, -3.0, 20.0, 18.0, 20.0, 9.0, -1.0, 17.0, 6.0, 3.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20162} -{name:"Virtus robe top", itemDescription:"An ancient mage's robe top.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 36.0, -11.0, 63.0, 50.0, 70.0, 36.0, 0.0, 65.0, 12.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20163} -{name:"Virtus robe top", itemDescription:"An ancient mage's robe top.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 36.0, -11.0, 63.0, 50.0, 70.0, 36.0, 0.0, 65.0, 12.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20164} -{name:"Virtus robe top", itemDescription:"An ancient mage's robe top.", shopValue:500000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 36.0, -11.0, 63.0, 50.0, 70.0, 36.0, 0.0, 65.0, 12.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20165} -{name:"Virtus robe top (broken)", itemDescription:"An ancient mage's robe top.", shopValue:490000, lowAlch:200000, highAlch:300000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 36.0, -11.0, 63.0, 50.0, 70.0, 36.0, 0.0, 65.0, 12.0, 6.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20166} -{name:"Virtus robe legs", itemDescription:"An ancient mage's robe legs.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 26.0, -8.0, 38.0, 40.0, 40.0, 26.0, 0.0, 32.0, 8.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20167} -{name:"Virtus robe legs", itemDescription:"An ancient mage's robe legs.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 26.0, -8.0, 38.0, 40.0, 40.0, 26.0, 0.0, 32.0, 8.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20168} -{name:"Virtus robe legs", itemDescription:"An ancient mage's robe legs.", shopValue:400000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 26.0, -8.0, 38.0, 40.0, 40.0, 26.0, 0.0, 32.0, 8.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20169} -{name:"Virtus robe legs (broken)", itemDescription:"An ancient mage's robe legs.", shopValue:390000, lowAlch:160000, highAlch:240000, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 26.0, -8.0, 38.0, 40.0, 40.0, 26.0, 0.0, 32.0, 8.0, 4.0, 0.0, 0.0, 0.0, 1.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20170} -{name:"Zaryte bow", itemDescription:"A powerful bow imbued with the fury of Zaros.", shopValue:900000, lowAlch:360000, highAlch:540000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20171} -{name:"Zaryte bow", itemDescription:"A powerful bow imbued with the fury of Zaros.", shopValue:900000, lowAlch:360000, highAlch:540000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20172} -{name:"Zaryte bow", itemDescription:"A powerful bow imbued with the fury of Zaros.", shopValue:900000, lowAlch:360000, highAlch:540000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20173} -{name:"Zaryte bow (broken)", itemDescription:"A powerful bow imbued with the fury of Zaros.", shopValue:890000, lowAlch:360000, highAlch:540000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 120.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 115.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20174} -{name:"Trollheim tablet", itemDescription:"A Teleport to House tablet that has been redirected to Trollheim.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20175} -{name:"Miner's diary", itemDescription:"An extract from the diary of an old dwarven miner.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20176} -{name:"Hati head", itemDescription:"A hat made from the head of a legendary wolf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20177} -{name:"Hati paws", itemDescription:"Powerful gloves made from the paws of a legendary wolf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20178} -{name:"Celebration cake", itemDescription:"It's time to celebrate! (lit) Light the candles. (unlit) or Put some celebration candles on it. (no candles)", shopValue:150, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20179} -{name:"Celebration candles", itemDescription:"Put 10 of these on a celebration cake.", shopValue:15, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20180} -{name:"Celebration cake", itemDescription:"It's time to celebrate! (lit) Light the candles. (unlit) or Put some celebration candles on it. (no candles)", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20181} -{name:"Celebration cake", itemDescription:"It's time to celebrate! (lit) Light the candles. (unlit) or Put some celebration candles on it. (no candles)", shopValue:250, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20182} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20183} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20184} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20185} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20186} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20187} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20188} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20189} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20190} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20191} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20192} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20193} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20194} -{name:"Bandana and eyepatches", itemDescription:"A (colour) bandana and a patch for both eyes.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20195} -{name:"Double eyepatches", itemDescription:"It's dark, and I'm wearing two patches. Hit it!", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20196} -{name:"Pirate hat and eyepatches", itemDescription:"Two patches and a hat.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20197} -{name:"Pirate hat and eyepatch", itemDescription:"A hat and a patch.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20198} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20199} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20200} -{name:"Bandana and eyepatch", itemDescription:"A (colour) bandana and a patch for the right eye.", shopValue:100, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20201} -{name:"To page 3", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20202} -{name:"To page 2", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20203} -{name:"To page 1", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20204} -{name:"Celebration cake", itemDescription:"It's time to celebrate! (lit) Light the candles. (unlit) or Put some celebration candles on it. (no candles)", shopValue:150, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20205} -{name:"Celebration cake", itemDescription:"It's time to celebrate! (lit) Light the candles. (unlit) or Put some celebration candles on it. (no candles)", shopValue:250, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20206} -{name:"Celebration cake", itemDescription:"It's time to celebrate! (lit) Light the candles. (unlit) or Put some celebration candles on it. (no candles)", shopValue:250, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20207} -{name:"Group gatestone", itemDescription:"All members of the party can teleport to this stone from the group gatestone portal.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20208} -{name:"Minute crystal seed", itemDescription:"This minute crystal seed looks grey and dead.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20209} -{name:"Clear circle", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20210} -{name:"Red circle", itemDescription:"A red circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20211} -{name:"Orange circle", itemDescription:"An orange circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20212} -{name:"Yellow circle", itemDescription:"A yellow circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20213} -{name:"Green circle", itemDescription:"A green circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20214} -{name:"Blue circle", itemDescription:"A blue circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20215} -{name:"Indigo circle", itemDescription:"An indigo circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20216} -{name:"Violet circle", itemDescription:"A violet circular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20217} -{name:"Clear almond", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20218} -{name:"Red almond", itemDescription:"It's a red crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20219} -{name:"Orange almond", itemDescription:"It's an orange crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20220} -{name:"Yellow almond", itemDescription:"It's a yellow crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20221} -{name:"Green almond", itemDescription:"It's a green crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20222} -{name:"Blue almond", itemDescription:"It's a blue crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20223} -{name:"Indigo almond", itemDescription:"It's an indigo crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20224} -{name:"Violet almond", itemDescription:"It's a violet crystal almond.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20225} -{name:"Clear triangle", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20226} -{name:"Red triangle", itemDescription:"A red triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20227} -{name:"Orange triangle", itemDescription:"An orange triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20228} -{name:"Yellow triangle", itemDescription:"A yellow triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20229} -{name:"Green triangle", itemDescription:"A green triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20230} -{name:"Blue triangle", itemDescription:"A blue triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20231} -{name:"Indigo triangle", itemDescription:"An indigo triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20232} -{name:"Violet triangle", itemDescription:"A violet triangular crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20233} -{name:"Clear square", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20234} -{name:"Red square", itemDescription:"A red square-shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20235} -{name:"Orange square", itemDescription:"An orange square-shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20236} -{name:"Yellow square", itemDescription:"A yellow square-shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20237} -{name:"Green square", itemDescription:"A green square shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20238} -{name:"Blue square", itemDescription:"A blue square shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20239} -{name:"Indigo square", itemDescription:"An indigo square shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20240} -{name:"Violet square", itemDescription:"A violet square-shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20241} -{name:"Clear pentagon", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20242} -{name:"Red pentagon", itemDescription:"A red pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20243} -{name:"Orange pentagon", itemDescription:"An orange pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20244} -{name:"Yellow pentagon", itemDescription:"A yellow pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20245} -{name:"Green pentagon", itemDescription:"A green pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20246} -{name:"Blue pentagon", itemDescription:"A blue pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20247} -{name:"Indigo pentagon", itemDescription:"An indigo pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20248} -{name:"Violet pentagon", itemDescription:"A violet pentagon shaped crystalline disc.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20249} -{name:"Clear hexagon", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20250} -{name:"Red hexagon", itemDescription:"It's a red crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20251} -{name:"Orange hexagon", itemDescription:"It's an orange crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20252} -{name:"Yellow hexagon", itemDescription:"It's a yellow crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20253} -{name:"Green hexagon", itemDescription:"It's a green crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20254} -{name:"Blue hexagon", itemDescription:"It's a blue crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20255} -{name:"Indigo hexagon", itemDescription:"It's an indigo crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20256} -{name:"Violet hexagon", itemDescription:"It's a violet crystal hexagon.", shopValue:1, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20257} -{name:"A handwritten book", itemDescription:"", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20258} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20259} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20260} -{name:"Golrana", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20261} -{name:"Golrana", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20262} -{name:"Bolrie", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20263} -{name:"Impious ashes", itemDescription:"A heap of ashes from a demon minion.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20264} -{name:"Impious ashes", itemDescription:"A heap of ashes from a demon minion.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20265} -{name:"Accursed ashes", itemDescription:"A heap of ashes from a demon footsoldier.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20266} -{name:"Accursed ashes", itemDescription:"A heap of ashes from a demon footsoldier.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20267} -{name:"Infernal ashes", itemDescription:"A heap of ashes from an arch demon.", shopValue:2, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20268} -{name:"Infernal ashes", itemDescription:"A heap of ashes from an arch demon.", shopValue:2, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20269} -{name:"A?a?", itemDescription:"", shopValue:1, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20270} -{name:"Cracked smelting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20271} -{name:"Cracked smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:50, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20272} -{name:"Cracked smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:50, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20273} -{name:"Cracked smelting urn (r)", itemDescription:"This will collect metal scraps when I smelt bars at Smithing level 1.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20274} -{name:"Cracked smelting urn", itemDescription:"This will collect metal scraps when I smelt bars at Smithing level 1.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20275} -{name:"Cracked smelting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20276} -{name:"Fragile smelting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20277} -{name:"Fragile smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:160, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20278} -{name:"Fragile smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:160, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20279} -{name:"Fragile smelting urn (r)", itemDescription:"This will collect metal scraps when I smelt bars at or below Smithing level 20.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20280} -{name:"Fragile smelting urn", itemDescription:"This will collect metal scraps when I smelt bars at or below Smithing level 20.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20281} -{name:"Fragile smelting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20282} -{name:"Smelting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20283} -{name:"Smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:210, lowAlch:84, highAlch:126, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20284} -{name:"Smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:210, lowAlch:84, highAlch:126, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20285} -{name:"Smelting urn (r)", itemDescription:"This will collect metal scraps when I smelt bars at or below Smithing level 50.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20286} -{name:"Smelting urn", itemDescription:"This will collect metal scraps when I smelt bars at or below Smith level 50.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20287} -{name:"Smelting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20288} -{name:"Strong smelting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20289} -{name:"Strong smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:280, lowAlch:112, highAlch:168, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20290} -{name:"Strong smelting urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:280, lowAlch:112, highAlch:168, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20291} -{name:"Strong smelting urn (r)", itemDescription:"This will collect metal scraps when I smelt bars at or below Smithing level 85.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong smelting urn", itemDescription:"This will collect metal scraps when I smelt bars at or below Smith level 85.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:20293} -{name:"Strong smelting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked woodcutting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:116, lowAlch:20, highAlch:30, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:116, lowAlch:20, highAlch:30, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked woodcutting urn (r)", itemDescription:"This will collect woodchips when I chop wood at or below Woodcutting level 10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked woodcutting urn", itemDescription:"This is collecting woodchips when I chop wood at or below Woodcutting level 10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked woodcutting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile woodcutting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:147, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:147, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile woodcutting urn (r)", itemDescription:"This will collect woodchips when I chop wood at or below Woodcutting level 35.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile woodcutting urn", itemDescription:"This is collecting woodchips when I chop wood at or below Woodcutting level 35.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile woodcutting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Woodcutting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:64, lowAlch:100, highAlch:150, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:64, lowAlch:100, highAlch:150, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Woodcutting urn (r)", itemDescription:"This will collect woodchips when I chop wood at or below Woodcutting level 58.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Woodcutting urn", itemDescription:"This is collecting woodchips when I chop wood at or below Woodcutting level 58.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Woodcutting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong woodcutting urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:448, lowAlch:136, highAlch:204, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong woodcutting urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:448, lowAlch:136, highAlch:204, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong woodcutting urn (r)", itemDescription:"This will collect woodchips when I chop wood at or below Woodcutting level 75.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong woodcutting urn", itemDescription:"This is collecting woodchips when I chop wood at or below Woodcutting level 75.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong woodcutting urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked fishing urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:115, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:115, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked fishing urn (r)", itemDescription:"This will collect guppies when I catch fish at or below Fishing level 10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked fishing urn", itemDescription:"This is collecting guppies when I catch fish at or below Fishing level 10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked fishing urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile fishing urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:129, lowAlch:48, highAlch:72, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:129, lowAlch:48, highAlch:72, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile fishing urn (r)", itemDescription:"This will collect guppies when I catch fish at or below Fishing level 30.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile fishing urn", itemDescription:"This is collecting guppies when I catch fish at or below Fishing level 30.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile fishing urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fishing urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:226, lowAlch:96, highAlch:144, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:226, lowAlch:96, highAlch:144, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fishing urn (r)", itemDescription:"This will collect guppies when I catch fish at or below Fishing level 50.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fishing urn", itemDescription:"This is collecting guppies when I catch fish at or below Fishing level 50.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fishing urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong fishing urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:378, lowAlch:120, highAlch:180, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:378, lowAlch:120, highAlch:180, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong fishing urn (r)", itemDescription:"This will collect guppies when I catch fish at or below Fishing level 70.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong fishing urn", itemDescription:"This is collecting guppies when I catch fish at or below Fishing level 70.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong fishing urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated fishing urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:724, lowAlch:164, highAlch:246, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated fishing urn (nr)", itemDescription:"This needs a water rune to become active.", shopValue:724, lowAlch:164, highAlch:246, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated fishing urn (r)", itemDescription:"This will collect guppies when I catch fish at or below Fishing level 96.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated fishing urn", itemDescription:"This is collecting guppies when I catch fish at or below Fishing level 96.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated fishing urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked cooking urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:84, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:84, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked cooking urn (r)", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked cooking urn", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 10.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked cooking urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile cooking urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:101, lowAlch:40, highAlch:60, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:101, lowAlch:40, highAlch:60, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile cooking urn (r)", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 25.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile cooking urn", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 25.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile cooking urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cooking urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:301, lowAlch:88, highAlch:132, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:301, lowAlch:88, highAlch:132, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cooking urn (r)", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 40.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cooking urn", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 40.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cooking urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong cooking urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:520, lowAlch:116, highAlch:174, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:520, lowAlch:116, highAlch:174, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong cooking urn (r)", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 55.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong cooking urn", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 55.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong cooking urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated cooking urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:609, lowAlch:156, highAlch:234, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated cooking urn (nr)", itemDescription:"This needs a fire rune to become active.", shopValue:609, lowAlch:156, highAlch:234, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated cooking urn (r)", itemDescription:"This will collect food scraps when I cook food at or below Cooking level 95.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated cooking urn", itemDescription:"This is collecting food scraps when I cook food at or below Cooking level 95.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated cooking urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked mining urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:65, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:65, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked mining urn (r)", itemDescription:"This will collect ore slivers when I mine ore at Mining level 1.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked mining urn", itemDescription:"This will collect ore slivers when I mine ore at Mining level 1.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cracked mining urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile mining urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:42, lowAlch:64, highAlch:96, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:42, lowAlch:64, highAlch:96, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile mining urn (r)", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 20.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile mining urn", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 20.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fragile mining urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mining urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:304, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:304, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mining urn (r)", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 40.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mining urn", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 40.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mining urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong mining urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:468, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:468, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong mining urn (r)", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 55.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong mining urn", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 55.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Strong mining urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated mining urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:710, lowAlch:128, highAlch:192, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated mining urn (nr)", itemDescription:"This needs an earth rune to become active.", shopValue:710, lowAlch:128, highAlch:192, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated mining urn (r)", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 85.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated mining urn", itemDescription:"This will collect ore slivers when I mine ore at or below Mining level 85.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Decorated mining urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Impious urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Impious urn (nr)", itemDescription:"This needs an air rune to become active.", shopValue:59, lowAlch:16, highAlch:24, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Impious urn (nr)", itemDescription:"This needs an air rune to become active.", shopValue:59, lowAlch:16, highAlch:24, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Impious urn (r)", itemDescription:"This will collect impious ashes when I slay demonic creatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Impious urn", itemDescription:"This will collect impious ashes when I slay demonic creatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Impious urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Accursed urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Accursed urn (nr)", itemDescription:"This needs an air rune to become active.", shopValue:180, lowAlch:72, highAlch:108, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Accursed urn (nr)", itemDescription:"This needs an air rune to become active.", shopValue:180, lowAlch:72, highAlch:108, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Accursed urn (r)", itemDescription:"This will collect impious and accursed ashes when I slay demonic creatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Accursed urn", itemDescription:"This is collecting impious and accursed ashes when I slay demonic creatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Accursed urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infernal urn (unf)", itemDescription:"I need to fire this in a pottery oven.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infernal urn (nr)", itemDescription:"This needs an air rune to become active.", shopValue:261, lowAlch:140, highAlch:210, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infernal urn (nr)", itemDescription:"This needs an air rune to become active.", shopValue:261, lowAlch:140, highAlch:210, isStackable:true, isNoteable:true, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infernal urn (r)", itemDescription:"This will collect impious, accursed and infernal ashes when I slay demonic creatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:133.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infernal urn", itemDescription:"This will collect impious, accursed and infernal ashes when I slay demonic creatures.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Infernal urn (full)", itemDescription:"I can now teleport this urn away.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"null", itemDescription:"It's a null.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Jmod boss", itemDescription:"It's made of pure fire.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fury shark", itemDescription:" Bennath, 169.", shopValue:0, lowAlch:200, highAlch:300, isStackable:false, isNoteable:false, weight:6.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Keyblade", itemDescription:"A key fashioned from a knife!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Notched book", itemDescription:"It's called the 'Book of the Elemental Gloves'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Shabby book", itemDescription:"It's called 'The Book of the Elemental Boots'.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic bar", itemDescription:"An elemental cosmic bar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos bar", itemDescription:"An elemental chaos bar.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Astral token", itemDescription:"An astral token.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:2988, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:2988, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:15900, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos shield", itemDescription:"A shield made in the Elemental Workshop.", shopValue:15900, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 10.0, 0.0, 50.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:3018, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:3018, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:4857, lowAlch:80, highAlch:120, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos helmet", itemDescription:"A helmet made in the Elemental Workshop.", shopValue:4857, lowAlch:80, highAlch:120, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 6.0, 0.0, 8.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic body", itemDescription:"A body made in the Elemental Workshop.", shopValue:6435, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic body", itemDescription:"A body made in the Elemental Workshop.", shopValue:6435, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 30.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos body", itemDescription:"A body made in the Elemental Workshop.", shopValue:4630, lowAlch:1600, highAlch:2400, isStackable:false, isNoteable:false, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos body", itemDescription:"A body made in the Elemental Workshop.", shopValue:4630, lowAlch:1600, highAlch:2400, isStackable:true, isNoteable:true, weight:7.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 25.0, 0.0, 40.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Elemental boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:4918, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Elemental boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:4918, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mind boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:18700, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mind boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:18700, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Body boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:16900, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Body boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:16900, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 5.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:5937, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:5937, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 7.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:1544, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos boots", itemDescription:"Boots made in the Elemental Workshop.", shopValue:1544, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 10.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Elemental gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:4906, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Elemental gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:4906, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mind gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:10700, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mind gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:10700, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Body gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:21300, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Body gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:21300, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 2.0, 0.0, 2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:1484, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cosmic gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:1484, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 3.0, 0.0, 3.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:6587, lowAlch:1200, highAlch:1800, isStackable:false, isNoteable:false, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chaos gloves", itemDescription:"Gloves made in the Elemental Workshop.", shopValue:6587, lowAlch:1200, highAlch:1800, isStackable:true, isNoteable:true, weight:4.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 4.0, 0.0, 4.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon stand", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:903.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon stand", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:903.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannon stand", itemDescription:"The mounting for the multicannon.", shopValue:159314, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon base", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Empty cannon base", itemDescription:"It's missing something.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannon base", itemDescription:"The cannon is built on this.", shopValue:0, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon cog", itemDescription:"A cog from a cannon. It's broken.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannon cog", itemDescription:"A cog from a cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cog mould", itemDescription:"A mould to form cogs for a cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon barrel", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon barrel", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon barrel", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannon barrel", itemDescription:"A working cannon barrel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:32.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken pipe", itemDescription:"A broken pipe that came from a cannon stand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Pipe", itemDescription:"A pipe that belongs in a cannon stand.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Pipe mould", itemDescription:"A mould used to set cannon pipes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannon furnace", itemDescription:"This powers the multicannon.", shopValue:162736, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannon furnace", itemDescription:"This powers the multicannon.", shopValue:162736, lowAlch:75000, highAlch:112500, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken cannon furnace", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Empty fuse box", itemDescription:"It's missing something.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken fuse box", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Fuse box", itemDescription:"A fuse box full of gunpowder.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Broken flint", itemDescription:"It's fallen into disrepair.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Flint", itemDescription:"A repaired flint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannonball", itemDescription:"Ammo for the Dwarf Cannon.", shopValue:421, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannonball mould", itemDescription:"Used for making test cannonballs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:45.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold cannon base", itemDescription:"The cannon is built on this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold cannon stand", itemDescription:"The mounting for the golden multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold cannon barrels", itemDescription:"The barrels of the golden multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gold cannon furnace", itemDescription:"This powers the golden multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:5.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Royale cannon base", itemDescription:"The cannon is built on this.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:100.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Royale cannon stand", itemDescription:"The mounting for a royale multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:9.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Royale cannon barrels", itemDescription:"The barrels of a royale multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:150.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Royale cannon furnace", itemDescription:"This powers a royale multicannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:50.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze ingot i", itemDescription:"It's a bronze ingot of reasonable quality.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ingot i", itemDescription:"It's an iron ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ingot i", itemDescription:"It's a steel ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Dummy component", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze rails", itemDescription:"These can be combined with a base plate to form the start of a track.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze base plate", itemDescription:"These can be combined with rails to form the start of a track.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze spikes", itemDescription:"These can be added to a track after the rails have been attached to the base plate.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze joint", itemDescription:"This should be added to a track after the spikes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze tie", itemDescription:"This should be added to a track after the joint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze track 40%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze track 60%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze track 80%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze track 100%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron rails", itemDescription:"These can be combined with a base plate to form the start of a track.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron base plate", itemDescription:"This can be combined with rails to form the start of a track.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron spikes", itemDescription:"These can be added to a track after the rails have been attached to the base plate.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron joint", itemDescription:"This should be added to a track after the spikes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron tie", itemDescription:"This should be added to a track after the joint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel rails", itemDescription:"These can be combined with a base plate to form the start of a track.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel base plate", itemDescription:"These can be combined with rails to form the start of a track.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel spikes", itemDescription:"These can be added to a track after the rails have been attached to the base plate.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel joint", itemDescription:"This should be added to a track after the spikes.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel tie", itemDescription:"This should be added to a track after the joint.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron track 40%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron track 60%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron track 80%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron track 100%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel track 40%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel track 60%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel track 80%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel track 100%", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ceremonial sword i", itemDescription:"A masterfully crafted iron blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ceremonial sword ii", itemDescription:"A masterfully crafted iron blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ceremonial sword iii", itemDescription:"A masterfully crafted iron blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ceremonial sword iv", itemDescription:"A masterfully crafted iron blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ceremonial sword v", itemDescription:"A masterfully crafted iron blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[2.0, 10.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 9.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ceremonial sword i", itemDescription:"A masterfully crafted steel blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ceremonial sword ii", itemDescription:"A masterfully crafted steel blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ceremonial sword iii", itemDescription:"A masterfully crafted steel blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ceremonial sword iv", itemDescription:"A masterfully crafted steel blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ceremonial sword v", itemDescription:"A masterfully crafted steel blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[3.0, 15.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 14.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ceremonial sword i", itemDescription:"A masterfully crafted mithril blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ceremonial sword ii", itemDescription:"A masterfully crafted mithril blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ceremonial sword iii", itemDescription:"A masterfully crafted mithril blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ceremonial sword iv", itemDescription:"A masterfully crafted mithril blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ceremonial sword v", itemDescription:"A masterfully crafted mithril blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[5.0, 21.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 20.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ceremonial sword i", itemDescription:"A masterfully crafted adamant blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ceremonial sword ii", itemDescription:"A masterfully crafted adamant blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ceremonial sword iii", itemDescription:"A masterfully crafted adamant blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ceremonial sword iv", itemDescription:"A masterfully crafted adamant blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ceremonial sword v", itemDescription:"A masterfully crafted adamant blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[6.0, 29.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 28.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ceremonial sword i", itemDescription:"A masterfully crafted rune blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ceremonial sword ii", itemDescription:"A masterfully crafted rune blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ceremonial sword iii", itemDescription:"A masterfully crafted rune blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ceremonial sword iv", itemDescription:"A masterfully crafted rune blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ceremonial sword v", itemDescription:"A masterfully crafted rune blade.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[7.0, 45.0, -2.0, 0.0, 0.0, 0.0, 1.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 44.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Aksel's permission (sword)", itemDescription:"Aksel has granted you permission to smith a bronze sword on his behalf.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze sword design", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron sword design", itemDescription:"Plans for a ceremonial iron sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel sword design", itemDescription:"Plans for a ceremonial steel sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril sword design", itemDescription:"Plans for a ceremonial mithril sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant sword design", itemDescription:"Plans for a ceremonial adamant sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune sword design", itemDescription:"Plans for a ceremonial rune sword.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Tongs", itemDescription:"A pair of tongs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze ingot (heated)", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ingot (heated)", itemDescription:"An iron ingot of absolute quality that has been heated up.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ingot (heated)", itemDescription:"A steel ingot of absolute quality that has been heated up.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ingot (heated)", itemDescription:"A mithril ingot of absolute quality that has been heated up.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ingot (heated)", itemDescription:"An adamant ingot of absolute quality that has been heated up.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ingot (heated)", itemDescription:"A rune ingot of absolute quality that has been heated up.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner helm (iron)", itemDescription:"A large helmet in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner helm (steel)", itemDescription:"A large helmet in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner helm (mithril)", itemDescription:"A large helmet in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner helm (adamant)", itemDescription:"A large helmet in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner helm (rune)", itemDescription:"A large helmet in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner boots (iron)", itemDescription:"A pair of sturdy boots in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner boots (steel)", itemDescription:"A pair of sturdy boots in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner boots (mithril)", itemDescription:"A pair of sturdy boots in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner boots (adamant)", itemDescription:"A pair of sturdy boots in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner boots (rune)", itemDescription:"A pair of sturdy boots in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner chestplate (iron)", itemDescription:"A detailed chestplate in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner chestplate (steel)", itemDescription:"A detailed chestplate in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner chestplate (mithril)", itemDescription:"A detailed chestplate in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner chestplate (adamant)", itemDescription:"A detailed chestplate in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner chestplate (rune)", itemDescription:"A detailed chestplate in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner gauntlets (iron)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner gauntlets (steel)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner gauntlets (mithril)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner gauntlets (adamant)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Miner gauntlets (rune)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven miner would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior helm (iron)", itemDescription:"A large helmet in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior helm (steel)", itemDescription:"A large helmet in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior helm (mithril)", itemDescription:"A large helmet in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior helm (adamant)", itemDescription:"A large helmet in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior helm (rune)", itemDescription:"A large helmet in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior boots (iron)", itemDescription:"A pair of sturdy boots in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior boots (steel)", itemDescription:"A pair of sturdy boots in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior boots (mithril)", itemDescription:"A pair of sturdy boots in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior boots (adamant)", itemDescription:"A pair of sturdy boots in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior boots (rune)", itemDescription:"A pair of sturdy boots in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior chestplate (iron)", itemDescription:"A detailed chestplate in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior chestplate (steel)", itemDescription:"A detailed chestplate in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior chestplate (mithril)", itemDescription:"A detailed chestplate in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior chestplate (adamant)", itemDescription:"A detailed chestplate in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior chestplate (rune)", itemDescription:"A detailed chestplate in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior gauntlets (iron)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior gauntlets (steel)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior gauntlets (mithril)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior gauntlets (adamant)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Warrior gauntlets (rune)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven warrior would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's helm (iron)", itemDescription:"A large helmet in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's helm (steel)", itemDescription:"A large helmet in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's helm (mithril)", itemDescription:"A large helmet in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's helm (adamant)", itemDescription:"A large helmet in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's helm (rune)", itemDescription:"A large helmet in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's boots (iron)", itemDescription:"A pair of sturdy boots in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's boots (steel)", itemDescription:"A pair of sturdy boots in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's boots (mithril)", itemDescription:"A pair of sturdy boots in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's boots (adamant)", itemDescription:"A pair of sturdy boots in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's boots (rune)", itemDescription:"A pair of sturdy boots in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's chestplate (iron)", itemDescription:"A detailed chestplate in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's chestplate (steel)", itemDescription:"A detailed chestplate in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's chestplate (mithril)", itemDescription:"A detailed chestplate in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's chestplate (adamant)", itemDescription:"A detailed chestplate in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's chestplate (rune)", itemDescription:"A detailed chestplate in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's gauntlets (iron)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's gauntlets (steel)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's gauntlets (mithril)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's gauntlets (adamant)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven smith's would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Smith's gauntlets (rune)", itemDescription:"A pair of hefty gauntlets in which a dead dwarven smith would be buried.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ingot i", itemDescription:"It's an iron ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ingot i", itemDescription:"It's a steel ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ingot i", itemDescription:"It's a mithril ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ingot i", itemDescription:"It's an adamant ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ingot i", itemDescription:"It's a rune ingot of reasonable purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ingot ii", itemDescription:"It's an iron ingot of high purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ingot ii", itemDescription:"It's a steel ingot of high purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ingot ii", itemDescription:"It's a mithril ingot of high purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ingot ii", itemDescription:"It's an adamant ingot of high purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ingot ii", itemDescription:"It's a rune ingot of high purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ingot iii", itemDescription:"It's an iron ingot of superb purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ingot iii", itemDescription:"It's a steel ingot of superb purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ingot iii", itemDescription:"It's a mithril ingot of superb purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ingot iii", itemDescription:"It's an adamant ingot of superb purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ingot iii", itemDescription:"It's a rune ingot of superb purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bronze ingot iv", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Iron ingot iv", itemDescription:"It's an iron ingot of absolute purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Steel ingot iv", itemDescription:"It's a steel ingot of absolute purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Mithril ingot iv", itemDescription:"It's a mithril ingot of absolute purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Adamant ingot iv", itemDescription:"It's an adamant ingot of absolute purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Rune ingot iv", itemDescription:"It's a rune ingot of absolute purity.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:18.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (1)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (1)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (2)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (2)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (3)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (3)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (4)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Ring of wealth (4)", itemDescription:"An enchanted ring.", shopValue:0, lowAlch:7050, highAlch:10575, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Jewelled golden statuette", itemDescription:"Simon Templeton at the Agility Pyrimid will give me 7500 coins for this.", shopValue:10000, lowAlch:12, highAlch:18, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Blue power crystal", itemDescription:"Used to power some ancient device.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Green power crystal", itemDescription:"Used to power some ancient device.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Red power crystal", itemDescription:"Used to power some ancient device.", shopValue:0, lowAlch:4, highAlch:6, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Toolkit", itemDescription:"Good for repairing a broken cannon.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Antique ring", itemDescription:"It has no real monetary value.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Vecna skull", itemDescription:"This mystical item radiates magical power.", shopValue:714400, lowAlch:4000, highAlch:6000, isStackable:false, isNoteable:false, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Vecna skull", itemDescription:"This mystical item radiates magical power.", shopValue:714400, lowAlch:4000, highAlch:6000, isStackable:true, isNoteable:true, weight:2.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Jewelled golden statuette", itemDescription:"Simon Templeton at the Agility Pyrimid will give me 7500 coins for this.", shopValue:10000, lowAlch:12, highAlch:18, isStackable:true, isNoteable:true, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Note", itemDescription:"Swap this note at any bank for the equivalent item.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Brackish blade", itemDescription:"A saline stabber.", shopValue:692500, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[67.0, 8.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Brackish blade", itemDescription:"A saline stabber.", shopValue:692500, lowAlch:40000, highAlch:60000, isStackable:true, isNoteable:true, weight:18.0, bonuses:[67.0, 8.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Brackish blade", itemDescription:"A saline stabber.", shopValue:692500, lowAlch:40000, highAlch:60000, isStackable:false, isNoteable:false, weight:18.0, bonuses:[67.0, 8.0, -2.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 66.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Delivery note", itemDescription:"I wonder what was delivered.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Pirate spell sheet", itemDescription:"Who knew pirates had their own special spells?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Zombie head", itemDescription:"Alas...I hardly knew him.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Twiblik night special", itemDescription:" I wonder what's inside...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Twiblik night special", itemDescription:" I wonder what's inside...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Twiblik night special", itemDescription:" I wonder what's inside...", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gunpowder", itemDescription:"Best keep this away from naked flames.", shopValue:0, lowAlch:0, highAlch:0, isStackable:true, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannonball", itemDescription:"Ammo for the Dwarf Cannon.", shopValue:421, lowAlch:2, highAlch:3, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Chain", itemDescription:"", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Heated chain", itemDescription:"The metal is still hot and malleable.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:3.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannonball and chain", itemDescription:"A cannonball with a chain welded to it.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:8.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrel", itemDescription:"An empty barrel/A Splendid barrel.", shopValue:196, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Cannonball barrel-boat", itemDescription:"Not exactly a conventional vessel.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:13.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Roll of bandage", itemDescription:"How is this going to become part of the barrelchest disguise?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Surgical mask", itemDescription:"How is this going to become part of the barrelchest disguise?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:1.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrelchest parts", itemDescription:"Most of the building blocks for a barrelchest disguise.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Barrelchest disguise", itemDescription:"You're supposed to look LESS conspicious in this?", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:15.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Evidence file", itemDescription:"All the evidence you've gathered from Bloodsplatter Isle is in here.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:0.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Gunpowder-filled barrel", itemDescription:"A barrel filled with gunpowder. Explosive!", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:10.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} -{name:"Bundle o' kegs", itemDescription:"A bundle of explosive mini powder kegs.", shopValue:0, lowAlch:0, highAlch:0, isStackable:false, isNoteable:false, weight:30.0, bonuses:[0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0], stand:0, walk:0, run:0, turn90left:0, turn90right:0, turn180:0, attack:0, block:0, id:0} diff --git a/2006Scape Server/data/data/notes.dat b/2006Scape Server/data/data/notes.dat deleted file mode 100644 index 052be2df873ab5e2cc6cf17d7c213834d1d52abc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12001 zcmeHLiBjt@45a`6(eGK3SBE7f4o%B37$&+_t0RUoJRW>L9`Yp?p5&t=Pw|QmcrPXH zo<8_fbk{!SbuK>zt)=?v{1x`xw-hJSC#j)0AHAlp+%a1Vh!TThjR-09Yz_yi)XLXz zTyf_{q(N&jBd+iRTeUAfAnuZ*-&_p78G;F*)rO~&3-@AnS%3a#HehdSbKR04FVza$ zOD;77lC~Uk6hXpD_RJD=c@blk%2Eys?zs$anl20-T4-O(>zEC(Sb2O5`ignh9=t@M z)75-43_%Hp8Hd5T#9iLCvC!!nMA6QV_$sgB*Zkh@nRWTN3M%D?M9oU+3$~Gu^INet zOLjh8g@NosclvWfKf%Mx_l?R*;GsQVUlOu8SqSDE1D8XnirBUk;DavE#Y35VKIF_E z#YIo_K-xTyrP8t?~PZEH{eeV<8&q>{Yr=do@o%L!Iw=+s$h6?wsee88J0ZUDJF{1 z+8Z&+Lh%uRDsnMn@IK4Ry4Gd~&SS8uv;Zk0xR6K&uVy?Z@zmUif=GGO!OTX_Y``)X z43QxoL(!T*#WR;$hLyJaCnMLerEhDYG|wxfMBwQ`DEM#m)Q{)7Z$ATc%s=$b!X446pFWR2ce<8#{qv>l!oM?)Mv-snGW=e-v++dCW!?Kj zG3Po_@%oXuA-C?#22Yx1KSzcFeppcXMVPUpx!fJN#~kk#$YWF=l|PyLc(`*Yc2yqH z`B&De)G6qPq)&vu%iHk} zj!1cAMM5CS3*BVIie=HyXj+FZZbkpB&zc%cW_(r~9NZ^*6`s&!MV$b_v1g!UfnG~u z(gJ$o!aP;6wF=pKhKjgp@YE8yRaD6&2xuj_aus-~&y7xXs7?CD?9)SzzwGtc<57FgbB=p1>L zH+J#PQgnsl)cI}jGR(~xoMVla`?3^h^Oi6=`IL=%TF-Km)^N0$0Q_7m#@X`msv_^D z$eS)nr@yrE)ni{9q1BY}-;7%Bho_`+0c fmOK%ljM?{FsPko#MmjoIN5+QFc#mrSirByZ)Z!$e diff --git a/2006Scape Server/data/data/stackable.dat b/2006Scape Server/data/data/stackable.dat deleted file mode 100644 index 0f4b65f9b0a2fca280717f4c0cb22356de790173..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12001 zcmeHJ32x*t3~T@Y=v`A1b@)h}%%qrI)B$206m{5{_Ur5WtF3Q+M1~HFS|Kzqm&$k# z4+5|dEo+2)zJ;~>p4-VSw?5~Oj&1I{ZuL6sG@71CTyb3XUXwwwj)*HDXFLN&d<@O& zGG|~8aw&NZZQyGQ_(qd%qsD_8i+tSGJG{~B`9h}oa~^vQfw~u|!qq_{!$GK$c7RS@ zC;s)^pFo_}=C~!m?ro$Uu5L915K>v$kmUr@XftT|;YC#Z?Cl)k+%p9}Bo1u(TO81( z1joVZ;~a`8`*rCtFY4`kmB!fJVmI@`JJzrb97A8V#1*&BvLVYk(aN4NS-y(Tv3F&j zf!_)j4lk9WZY0HpI}XFGEKk$NRS+3JglFgbWFOO!AicIqKW5>(w52uaKv*9ty*?sF zr(o-uTnVA#=_O!f+Et8StbsHe?01dX>XbJlVs8jzC5QT) zoaRFLvJwTnBBdgO2DODYlV;VYHW4BWGu%hp_>supvDYiLF~~elMmmf+N|{Tgx*@uF zM@0%7&F{A8oyf%v8OGTph{oeKrIqQ<F zer!&nWiQ`?PR%ILqe-Wvi?^V)5KHb&n>8gMH9gQjLiX<`MzEZk^}}9H_QlxlnEjui zJHd~}$RWzP+cbQPoZ>hodY<0L%xcklm*lfT0QGyKaeMDJ`mIlCIHL6BoE10sZV!X%PcjgcFBO}R+5!83HT9fR`GfIdlV23oiGZJ;M) zgj9j-SVd8b;oL;c5KSg_)^keH7jR{ zS~#@Zh4Vwr`Xk;Z8%L1DFwPL=_5nJq9ItXBcQFJKOsMK#pMz-%hY;lKWX^l`&ob(4 zhC56OHWW1U{Pez@#;gzp&pf-fX!u-eoEU8bZvQ))?;?vmPXvTtBngvt^jwuj3PByZ zxSRUawpY5Lq_|5F(erbXjjs-j(-doUZI7~r)n*xalaJv~?6uJMYPH@)^EibHq-JIw z)4`X9h>nDvkW3JQX|E1z(bGDLaf|~!tVk!4<`rFRovte14s#UvW=p4JaiyjXEoB%w zCYPo5o7LsD>}vIHG>fZUo|)>r5RR8aC8^bOx{ba`_ I0p>q{0g{Ihwg3PC diff --git a/2006Scape Server/src/main/java/com/rs2/GameEngine.java b/2006Scape Server/src/main/java/com/rs2/GameEngine.java index f6cbc56b..efd99faa 100644 --- a/2006Scape Server/src/main/java/com/rs2/GameEngine.java +++ b/2006Scape Server/src/main/java/com/rs2/GameEngine.java @@ -7,6 +7,7 @@ import java.io.FileReader; import java.io.FileWriter; import java.io.IOException; import java.net.InetSocketAddress; +import java.nio.file.Paths; import java.util.concurrent.Executors; import java.util.concurrent.ScheduledExecutorService; import java.util.concurrent.TimeUnit; @@ -14,6 +15,12 @@ import java.util.concurrent.locks.Lock; import java.util.concurrent.locks.ReentrantLock; import com.rs2.gui.ControlPanel; + +import org.apollo.cache.IndexedFileSystem; +import org.apollo.cache.decoder.ItemDefinitionDecoder; +import org.apollo.cache.decoder.ObjectDefinitionDecoder; +import org.apollo.cache.def.ObjectDefinition; +import org.apollo.jagcached.Constants; import org.apollo.jagcached.FileServer; import com.rs2.game.bots.BotHandler; @@ -27,7 +34,7 @@ import com.rs2.game.content.minigames.magetrainingarena.MageTrainingArena; import com.rs2.game.content.minigames.trawler.Trawler; import com.rs2.game.globalworldobjects.Doors; import com.rs2.game.globalworldobjects.DoubleDoors; -import com.rs2.game.items.ItemDefinition; +import com.rs2.game.items.ItemDefinitions; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Client; import com.rs2.game.players.Player; @@ -43,7 +50,6 @@ import com.rs2.world.GlobalDropsHandler; import com.rs2.world.ItemHandler; import com.rs2.world.ObjectHandler; import com.rs2.world.ObjectManager; -import com.rs2.world.clip.ObjectDefinition; import com.rs2.world.clip.RegionFactory; import io.netty.util.ResourceLeakDetector; @@ -181,13 +187,17 @@ public class GameEngine { System.exit(1); } + IndexedFileSystem cache = new IndexedFileSystem(Paths.get(Constants.FILE_SYSTEM_DIR), true); + new ObjectDefinitionDecoder(cache).run(); + new ItemDefinitionDecoder(cache).run(); + /** * Initialise Handlers */ - RegionFactory.load(); + RegionFactory.load(cache); Doors.getSingleton().load(); DoubleDoors.getSingleton().load(); - ItemDefinition.read(); + ItemDefinitions.load(); GlobalDropsHandler.initialize(); Connection.initialize(); HostBlacklist.loadBlacklist(); diff --git a/2006Scape Server/src/main/java/com/rs2/game/bots/Bot.java b/2006Scape Server/src/main/java/com/rs2/game/bots/Bot.java index a884866c..f4cf2a58 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/bots/Bot.java +++ b/2006Scape Server/src/main/java/com/rs2/game/bots/Bot.java @@ -7,7 +7,7 @@ import java.util.*; import com.rs2.GameConstants; import com.rs2.GameEngine; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Client; import com.rs2.util.Misc; import com.rs2.util.Stream; @@ -70,7 +70,7 @@ public class Bot { } if (items.size() <= 0) return; int item_id = Misc.randomArrayListItem(items); - String item_name = ItemAssistant.getItemName(item_id).toLowerCase(); + String item_name = DeprecatedItems.getItemName(item_id).toLowerCase(); int value = BotHandler.getItemPrice(botClient.shopId, item_id); if (value <= 0) return; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/combat/CombatAssistant.java b/2006Scape Server/src/main/java/com/rs2/game/content/combat/CombatAssistant.java index 6a374dd9..877310bf 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/combat/CombatAssistant.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/combat/CombatAssistant.java @@ -20,7 +20,7 @@ import com.rs2.game.content.minigames.castlewars.CastleWars; import com.rs2.game.content.music.sound.CombatSounds; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.skills.slayer.SlayerRequirements; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.npcs.Npc; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Client; @@ -582,7 +582,7 @@ public class CombatAssistant { if (RangeData.correctBowAndArrows(player) < player.playerEquipment[player.playerArrows] && CombatConstants.CORRECT_ARROWS && player.usingBow && !RangeData.usingCrystalBow(player) && player.playerEquipment[player.playerWeapon] != 9185) { player.getItemAssistant(); player.getItemAssistant(); - player.getPacketSender().sendMessage("You can't use " + ItemAssistant.getItemName(player.playerEquipment[player.playerArrows]).toLowerCase() + "s with a " + ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase() + "."); + player.getPacketSender().sendMessage("You can't use " + DeprecatedItems.getItemName(player.playerEquipment[player.playerArrows]).toLowerCase() + "s with a " + DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase() + "."); player.stopMovement(); player.npcIndex = 0; return; @@ -884,7 +884,7 @@ public class CombatAssistant { && !player.usingMagic) { player.getItemAssistant(); player.getItemAssistant(); - player.getPacketSender().sendMessage("You can't use " + ItemAssistant.getItemName(player.playerEquipment[player.playerArrows]).toLowerCase() + "s with a " + ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase() + "."); + player.getPacketSender().sendMessage("You can't use " + DeprecatedItems.getItemName(player.playerEquipment[player.playerArrows]).toLowerCase() + "s with a " + DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase() + "."); player.stopMovement(); resetPlayerAttack(); return; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/combat/magic/MagicRequirements.java b/2006Scape Server/src/main/java/com/rs2/game/content/combat/magic/MagicRequirements.java index 1e2d5c73..c3f8bf17 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/combat/magic/MagicRequirements.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/combat/magic/MagicRequirements.java @@ -1,7 +1,7 @@ package com.rs2.game.content.combat.magic; import com.rs2.GameConstants; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; @@ -87,7 +87,7 @@ public class MagicRequirements { c.getPacketSender() .sendMessage( "You need a " - + ItemAssistant.getItemName( + + DeprecatedItems.getItemName( staffRequired).toLowerCase() + " to cast this spell."); return false; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/combat/melee/MeleeData.java b/2006Scape Server/src/main/java/com/rs2/game/content/combat/melee/MeleeData.java index 870c3f4b..1dd7819d 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/combat/melee/MeleeData.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/combat/melee/MeleeData.java @@ -2,7 +2,7 @@ package com.rs2.game.content.combat.melee; import com.rs2.GameConstants; import com.rs2.game.content.combat.magic.MagicData; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.ItemConstants; import com.rs2.game.items.impl.Greegree.MonkeyData; import com.rs2.game.players.Player; @@ -95,7 +95,7 @@ public class MeleeData { **/ public static int getAttackDelay(Player c) { - String s = ItemAssistant.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); + String s = DeprecatedItems.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); if (c.usingMagic) { switch (MagicData.MAGIC_SPELLS[c.spellId][0]) { case 12871: // ice blitz @@ -216,7 +216,7 @@ public class MeleeData { **/ public static void getPlayerAnimIndex(Player c) { - String weaponName = ItemAssistant.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); + String weaponName = DeprecatedItems.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); c.playerStandIndex = 0x328; c.playerTurnIndex = 0x337; c.playerWalkIndex = 0x333; @@ -310,7 +310,7 @@ public class MeleeData { **/ public static int getWeaponAnimation(Player c) { - String weaponName = ItemAssistant.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); + String weaponName = DeprecatedItems.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); MonkeyData data = MonkeyData.forId(c.playerEquipment[ItemConstants.WEAPON]); if (data != null) return data.getAttackAnim(); @@ -403,8 +403,8 @@ public class MeleeData { MonkeyData data = MonkeyData.forId(c.playerEquipment[ItemConstants.WEAPON]); if (data != null) return data.getBlockAnim(); - String weaponName = ItemAssistant.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); - String shieldName = ItemAssistant.getItemName(c.playerEquipment[ItemConstants.SHIELD]).toLowerCase(); + String weaponName = DeprecatedItems.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); + String shieldName = DeprecatedItems.getItemName(c.playerEquipment[ItemConstants.SHIELD]).toLowerCase(); if (c.playerEquipment[c.playerShield] >= 8844 && c.playerEquipment[c.playerShield] <= 8850) { return 4177; @@ -443,7 +443,7 @@ public class MeleeData { * How long it takes to hit your enemy **/ public static int getHitDelay(Player c) { - String weaponName = ItemAssistant.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); + String weaponName = DeprecatedItems.getItemName(c.playerEquipment[ItemConstants.WEAPON]).toLowerCase(); if (c.usingMagic) { switch (MagicData.MAGIC_SPELLS[c.spellId][0]) { case 12891: diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/consumables/Potions.java b/2006Scape Server/src/main/java/com/rs2/game/content/consumables/Potions.java index 1725c8de..14735dce 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/consumables/Potions.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/consumables/Potions.java @@ -1,11 +1,12 @@ package com.rs2.game.content.consumables; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemData; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class Potions { @@ -31,9 +32,9 @@ public class Potions { c.getCombatAssistant().resetPlayerAttack(); c.attackTimer++; c.getPacketSender().sendMessage( - "You drink some of your " + ItemData.getItemName(itemId) + "."); + "You drink some of your " + ItemDefinition.lookup(itemId).getName() + "."); c.startAnimation(829); - final String item = ItemData.getItemName(itemId); + final String item = ItemDefinition.lookup(itemId).getName(); String m = ""; if (item.endsWith("(4)")) { m = "You have 3 doses of potion left."; @@ -460,13 +461,13 @@ public class Potions { } public boolean isPotion(int itemId) { - String name = ItemAssistant.getItemName(itemId); + String name = DeprecatedItems.getItemName(itemId); return name.contains("(4)") || name.contains("(3)") || name.contains("(2)") || name.contains("(1)"); } public boolean potionNames(int itemId) { - String name = ItemAssistant.getItemName(itemId); + String name = DeprecatedItems.getItemName(itemId); return name.endsWith("potion(4)") || name.endsWith("potion(3)") || name.endsWith("potion(2)") || name.endsWith("potion(1)") || name.contains("saradomin brew") 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 ad089a54..4621c8fd 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 @@ -1,13 +1,16 @@ package com.rs2.game.content.minigames; import java.util.concurrent.CopyOnWriteArrayList; + +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.GameEngine; import com.rs2.game.content.combat.prayer.PrayerDrain; import com.rs2.game.content.minigames.castlewars.CastleWars; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.GameItem; import com.rs2.game.items.ItemData; -import com.rs2.game.items.ItemAssistant; import com.rs2.game.items.ItemConstants; import com.rs2.game.items.impl.RareProtection; import com.rs2.game.players.Client; @@ -242,7 +245,7 @@ public class Dueling { return false; } changeDuelStuff(); - if (!ItemData.itemStackable[itemID]) { + if (!ItemDefinition.lookup(itemID).isStackable()) { for (int a = 0; a < amount; a++) { if (player.getItemAssistant().playerHasItem(itemID, 1)) { stakedItems.add(new GameItem(itemID, 1)); @@ -259,7 +262,7 @@ public class Dueling { player.getPacketSender().sendString("", 6684); o.getPacketSender().sendString("", 6684); } - if (ItemData.itemStackable[itemID] || ItemData.itemIsNote[itemID]) { + if (ItemDefinition.lookup(itemID).isStackable() || ItemDefinition.lookup(itemID).isNote()) { boolean found = false; for (GameItem item : stakedItems) { if (item.id == itemID) { @@ -313,7 +316,7 @@ public class Dueling { o.getDueling().declineDuel(); return false; } - if (ItemData.itemStackable[itemID]) { + if (ItemDefinition.lookup(itemID).isStackable()) { if (player.getItemAssistant().freeSlots() - 1 < player.duelSpaceReq) { player.getPacketSender().sendMessage( "You have too many rules set to remove that item."); @@ -323,7 +326,7 @@ public class Dueling { changeDuelStuff(); boolean goodSpace = true; - if (!ItemData.itemStackable[itemID]) { + if (!ItemDefinition.lookup(itemID).isStackable()) { for (int a = 0; a < amount; a++) { for (GameItem item : stakedItems) { if (item.id == itemID) { @@ -422,21 +425,21 @@ public class Dueling { } String itemId = ""; for (GameItem item : stakedItems) { - if (ItemData.itemStackable[item.id] || ItemData.itemIsNote[item.id]) { - itemId += ItemAssistant.getItemName(item.id) + " x " + if (ItemDefinition.lookup(item.id).isStackable() || ItemDefinition.lookup(item.id).isNote()) { + itemId += DeprecatedItems.getItemName(item.id) + " x " + Misc.format(item.amount) + "\\n"; } else { - itemId += ItemAssistant.getItemName(item.id) + "\\n"; + itemId += DeprecatedItems.getItemName(item.id) + "\\n"; } } player.getPacketSender().sendString(itemId, 6516); itemId = ""; for (GameItem item : o.getDueling().stakedItems) { - if (ItemData.itemStackable[item.id] || ItemData.itemIsNote[item.id]) { - itemId += ItemAssistant.getItemName(item.id) + " x " + if (ItemDefinition.lookup(item.id).isStackable() || ItemDefinition.lookup(item.id).isNote()) { + itemId += DeprecatedItems.getItemName(item.id) + " x " + Misc.format(item.amount) + "\\n"; } else { - itemId += ItemAssistant.getItemName(item.id) + "\\n"; + itemId += DeprecatedItems.getItemName(item.id) + "\\n"; } } player.getPacketSender().sendString(itemId, 6517); @@ -650,7 +653,7 @@ public class Dueling { public void claimStakedItems() { for (GameItem item : otherStakedItems) { if (item.id > 0 && item.amount > 0) { - if (ItemData.itemStackable[item.id]) { + if (ItemDefinition.lookup(item.id).isStackable()) { if (!player.getItemAssistant().addItem(item.id, item.amount)) { GameEngine.itemHandler.createGroundItem(player, item.id, player.getX(), player.getY(), item.amount, player.getId()); @@ -668,7 +671,7 @@ public class Dueling { } for (GameItem item : stakedItems) { if (item.id > 0 && item.amount > 0) { - if (ItemData.itemStackable[item.id]) { + if (ItemDefinition.lookup(item.id).isStackable()) { if (!player.getItemAssistant().addItem(item.id, item.amount)) { GameEngine.itemHandler.createGroundItem(player, item.id, player.getX(), player.getY(), item.amount, player.getId()); @@ -712,7 +715,7 @@ public class Dueling { if (item.amount < 1) { continue; } - if (ItemData.itemStackable[item.id] || ItemData.itemIsNote[item.id]) { + if (ItemDefinition.lookup(item.id).isStackable() || ItemDefinition.lookup(item.id).isNote()) { player.getItemAssistant().addItem(item.id, item.amount); } else { player.getItemAssistant().addItem(item.id, 1); @@ -793,8 +796,8 @@ public class Dueling { } } } - if (i == 16 && (player.getItemAssistant().is2handed(ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase(), player.playerEquipment[player.playerWeapon]) - && player.getItemAssistant().freeSlots() == 0) || (o.getItemAssistant().is2handed(ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase(), player.playerEquipment[player.playerWeapon]) + if (i == 16 && (player.getItemAssistant().is2handed(DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase(), player.playerEquipment[player.playerWeapon]) + && player.getItemAssistant().freeSlots() == 0) || (o.getItemAssistant().is2handed(DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase(), player.playerEquipment[player.playerWeapon]) && o.getItemAssistant().freeSlots() == 0)) { player.getPacketSender().sendMessage("You or your opponent don't have the required space to set this rule."); return; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/castlewars/CastleWars.java b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/castlewars/CastleWars.java index 50ae3bd3..2c20f5e0 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/castlewars/CastleWars.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/castlewars/CastleWars.java @@ -4,7 +4,7 @@ import java.util.HashMap; import java.util.Iterator; import com.rs2.GameConstants; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -72,7 +72,7 @@ public class CastleWars { int amount = c.getItemAssistant().getItemAmount(item); if (itemId == item && !isInCw(c)) { c.getItemAssistant().deleteItem(item, amount); - c.getPacketSender().sendMessage("You shouldn't have " + ItemAssistant.getItemName(itemId) + " outside of castlewars!"); + c.getPacketSender().sendMessage("You shouldn't have " + DeprecatedItems.getItemName(itemId) + " outside of castlewars!"); return false; } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/Enchanting.java b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/Enchanting.java index 4950fc79..2a16f452 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/Enchanting.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/Enchanting.java @@ -5,7 +5,7 @@ import java.util.Random; import com.rs2.GameConstants; import com.rs2.game.content.combat.magic.CastRequirements; import com.rs2.game.content.combat.magic.Enchanting.EnchantSpell; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; @@ -69,7 +69,7 @@ public class Enchanting { orbsDeposited -= 20; int reward = random.nextInt(rewards.length); player.getItemAssistant().addOrDropItem(rewards[reward], 3); - player.getPacketSender().sendMessage("You are rewarded with 3 " + ItemAssistant.getItemName(rewards[reward]) + "s."); + player.getPacketSender().sendMessage("You are rewarded with 3 " + DeprecatedItems.getItemName(rewards[reward]) + "s."); } player.getPacketSender().sendMessage((20 - orbsDeposited) + " more Orbs until your next reward."); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/MageTrainingArena.java b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/MageTrainingArena.java index 9131a908..5fc689a2 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/MageTrainingArena.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/minigames/magetrainingarena/MageTrainingArena.java @@ -5,7 +5,7 @@ package com.rs2.game.content.minigames.magetrainingarena; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -244,7 +244,7 @@ public class MageTrainingArena { public void sendItemValue(int itemId) { player.getPacketSender().sendMessage( - ItemAssistant.getItemName(itemId) + " costs " + DeprecatedItems.getItemName(itemId) + " costs " + getTelekineticPointValue(itemId) + " Telekinetic points, " + getGraveyardPointValue(itemId) + " Graveyard points,"); player.getPacketSender().sendMessage( diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/music/sound/CombatSounds.java b/2006Scape Server/src/main/java/com/rs2/game/content/music/sound/CombatSounds.java index 213dbae2..f6ceea3b 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/music/sound/CombatSounds.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/music/sound/CombatSounds.java @@ -1,6 +1,7 @@ package com.rs2.game.content.music.sound; -import com.rs2.GameEngine; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.game.content.combat.magic.MagicData; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Player; @@ -173,10 +174,6 @@ public class CombatSounds { return ""; } - public static String getItemName(int ItemID) { - return GameEngine.itemHandler.itemList[ItemID].itemName; - } - public static int getMagicSound(Player c, int spellId) { return MagicData.MAGIC_SPELLS[spellId][16]; } @@ -254,8 +251,7 @@ public class CombatSounds { return 417; } if (c.playerEquipment[c.playerWeapon] >= 1) { - String wep = getItemName(c.playerEquipment[c.playerWeapon]) - .toLowerCase(); + String wep = ItemDefinition.lookup(c.playerEquipment[c.playerWeapon]).getName().toLowerCase(); if (c.playerEquipment[c.playerWeapon] == 4718) {// Dharok's diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/random/PartyRoom.java b/2006Scape Server/src/main/java/com/rs2/game/content/random/PartyRoom.java index e61939d9..171fe025 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/random/PartyRoom.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/random/PartyRoom.java @@ -3,10 +3,12 @@ package com.rs2.game.content.random; import java.awt.Point; import java.util.ArrayList; import java.util.Random; + +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.GameEngine; import com.rs2.game.items.ItemConstants; -import com.rs2.game.items.ItemData; import com.rs2.game.objects.Objects; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; @@ -109,7 +111,7 @@ public class PartyRoom { public static int arraySlot(int[] array, int itemID) { int spare = -1; for (int x = 0; x < array.length; x++) { - if (array[x] == itemID && ItemData.itemStackable[itemID]) { + if (array[x] == itemID && ItemDefinition.lookup(itemID).isStackable()) { return x; } else if (spare == -1 && array[x] <= 0) { spare = x; @@ -132,7 +134,7 @@ public class PartyRoom { public static void accept(Player c) { for (int x = 0; x < c.party.length; x++) { if (c.partyN[x] > 0) { - if (ItemData.itemStackable[c.party[x]]) { + if (ItemDefinition.lookup(c.party[x]).isStackable()) { int slot = arraySlot(roomItems, c.party[x]); if (slot < 0) { c.getPacketSender().sendMessage("Theres not enough space left in the chest."); @@ -208,7 +210,7 @@ public class PartyRoom { return; } - if (player.getItemAssistant().isStackable(id)) { + if (ItemDefinition.lookup(id).isStackable()) { int slot = arraySlot(player.party, id); if (slot == -1) { player.getPacketSender().sendMessage("You can only deposit up to 8 items at once."); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/SkillHandler.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/SkillHandler.java index c9f3d73c..2f118347 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/SkillHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/SkillHandler.java @@ -10,7 +10,7 @@ import com.rs2.game.content.skills.core.Mining; import com.rs2.game.content.skills.herblore.Herblore; import com.rs2.game.content.skills.smithing.Smelting; import com.rs2.game.content.skills.woodcutting.Woodcutting; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -139,7 +139,7 @@ public class SkillHandler { public static void send1Item(Player c, int itemId) { c.getPacketSender().sendFrame246(1746, view190 ? 190 : 150, itemId); c.getPacketSender().sendString( - getLine(c) + "" + ItemAssistant.getItemName(itemId) + "", 2799); + getLine(c) + "" + DeprecatedItems.getItemName(itemId) + "", 2799); c.getPacketSender().sendChatInterface(4429); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/Cooking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/Cooking.java index 99edd8e7..d6fd53de 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/Cooking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/Cooking.java @@ -9,7 +9,7 @@ import com.rs2.game.content.StaticObjectList; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.randomevents.RandomEventHandler; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.ItemConstants; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -109,7 +109,7 @@ public class Cooking extends SkillHandler { c.getItemAssistant().addItem(StaticItemList.BUCKET, 1); c.getItemAssistant().addItem(StaticItemList.POT, 1); c.getItemAssistant().addItem(item, 1); - c.getPacketSender().sendMessage("You mix the water and flour to make some " + ItemAssistant.getItemName(item) + "."); + c.getPacketSender().sendMessage("You mix the water and flour to make some " + DeprecatedItems.getItemName(item) + "."); } c.getPacketSender().closeAllWindows(); } @@ -120,7 +120,7 @@ public class Cooking extends SkillHandler { c.getItemAssistant().deleteItem(itemID2, 1); c.getItemAssistant().addItem(giveItem, 1); if (message.equalsIgnoreCase("")) { - c.getPacketSender().sendMessage("You mix the two ingredients and get an " + ItemAssistant.getItemName(giveItem) + "."); + c.getPacketSender().sendMessage("You mix the two ingredients and get an " + DeprecatedItems.getItemName(giveItem) + "."); } else { c.getPacketSender().sendMessage(message); } @@ -134,10 +134,10 @@ public class Cooking extends SkillHandler { c.getItemAssistant().deleteItem(itemID2, 1); c.getItemAssistant().addItem(giveItem, 1); c.getPlayerAssistant().addSkillXP(expGained, 7); - c.getPacketSender().sendMessage("You create a " + ItemAssistant.getItemName(giveItem) + "."); + c.getPacketSender().sendMessage("You create a " + DeprecatedItems.getItemName(giveItem) + "."); } } else { - c.getPacketSender().sendMessage("You don't have the required level to make an " + ItemAssistant.getItemName(giveItem)); + c.getPacketSender().sendMessage("You don't have the required level to make an " + DeprecatedItems.getItemName(giveItem)); } } @@ -149,7 +149,7 @@ public class Cooking extends SkillHandler { private static void viewCookInterface(Player c, int item) { c.getPacketSender().sendChatInterface(1743); c.getPacketSender().sendFrame246(13716, view190 ? 190 : 170, item); - c.getPacketSender().sendString(getLine(c) + "" + ItemAssistant.getItemName(item) + "", 13717); + c.getPacketSender().sendString(getLine(c) + "" + DeprecatedItems.getItemName(item) + "", 13717); } public static boolean startCooking(Player c, int itemId, int objectId) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/CookingTutorialIsland.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/CookingTutorialIsland.java index e334355f..da115207 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/CookingTutorialIsland.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/CookingTutorialIsland.java @@ -8,7 +8,7 @@ import com.rs2.game.content.StaticItemList; import com.rs2.game.content.StaticObjectList; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -80,7 +80,7 @@ public class CookingTutorialIsland extends SkillHandler { c.getPacketSender().sendChatInterface(1743); c.getPacketSender().sendFrame246(13716, 190, item); c.getPacketSender().sendString( - "" + ItemAssistant.getItemName(item) + "", 13717); + "" + DeprecatedItems.getItemName(item) + "", 13717); } private static void cookTutFish(final Player c) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/DairyChurn.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/DairyChurn.java index 34417195..33e59886 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/DairyChurn.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/cooking/DairyChurn.java @@ -5,7 +5,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.StaticItemList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import java.util.HashMap; @@ -100,7 +100,7 @@ public class DairyChurn { } container.setTick(5); player.startAnimation(CHURN_ANIMATION); - player.getPacketSender().sendMessage("You make a " + ItemAssistant.getItemName(churnData.getResult()).toLowerCase() + "."); + player.getPacketSender().sendMessage("You make a " + DeprecatedItems.getItemName(churnData.getResult()).toLowerCase() + "."); for (int i = 0; i < churnData.getUsed().length; i++) player.getItemAssistant().deleteItem(churnData.getUsed()[i], 1); player.getItemAssistant().addItem(churnData.getResult(), 1); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Fishing.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Fishing.java index ec0b3524..672b5157 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Fishing.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Fishing.java @@ -7,7 +7,7 @@ import com.rs2.event.CycleEventHandler; import com.rs2.game.content.randomevents.RandomEventHandler; import com.rs2.game.content.randomevents.RiverTroll; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -82,7 +82,7 @@ public class Fishing extends SkillHandler { if (!c.getItemAssistant().playerHasItem(data[i][3])) { c.getDialogueHandler().sendStatement( "You need more " - + ItemAssistant.getItemName(data[i][3]) + + DeprecatedItems.getItemName(data[i][3]) .toLowerCase().toLowerCase() + " in order to fish at this spot."); return; @@ -206,13 +206,13 @@ public class Fishing extends SkillHandler { c.getPacketSender() .sendMessage( "You don't have any " - + ItemAssistant + + DeprecatedItems .getItemName(c.playerSkillProp[GameConstants.FISHING][3]) + " left!"); c.getPacketSender() .sendMessage( "You need " - + ItemAssistant + + DeprecatedItems .getItemName(c.playerSkillProp[GameConstants.FISHING][3]) + " to fish here."); resetFishing(c); @@ -272,7 +272,7 @@ public class Fishing extends SkillHandler { || c.playerSkillProp[GameConstants.FISHING][1] == RAW_SHRIMPS || c.playerSkillProp[GameConstants.FISHING][1] == RAW_MONKFISH ? "some " : "a ") - + ItemAssistant + + DeprecatedItems .getItemName( c.playerSkillProp[GameConstants.FISHING][1]) .toLowerCase() @@ -305,7 +305,7 @@ public class Fishing extends SkillHandler { c.getDialogueHandler() .sendStatement( "You have run out of " - + ItemAssistant + + DeprecatedItems .getItemName( c.playerSkillProp[GameConstants.FISHING][3]) .toLowerCase() @@ -352,7 +352,7 @@ public class Fishing extends SkillHandler { if (!c.getItemAssistant().playerHasItem(HARPOON)) { c.getPacketSender().sendMessage( "You need a " - + ItemAssistant.getItemName(equipment) + + DeprecatedItems.getItemName(equipment) .toLowerCase() + " to fish here."); resetFishing(c); return false; @@ -360,7 +360,7 @@ public class Fishing extends SkillHandler { } else { resetFishing(c); c.getPacketSender().sendMessage( - "You need a " + ItemAssistant.getItemName(equipment) + "You need a " + DeprecatedItems.getItemName(equipment) + " to fish here."); return false; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Mining.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Mining.java index c26589ad..febd73c4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Mining.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/core/Mining.java @@ -6,7 +6,7 @@ import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.StaticItemList; import com.rs2.game.content.StaticObjectList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.objects.Object; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; @@ -34,7 +34,7 @@ public class Mining { public void obtainGem(Player player) { int reward = RANDOM_GEMS[(int) (RANDOM_GEMS.length * Math.random())]; player.getItemAssistant().addItem(reward, 1); - player.getPacketSender().sendMessage("You found an " + ItemAssistant.getItemName(reward) + "."); + player.getPacketSender().sendMessage("You found an " + DeprecatedItems.getItemName(reward) + "."); } public final int[][] Pick_Settings = { @@ -237,7 +237,7 @@ public class Mining { if (!giveGem(player)) { player.getItemAssistant().addItem(oreID, 1); player.getPlayerAssistant().addSkillXP(rock.getXp(), GameConstants.MINING); - player.getPacketSender().sendMessage("You manage to mine some " + ItemAssistant.getItemName(oreID).toLowerCase() + "."); + player.getPacketSender().sendMessage("You manage to mine some " + DeprecatedItems.getItemName(oreID).toLowerCase() + "."); } else { obtainGem(player); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GemCutting.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GemCutting.java index fee1b0bf..43af7efe 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GemCutting.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GemCutting.java @@ -5,7 +5,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.music.sound.SoundList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -51,7 +51,7 @@ public class GemCutting extends CraftingData { player.getItemAssistant(); player.getPacketSender().sendMessage( "You cut the " - + ItemAssistant.getItemName( + + DeprecatedItems.getItemName( itemId).toLowerCase() + "."); player.startAnimation(g.getAnimation()); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GlassBlowing.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GlassBlowing.java index 3fc46c93..4a635f8c 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GlassBlowing.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/GlassBlowing.java @@ -2,7 +2,7 @@ package com.rs2.game.content.skills.crafting; import com.rs2.GameConstants; import com.rs2.event.*; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -83,7 +83,7 @@ public class GlassBlowing { public void makeItem(final int id, final int amount, final int slot) { if(c.playerLevel[GameConstants.CRAFTING] < data[slot][2]) { - c.getPacketSender().sendMessage("You need a crafting level of "+data[slot][2]+" make a "+ItemAssistant.getItemName(id)+""); + c.getPacketSender().sendMessage("You need a crafting level of "+data[slot][2]+" make a "+DeprecatedItems.getItemName(id)+""); return; } if(!started) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/JewelryMaking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/JewelryMaking.java index 26880a65..c7d751f2 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/JewelryMaking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/JewelryMaking.java @@ -1,7 +1,7 @@ package com.rs2.game.content.skills.crafting; import com.rs2.GameConstants; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class JewelryMaking { @@ -137,19 +137,19 @@ public class JewelryMaking { return; } if (player.playerLevel[GameConstants.CRAFTING] >= lvl) { - if (ItemAssistant.getItemName(itemAdd).toLowerCase().contains("gold") + if (DeprecatedItems.getItemName(itemAdd).toLowerCase().contains("gold") && !player.getItemAssistant().playerHasItem(GOLD_BAR, 1) || !player.getItemAssistant().playerHasItem(GOLD_BAR, 1)) { player.getPacketSender().sendMessage("You need a Gold bar to make this."); return; } else if (!player.getItemAssistant().playerHasItem(gem, 1) && player.getItemAssistant().playerHasItem(GOLD_BAR, 1)) { - player.getPacketSender().sendMessage(getRequiredMessage(ItemAssistant.getItemName(gem))); + player.getPacketSender().sendMessage(getRequiredMessage(DeprecatedItems.getItemName(gem))); return; } player.getPacketSender().closeAllWindows(); while (done < amount - && (ItemAssistant.getItemName(gem).toLowerCase() + && (DeprecatedItems.getItemName(gem).toLowerCase() .contains("unarmed") && player.getItemAssistant().playerHasItem(GOLD_BAR, 1) || player .getItemAssistant().playerHasItem(gem, 1) @@ -162,11 +162,11 @@ public class JewelryMaking { done++; } if (done == 1) { - player.getPacketSender().sendMessage("You craft the gold to form a " + ItemAssistant.getItemName(itemAdd) + "."); + player.getPacketSender().sendMessage("You craft the gold to form a " + DeprecatedItems.getItemName(itemAdd) + "."); } else if (done > 1) { player.getPacketSender().sendMessage( "You craft the gold to form " + done - + " " + ItemAssistant.getItemName(itemAdd) + + " " + DeprecatedItems.getItemName(itemAdd) + "'s."); } } else { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/LeatherMaking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/LeatherMaking.java index 556f9645..bade4714 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/LeatherMaking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/LeatherMaking.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class LeatherMaking extends CraftingData { @@ -24,7 +24,7 @@ public class LeatherMaking extends CraftingData { c.getPacketSender().sendChatInterface(4429); c.getPacketSender().sendFrame246(1746, 200, 1131); c.getPacketSender().sendString( - ItemAssistant.getItemName(1131), 2799); + DeprecatedItems.getItemName(1131), 2799); c.leatherType = leather; } if (l.getLeather() == 6289) { @@ -88,10 +88,10 @@ public class LeatherMaking extends CraftingData { "You need " + l.getHideAmount() + " " - + ItemAssistant.getItemName( + + DeprecatedItems.getItemName( player.leatherType).toLowerCase() + " to make " - + ItemAssistant.getItemName( + + DeprecatedItems.getItemName( l.getProduct()).toLowerCase() + "."); player.getPacketSender().closeAllWindows(); @@ -141,14 +141,14 @@ public class LeatherMaking extends CraftingData { player.getPacketSender() .sendMessage( "You make " - + (ItemAssistant + + (DeprecatedItems .getItemName( l.getProduct()) .contains( "body") ? "a" : "some") + " " - + ItemAssistant + + DeprecatedItems .getItemName(l .getProduct()) + "."); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/OrbCharging.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/OrbCharging.java index 2eaf74de..d6115f51 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/OrbCharging.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/OrbCharging.java @@ -3,7 +3,7 @@ package com.rs2.game.content.skills.crafting; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class OrbCharging { @@ -16,8 +16,8 @@ public class OrbCharging { if (objectId == l.getObjectId(objectId)) { if (l.getSpell() == spellId) { if (!player.getItemAssistant().playerHasItem(567, 1)) { - player.getPacketSender().sendMessage("You need 1 " + ItemAssistant.getItemName(567).toLowerCase() + " to make " - + ItemAssistant.getItemName(l.getProduct()).toLowerCase() + "."); + player.getPacketSender().sendMessage("You need 1 " + DeprecatedItems.getItemName(567).toLowerCase() + " to make " + + DeprecatedItems.getItemName(l.getProduct()).toLowerCase() + "."); player.getPacketSender().closeAllWindows(); return; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Pottery.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Pottery.java index c1e0851c..20cf1414 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Pottery.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Pottery.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -61,7 +61,7 @@ public class Pottery { c.getItemAssistant().addItem(id, 1); c.getPacketSender().sendMessage( "You make the soft clay into a " - + ItemAssistant.getItemName(id) + "."); + + DeprecatedItems.getItemName(id) + "."); c.getPlayerAssistant().addSkillXP(xp, GameConstants.CRAFTING); c.doAmount--; } @@ -75,7 +75,7 @@ public class Pottery { c.startAnimation(unFire); c.getItemAssistant().deleteItem(softClay, 1); c.getItemAssistant().addItem(id, 1); - c.getPacketSender().sendMessage("You make the soft clay into a " + ItemAssistant.getItemName(id) + "."); + c.getPacketSender().sendMessage("You make the soft clay into a " + DeprecatedItems.getItemName(id) + "."); c.getPlayerAssistant().addSkillXP(xp, GameConstants.CRAFTING); c.doAmount--; } @@ -119,8 +119,8 @@ public class Pottery { player.getItemAssistant().addItem(finishId, 1); player.startAnimation(Fire); player.getPacketSender().sendSound(469, 100, 0); - player.getPacketSender().sendMessage("You put a " + ItemAssistant.getItemName(startId) + " into the oven."); - player.getPacketSender().sendMessage("You retrieve the " + ItemAssistant.getItemName(finishId) + " from the oven."); + player.getPacketSender().sendMessage("You put a " + DeprecatedItems.getItemName(startId) + " into the oven."); + player.getPacketSender().sendMessage("You retrieve the " + DeprecatedItems.getItemName(finishId) + " from the oven."); player.getPlayerAssistant().addSkillXP(xp, GameConstants.CRAFTING); player.doAmount--; } @@ -130,7 +130,7 @@ public class Pottery { } if (!player.getItemAssistant().playerHasItem(startId) && player.playerLevel[GameConstants.CRAFTING] >= level) { - player.getPacketSender().sendMessage("You need an " + ItemAssistant.getItemName(startId) + " to do this."); + player.getPacketSender().sendMessage("You need an " + DeprecatedItems.getItemName(startId) + " to do this."); } CycleEventHandler.getSingleton().addEvent(player, new CycleEvent() { @@ -142,8 +142,8 @@ public class Pottery { player.getItemAssistant().addItem(finishId, 1); player.startAnimation(Fire); player.getPacketSender().sendSound(469, 100, 0); - player.getPacketSender().sendMessage("You put a " + ItemAssistant.getItemName(startId) + " into the oven."); - player.getPacketSender().sendMessage("You retrieve the " + ItemAssistant.getItemName(finishId) + " from the oven."); + player.getPacketSender().sendMessage("You put a " + DeprecatedItems.getItemName(startId) + " into the oven."); + player.getPacketSender().sendMessage("You retrieve the " + DeprecatedItems.getItemName(finishId) + " from the oven."); player.getPlayerAssistant().addSkillXP(xp, GameConstants.CRAFTING); player.doAmount--; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Spinning.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Spinning.java index 9a2b5ee1..2dcf24b4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Spinning.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/crafting/Spinning.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class Spinning extends CraftingData { @@ -51,7 +51,7 @@ public class Spinning extends CraftingData { player.getItemAssistant().deleteItem(before, 1); player.getItemAssistant().addItem(after, 1); player.getPlayerAssistant().addSkillXP(exp, GameConstants.CRAFTING); - player.getPacketSender().sendMessage("You spin the " + ItemAssistant.getItemName(before) + " into a " + ItemAssistant.getItemName(after) + "."); + player.getPacketSender().sendMessage("You spin the " + DeprecatedItems.getItemName(before) + " into a " + DeprecatedItems.getItemName(after) + "."); player.doAmount--; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Farmers.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Farmers.java index 921a7b1c..c94fcafc 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Farmers.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Farmers.java @@ -5,7 +5,7 @@ import java.util.Map; import com.rs2.GameEngine; import com.rs2.game.dialogues.ChatEmotes; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; /** @@ -115,7 +115,7 @@ public class Farmers { player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.ANNOYED, "I am sorry but you have no crops growing in this patch."); player.getDialogueHandler().endDialogue(); } else { - player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); + player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); player.nextChat = 3544; player.setTempInteger(indexArray); } @@ -128,7 +128,7 @@ public class Farmers { player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.ANNOYED, "I am sorry but you have no crops growing in this patch."); player.getDialogueHandler().endDialogue(); } else { - player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); + player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); player.nextChat = 3544; player.setTempInteger(indexArray); } @@ -141,7 +141,7 @@ public class Farmers { player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.ANNOYED, "I am sorry but you have no crops growing in this patch."); player.getDialogueHandler().endDialogue(); } else { - player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED,"If you like, but I want " + payment[1] + " " + getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); + player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED,"If you like, but I want " + payment[1] + " " + getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); player.nextChat = 3544; player.setTempInteger(indexArray); } @@ -155,7 +155,7 @@ public class Farmers { player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.ANNOYED, "I am sorry but you have no crops growing in this patch."); player.getDialogueHandler().endDialogue(); } else { - player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); + player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); player.nextChat = 3544; player.setTempInteger(indexArray); } @@ -169,7 +169,7 @@ public class Farmers { player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.ANNOYED, "I am sorry but you have no crops growing in this patch."); player.getDialogueHandler().endDialogue(); } else { - player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(ItemAssistant.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); + player.getDialogueHandler().sendNpcChat(player.npcType, ChatEmotes.NOT_INTERESTED, "If you like, but I want " + payment[1] + " " + getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()) + (getFinalPaymentString(DeprecatedItems.getItemName(payment[0]).toLowerCase()).endsWith("s") ? "" : "s") + " for that."); player.nextChat = 3544; player.setTempInteger(indexArray); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Seedling.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Seedling.java index 33dda638..ab0dd095 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Seedling.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/Seedling.java @@ -7,8 +7,8 @@ package com.rs2.game.content.skills.farming; import java.util.HashMap; import java.util.Map; import com.rs2.game.content.skills.SkillConstants; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.Item; -import com.rs2.game.items.ItemAssistant; import com.rs2.game.players.Player; /** @@ -108,8 +108,8 @@ public class Seedling { if (seedlingData == null) seedlingData = SeedlingData.getUnwatered(usedWith); if (seedlingData == null - || (!ItemAssistant.getItemName(itemUsed).toLowerCase() - .contains("watering") && !ItemAssistant.getItemName(usedWith) + || (!DeprecatedItems.getItemName(itemUsed).toLowerCase() + .contains("watering") && !DeprecatedItems.getItemName(usedWith) .toLowerCase() .contains("watering"))) return false; @@ -121,7 +121,7 @@ public class Seedling { player.getPacketSender().sendMessage( "You water the " - + ItemAssistant.getItemName(seedlingData.getSeedId()).toLowerCase() + "."); + + DeprecatedItems.getItemName(seedlingData.getSeedId()).toLowerCase() + "."); player.getItemAssistant().deleteItem(seedlingData.getUnwateredSeedlingId(), 1); player.getItemAssistant().addItem(seedlingData.getWateredSeedlingId(), 1); return true; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/SpecialPlantOne.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/SpecialPlantOne.java index 10207e51..98ae08d2 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/SpecialPlantOne.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/SpecialPlantOne.java @@ -18,7 +18,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.skills.SkillConstants; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; /** @@ -640,7 +640,7 @@ public class SpecialPlantOne { } player.getPacketSender().sendMessage( "You harvest the crop, and pick some " - + ItemAssistant.getItemName(specialPlantData.getHarvestId()).toLowerCase() + "."); + + DeprecatedItems.getItemName(specialPlantData.getHarvestId()).toLowerCase() + "."); player.getItemAssistant().addItem( specialPlantData.getHarvestId(), 1); player.getPlayerAssistant().addSkillXP(specialPlantData.getHarvestXp(), SkillConstants.FARMING.ordinal()); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/ToolLeprechaun.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/ToolLeprechaun.java index 070ce99e..475d143a 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/ToolLeprechaun.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/ToolLeprechaun.java @@ -12,6 +12,8 @@ package com.rs2.game.content.skills.farming; import java.util.HashMap; import java.util.Map; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.game.dialogues.ChatEmotes; import com.rs2.game.items.Item; import com.rs2.game.items.ItemData; @@ -355,7 +357,7 @@ public class ToolLeprechaun { public boolean noteItem(int itemId) { - if (ItemData.itemIsNote[itemId]) { + if (ItemDefinition.lookup(itemId).isNote()) { player.getDialogueHandler().sendNpcChat(3021, ChatEmotes.DEFAULT, "That is a banknote!"); return true; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/WoodTrees.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/WoodTrees.java index 8fff8f78..b4184dbb 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/WoodTrees.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/farming/WoodTrees.java @@ -20,7 +20,7 @@ import com.rs2.event.CycleEventHandler; import com.rs2.game.content.skills.SkillConstants; import com.rs2.game.content.skills.SkillHandler; import com.rs2.game.content.skills.farming.ChopTree.Tree; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -901,7 +901,7 @@ public class WoodTrees { player.getItemAssistant().addItem(ChopTree.getTree(object).getLog(), 1); player.getPacketSender().sendMessage( "You get some " - + ItemAssistant + + DeprecatedItems .getItemName(ChopTree.getTree(object) .getLog()) .toLowerCase() + "."); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java index 0088a852..f390f5f0 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/firemaking/Firemaking.java @@ -8,7 +8,7 @@ import com.rs2.event.CycleEventHandler; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.skills.SkillHandler; import com.rs2.game.content.skills.cooking.Cooking; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.objects.Object; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -44,7 +44,7 @@ public class Firemaking { final int logId = usedWith == firemakingItems[i] ? itemUsed : usedWith; if (logId == l.getLogId()) { if (c.playerLevel[GameConstants.FIREMAKING] < l.getLevel()) { - c.getPacketSender().sendMessage("You need a firemaking level of " + l.getLevel() + " to light " + ItemAssistant.getItemName(logId)); + c.getPacketSender().sendMessage("You need a firemaking level of " + l.getLevel() + " to light " + DeprecatedItems.getItemName(logId)); return; } if (Boundary.isIn(c, Boundary.BANK_AREA) || Boundary.isIn(c, Boundary.LUMB_BUILDING) || Boundary.isIn(c, Boundary.DRAYNOR_BUILDING)) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/ArrowMaking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/ArrowMaking.java index 1c6a3a05..45adfacd 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/ArrowMaking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/ArrowMaking.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -104,9 +104,9 @@ public class ArrowMaking { || !player.getItemAssistant().playerHasItem(arrowData.getItem2())) { player.getDialogueHandler().sendStatement( "You need 15 " - + ItemAssistant.getItemName(arrowData.getItem1()) + + DeprecatedItems.getItemName(arrowData.getItem1()) + " and 15 " - + ItemAssistant.getItemName(arrowData.getItem2()) + + DeprecatedItems.getItemName(arrowData.getItem2()) + " to make this."); player.nextChat = 0; return false; @@ -142,13 +142,13 @@ public class ArrowMaking { count / multiplier); player.getPacketSender().sendMessage( "You attach the " - + ItemAssistant.getItemName(arrowData + + DeprecatedItems.getItemName(arrowData .getItem1()) + " to " + count / multiplier + " " - + ItemAssistant.getItemName(arrowData + + DeprecatedItems.getItemName(arrowData .getItem2()) + "s."); player.getPlayerAssistant().addSkillXP( count / multiplier * arrowData.getXp(), 9); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCutting.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCutting.java index da32e832..2642b3cc 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCutting.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCutting.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -48,11 +48,11 @@ public class LogCutting { player.getItemAssistant().deleteItem(player.getFletching().log, 1); if (product == 52) { player.getItemAssistant().addItem(product, 15); - player.getPacketSender().sendMessage("You carefully cut the " + ItemAssistant.getItemName(player.getFletching().log) + " into 15 " + ItemAssistant.getItemName(product) + "s."); + player.getPacketSender().sendMessage("You carefully cut the " + DeprecatedItems.getItemName(player.getFletching().log) + " into 15 " + DeprecatedItems.getItemName(product) + "s."); } else { player.getItemAssistant().addItem(product, 1); - player.getPacketSender().sendMessage("You carefully cut the " + ItemAssistant.getItemName(player.getFletching().log) + " into a " + ItemAssistant.getItemName(product) + "."); + player.getPacketSender().sendMessage("You carefully cut the " + DeprecatedItems.getItemName(player.getFletching().log) + " into a " + DeprecatedItems.getItemName(product) + "."); } player.getPlayerAssistant().addSkillXP(xp, GameConstants.FLETCHING); @@ -298,7 +298,7 @@ public class LogCutting { c.getItemAssistant().deleteItem(2859, amount); c.getItemAssistant().addItem(2861, makeAmount); c.getPlayerAssistant().addSkillXP(3 * amount, GameConstants.FLETCHING); - c.getPacketSender().sendMessage("You turn your " + ItemAssistant.getItemName(2859) + " into " + ItemAssistant.getItemName(2861) + "."); + c.getPacketSender().sendMessage("You turn your " + DeprecatedItems.getItemName(2859) + " into " + DeprecatedItems.getItemName(2861) + "."); } } @@ -320,7 +320,7 @@ public class LogCutting { c.getItemAssistant().deleteItem(314, feather * 4); c.getItemAssistant().deleteItem(2864, arrowShaft); c.getItemAssistant().addItem(2865, arrowShaft); - c.getPacketSender().sendMessage("You turn your " + ItemAssistant.getItemName(2864) + " into " + ItemAssistant.getItemName(2865) + "(s)."); + c.getPacketSender().sendMessage("You turn your " + DeprecatedItems.getItemName(2864) + " into " + DeprecatedItems.getItemName(2865) + "(s)."); } else { c.getPacketSender().sendMessage("You need 4 times the amount of feathers as arrow shafts to do this."); } @@ -346,21 +346,21 @@ public class LogCutting { c.getPlayerAssistant().addSkillXP(1 * wolfBoneArrow, GameConstants.FLETCHING); c.getItemAssistant().deleteItem(2861, wolfBoneArrow); c.getItemAssistant().deleteItem(2865, wolfBoneArrow); - c.getPacketSender().sendMessage("You turn your " + ItemAssistant.getItemName(2865) + " (s) into " + ItemAssistant.getItemName(2866) + "(s)."); + c.getPacketSender().sendMessage("You turn your " + DeprecatedItems.getItemName(2865) + " (s) into " + DeprecatedItems.getItemName(2866) + "(s)."); } else if (wolfBoneArrow > flightedArrow) { c.startAnimation(1248); c.getItemAssistant().addItem(2866, flightedArrow); c.getPlayerAssistant().addSkillXP(1 * flightedArrow, GameConstants.FLETCHING); c.getItemAssistant().deleteItem(2861, flightedArrow); c.getItemAssistant().deleteItem(2865, flightedArrow); - c.getPacketSender().sendMessage("You turn your " + ItemAssistant.getItemName(2865) + " (s) into " + ItemAssistant.getItemName(2866) + "(s)."); + c.getPacketSender().sendMessage("You turn your " + DeprecatedItems.getItemName(2865) + " (s) into " + DeprecatedItems.getItemName(2866) + "(s)."); } else if (wolfBoneArrow < flightedArrow) { c.startAnimation(1248); c.getItemAssistant().addItem(2866, wolfBoneArrow); c.getPlayerAssistant().addSkillXP(1 * wolfBoneArrow, GameConstants.FLETCHING); c.getItemAssistant().deleteItem(2861, wolfBoneArrow); c.getItemAssistant().deleteItem(2865, wolfBoneArrow); - c.getPacketSender().sendMessage("You turn your " + ItemAssistant.getItemName(2865) + " (s) into " + ItemAssistant.getItemName(2866) + "(s)."); + c.getPacketSender().sendMessage("You turn your " + DeprecatedItems.getItemName(2865) + " (s) into " + DeprecatedItems.getItemName(2866) + "(s)."); } } } @@ -378,7 +378,7 @@ public class LogCutting { c.getItemAssistant().deleteItem(2862, amount); c.getItemAssistant().addItem(2864, makeAmount); c.getPlayerAssistant().addSkillXP(2 * amount, GameConstants.FLETCHING); - c.getPacketSender().sendMessage("You turn your " + ItemAssistant.getItemName(2862) + " (s) into " + ItemAssistant.getItemName(2864) + "(s)."); + c.getPacketSender().sendMessage("You turn your " + DeprecatedItems.getItemName(2862) + " (s) into " + DeprecatedItems.getItemName(2864) + "(s)."); } } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCuttingInterface.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCuttingInterface.java index 06403bea..74745af6 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCuttingInterface.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/LogCuttingInterface.java @@ -1,6 +1,6 @@ package com.rs2.game.content.skills.fletching; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -36,44 +36,44 @@ public class LogCuttingInterface { c.getPacketSender().sendFrame246(8883, 180, 52); // left c.getPacketSender().sendFrame246(8884, 180, 50); // middle c.getPacketSender().sendFrame246(8885, 180, 48); // right - c.getPacketSender().sendString(ItemAssistant.getItemName(52), 8889); - c.getPacketSender().sendString(ItemAssistant.getItemName(50), 8893); - c.getPacketSender().sendString(ItemAssistant.getItemName(48), 8897); + c.getPacketSender().sendString(DeprecatedItems.getItemName(52), 8889); + c.getPacketSender().sendString(DeprecatedItems.getItemName(50), 8893); + c.getPacketSender().sendString(DeprecatedItems.getItemName(48), 8897); } else if (item == 1521) { c.getPacketSender().sendChatInterface(8866); c.getPacketSender().sendString("What would you like to make?", 8879); c.getPacketSender().sendFrame246(8869, 180, 54); // left c.getPacketSender().sendFrame246(8870, 180, 56); // right - c.getPacketSender().sendString(ItemAssistant.getItemName(54), 8874); - c.getPacketSender().sendString(ItemAssistant.getItemName(56), 8878); + c.getPacketSender().sendString(DeprecatedItems.getItemName(54), 8874); + c.getPacketSender().sendString(DeprecatedItems.getItemName(56), 8878); } else if (item == 1519) { c.getPacketSender().sendChatInterface(8866); c.getPacketSender().sendString("What would you like to make?", 8879); c.getPacketSender().sendFrame246(8869, 180, 60); // left c.getPacketSender().sendFrame246(8870, 180, 58); // right - c.getPacketSender().sendString(ItemAssistant.getItemName(60), 8874); - c.getPacketSender().sendString(ItemAssistant.getItemName(58), 8878); + c.getPacketSender().sendString(DeprecatedItems.getItemName(60), 8874); + c.getPacketSender().sendString(DeprecatedItems.getItemName(58), 8878); } else if (item == 1517) { c.getPacketSender().sendChatInterface(8866); c.getPacketSender().sendString("What would you like to make?", 8879); c.getPacketSender().sendFrame246(8869, 180, 64); // left c.getPacketSender().sendFrame246(8870, 180, 62); // right - c.getPacketSender().sendString(ItemAssistant.getItemName(64), 8874); - c.getPacketSender().sendString(ItemAssistant.getItemName(62), 8878); + c.getPacketSender().sendString(DeprecatedItems.getItemName(64), 8874); + c.getPacketSender().sendString(DeprecatedItems.getItemName(62), 8878); } else if (item == 1515) { c.getPacketSender().sendChatInterface(8866); c.getPacketSender().sendString("What would you like to make?", 8879); c.getPacketSender().sendFrame246(8869, 180, 68); // left c.getPacketSender().sendFrame246(8870, 180, 66); // right - c.getPacketSender().sendString(ItemAssistant.getItemName(68), 8874); - c.getPacketSender().sendString(ItemAssistant.getItemName(66), 8878); + c.getPacketSender().sendString(DeprecatedItems.getItemName(68), 8874); + c.getPacketSender().sendString(DeprecatedItems.getItemName(66), 8878); } else if (item == 1513) { c.getPacketSender().sendChatInterface(8866); c.getPacketSender().sendString("What would you like to make?", 8879); c.getPacketSender().sendFrame246(8869, 180, 72); // left c.getPacketSender().sendFrame246(8870, 180, 70); // right - c.getPacketSender().sendString(ItemAssistant.getItemName(72), 8874); - c.getPacketSender().sendString(ItemAssistant.getItemName(70), 8878); + c.getPacketSender().sendString(DeprecatedItems.getItemName(72), 8874); + c.getPacketSender().sendString(DeprecatedItems.getItemName(70), 8878); } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/Stringing.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/Stringing.java index 1e47f7de..5deb889a 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/Stringing.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/Stringing.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -79,7 +79,7 @@ public class Stringing { return false; } if (!player.getItemAssistant().playerHasItem(loadData.getItem1()) || !player.getItemAssistant().playerHasItem(loadData.getItem2())) { - player.getDialogueHandler().sendStatement("You need a " + ItemAssistant.getItemName(loadData.getItem1()) + " and a " + ItemAssistant.getItemName(loadData.getItem2()) + " to make this."); + player.getDialogueHandler().sendStatement("You need a " + DeprecatedItems.getItemName(loadData.getItem1()) + " and a " + DeprecatedItems.getItemName(loadData.getItem2()) + " to make this."); return false; } player.playerIsFletching = true; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/TipMaking.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/TipMaking.java index a00032da..7d6a1dad 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/TipMaking.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/fletching/TipMaking.java @@ -5,7 +5,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.music.sound.SoundList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -82,9 +82,9 @@ public class TipMaking { || !player.getItemAssistant().playerHasItem(itemData.getItem2())) { player.getDialogueHandler().sendStatement( "You need " - + ItemAssistant.getItemName(itemData.getItem1()) + + DeprecatedItems.getItemName(itemData.getItem1()) + " and " - + ItemAssistant.getItemName(itemData.getItem2()) + + DeprecatedItems.getItemName(itemData.getItem2()) + " to make this."); player.nextChat = 0; return false; @@ -108,11 +108,11 @@ public class TipMaking { player.getItemAssistant().addItem(itemData.getProduct(), itemData.getQuantity()); player.getPacketSender().sendMessage( "You cut the " - + ItemAssistant.getItemName(itemData.getItem2()) + + DeprecatedItems.getItemName(itemData.getItem2()) + " in to " + itemData.getQuantity() + " " - + ItemAssistant.getItemName(itemData.getProduct()) + "."); + + DeprecatedItems.getItemName(itemData.getProduct()) + "."); player.getPlayerAssistant().addSkillXP(itemData.getQuantity() * itemData.getXp(), GameConstants.FLETCHING); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/GrindingAction.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/GrindingAction.java index 7fe55382..5cd97249 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/GrindingAction.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/GrindingAction.java @@ -2,7 +2,7 @@ package com.rs2.game.content.skills.herblore; import com.rs2.GameConstants; import com.rs2.game.content.music.sound.SoundList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class GrindingAction { @@ -39,7 +39,7 @@ public class GrindingAction { player.getPacketSender().sendSound(SoundList.PESTLE_MOTAR, 100, 0); player.getItemAssistant().deleteItem(d.getId(), 1); player.getItemAssistant().addItem(d.getEnd(), 1); - player.getPacketSender().sendMessage("You carefully grind the " + ItemAssistant.getItemName(d.getId()) + "."); + player.getPacketSender().sendMessage("You carefully grind the " + DeprecatedItems.getItemName(d.getId()) + "."); player.getPlayerAssistant().addSkillXP(1, GameConstants.HERBLORE); } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/Herblore.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/Herblore.java index 86534cdc..68fd0777 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/Herblore.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/herblore/Herblore.java @@ -5,7 +5,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class Herblore extends SkillHandler { @@ -34,7 +34,7 @@ public class Herblore extends SkillHandler { } c.getItemAssistant().deleteItem(itemId, itemSlot, 1); c.getItemAssistant().addItem(element[1], 1); - c.getPacketSender().sendMessage("The herb is a " + ItemAssistant.getItemName(element[1]) + "."); + c.getPacketSender().sendMessage("The herb is a " + DeprecatedItems.getItemName(element[1]) + "."); c.getPlayerAssistant().addSkillXP(element[3], 15); } } @@ -98,7 +98,7 @@ public class Herblore extends SkillHandler { c.getItemAssistant().deleteItem(itemToDelete, c.getItemAssistant().getItemSlot(itemToDelete), 1); c.getItemAssistant().deleteItem(itemToDelete2, c.getItemAssistant().getItemSlot(itemToDelete2), 1); c.getItemAssistant().addItem(itemToAdd, 1); - c.getPacketSender().sendMessage("You make a " + ItemAssistant.getItemName(itemToAdd).toLowerCase() + "."); + c.getPacketSender().sendMessage("You make a " + DeprecatedItems.getItemName(itemToAdd).toLowerCase() + "."); c.getPlayerAssistant().addSkillXP(potExp, GameConstants.HERBLORE); deleteTime(c); if (!c.getItemAssistant().playerHasItem(itemToDelete2, 1) || !c.getItemAssistant().playerHasItem(itemToDelete, 1) || c.doAmount <= 0) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Ectofuntus.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Ectofuntus.java index 8e2cf11a..a7783d30 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Ectofuntus.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Ectofuntus.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -88,7 +88,7 @@ public class Ectofuntus { player.getItemAssistant().deleteItem(ectofuntus.getBoneId(), 1); player.ectofuntusBoneCrusherState = "Loaded"; player.ectofuntusBoneUsed = ectofuntus.getBoneId(); - player.getPacketSender().sendMessage("You load the " + ItemAssistant.getItemName(ectofuntus.getBoneId()) + " into the loader."); + player.getPacketSender().sendMessage("You load the " + DeprecatedItems.getItemName(ectofuntus.getBoneId()) + " into the loader."); container.stop(); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Prayer.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Prayer.java index efbe9306..217a0ff4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Prayer.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/prayer/Prayer.java @@ -7,7 +7,7 @@ import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.randomevents.Shade; import com.rs2.game.content.randomevents.Zombie; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -78,7 +78,7 @@ public class Prayer { CycleEventHandler.getSingleton().addEvent(c, new CycleEvent() { @Override public void execute(CycleEventContainer container) { - c.getPacketSender().sendMessage("You bury the " + ItemAssistant.getItemName(element[0]).toLowerCase() + "."); + c.getPacketSender().sendMessage("You bury the " + DeprecatedItems.getItemName(element[0]).toLowerCase() + "."); container.stop(); } @Override diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/SilverCrafting.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/SilverCrafting.java index 63e881c1..91b94a78 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/SilverCrafting.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/SilverCrafting.java @@ -7,7 +7,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class SilverCrafting { @@ -123,7 +123,7 @@ public class SilverCrafting { player.startAnimation(SILVER_ANIMATION); player.getPacketSender().sendMessage( "You make the silver bar into " - + ItemAssistant + + DeprecatedItems .getItemName( silverCraft.getResult()) .toLowerCase().toLowerCase() + "."); diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smelting.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smelting.java index 60efc344..219f8358 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smelting.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smelting.java @@ -5,7 +5,7 @@ import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -83,13 +83,13 @@ public class Smelting extends SkillHandler { // Check the player has all required items if (data[i][4] <= 0) { // Bars with only a primary requirement if (!c.getItemAssistant().playerHasItem(data[i][3])) { - c.getPacketSender().sendMessage("You need " + ItemAssistant.getItemName(data[i][3]).toLowerCase() + " to make this bar."); + c.getPacketSender().sendMessage("You need " + DeprecatedItems.getItemName(data[i][3]).toLowerCase() + " to make this bar."); c.getPacketSender().closeAllWindows(); return; } } else { // Bars with a secondary requirement if (!c.getItemAssistant().playerHasItem(data[i][3]) || !c.getItemAssistant().playerHasItem(data[i][4], data[i][5])) { - c.getPacketSender().sendMessage("You need 1 " + ItemAssistant.getItemName(data[i][3]).toLowerCase() + " and " + data[i][5] + " " + ItemAssistant.getItemName(data[i][4]).toLowerCase() + " to make this bar."); + c.getPacketSender().sendMessage("You need 1 " + DeprecatedItems.getItemName(data[i][3]).toLowerCase() + " and " + data[i][5] + " " + DeprecatedItems.getItemName(data[i][4]).toLowerCase() + " to make this bar."); c.getPacketSender().closeAllWindows(); return; } @@ -128,13 +128,13 @@ public class Smelting extends SkillHandler { if (c.playerSkillProp[GameConstants.SMITHING][3] == IRON && c.playerSkillProp[GameConstants.SMITHING][4] == -1 && c.isSmelting) { // Ring of forging if (c.playerEquipment[c.playerRing] == 2568) { - c.getPacketSender().sendMessage("You receive an " + ItemAssistant.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); + c.getPacketSender().sendMessage("You receive an " + DeprecatedItems.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); c.getItemAssistant().addItem(c.playerSkillProp[GameConstants.SMITHING][6], 1);// item c.getPlayerAssistant().addSkillXP(c.playerSkillProp[GameConstants.SMITHING][2], GameConstants.SMITHING); } else { if (Misc.random(100) >= 50) { - c.getPacketSender().sendMessage("You receive an " + ItemAssistant.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); + c.getPacketSender().sendMessage("You receive an " + DeprecatedItems.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); c.getItemAssistant().addItem(c.playerSkillProp[GameConstants.SMITHING][6], 1);// item c.getPlayerAssistant().addSkillXP(c.playerSkillProp[GameConstants.SMITHING][2], GameConstants.SMITHING); } else { @@ -142,11 +142,11 @@ public class Smelting extends SkillHandler { } } } else if (c.playerSkillProp[GameConstants.SMITHING][3] == GOLD && c.playerEquipment[c.playerHands] == 776 && c.isSmelting) { - c.getPacketSender().sendMessage("You receive a " + ItemAssistant.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); + c.getPacketSender().sendMessage("You receive a " + DeprecatedItems.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); c.getItemAssistant().addItem(c.playerSkillProp[GameConstants.SMITHING][6], 1);// item c.getPlayerAssistant().addSkillXP(56.2, GameConstants.SMITHING); } else if (c.isSmelting){ - c.getPacketSender().sendMessage("You receive a " + ItemAssistant.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); + c.getPacketSender().sendMessage("You receive a " + DeprecatedItems.getItemName(c.playerSkillProp[GameConstants.SMITHING][6]).toLowerCase() + "."); c.getItemAssistant().addItem(c.playerSkillProp[GameConstants.SMITHING][6], 1);// item c.getPlayerAssistant().addSkillXP(c.playerSkillProp[GameConstants.SMITHING][2], GameConstants.SMITHING); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smithing.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smithing.java index 5be09cd9..0f8fdbea 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smithing.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Smithing.java @@ -4,7 +4,7 @@ import com.rs2.GameConstants; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; public class Smithing { @@ -12,7 +12,7 @@ public class Smithing { private int addItem, xp, removeItem, removeAmount, makeTimes; private boolean hasItem(Player player, int type, String string) { - return (ItemAssistant.getItemName(type).contains(string)); + return (DeprecatedItems.getItemName(type).contains(string)); } public void readInput(Player player, int levelReq, int type, int amountToMake) { @@ -52,7 +52,7 @@ public class Smithing { public static void smithItem(Player player, int addItem, int removeItem, int removeItem2, int timesToMake, int XP) { player.doAmount = timesToMake; player.getPacketSender().closeAllWindows(); - String name = ItemAssistant.getItemName(addItem); + String name = DeprecatedItems.getItemName(addItem); if (player.getItemAssistant().playerHasItem(removeItem, removeItem2)) { if (!player.isSmithing) { player.isSmithing = true; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Superheat.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Superheat.java index 59d0f563..8c1a63e8 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Superheat.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/smithing/Superheat.java @@ -3,7 +3,7 @@ package com.rs2.game.content.skills.smithing; import com.rs2.GameConstants; import com.rs2.game.content.combat.magic.CastRequirements; import com.rs2.game.content.music.sound.SoundList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -31,7 +31,7 @@ public class Superheat { if (itemID == 440 && smelt[2] == 453) { continue; } else { - player.getPacketSender().sendMessage("You haven't got enough " + ItemAssistant.getItemName(smelt[2]).toLowerCase() + " to cast this spell!"); + player.getPacketSender().sendMessage("You haven't got enough " + DeprecatedItems.getItemName(smelt[2]).toLowerCase() + " to cast this spell!"); return false; } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Pickpocket.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Pickpocket.java index 25e484b8..82664e10 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Pickpocket.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Pickpocket.java @@ -1,14 +1,12 @@ package com.rs2.game.content.skills.thieving; import com.rs2.GameConstants; -import com.rs2.GameEngine; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.randomevents.RandomEventHandler; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemList; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -64,48 +62,48 @@ public class Pickpocket extends SkillHandler { {1944, 1}, }), MASTER_FARMER(new int[] { 2234, 2235 }, 38, 43.0, 2, 5, new int[][] { - {i("potato seed"), 1, 2}, - {i("onion seed"), 1, 2}, - {i("cabbage seed"), 1, 2}, - {i("tomato seed"), 1, 1}, - {i("sweetcorn seedseed"), 1, 1}, - {i("strawberry seed"), 1}, - {i("watermelon seed"), 1}, - {i("barely seed"), 1, 3}, - {i("hammerstone seed"), 1, 2}, - {i("asgarnian seed"), 1, 1}, - {i("jute seed"), 1, 2}, - {i("yanillian seed"), 1, 1}, - {i("krandorian seed"), 1}, - {i("wildblood seed"), 1}, - {i("redberry seed"), 1}, - {i("cadavaberry seed"), 1}, - {i("dwellberry seed"), 1}, - {i("jangerberry seed"), 1}, - {i("whiteberry seed"), 1}, - {i("poison ivy seed"), 1}, - {i("marigold seed"), 1}, - {i("rosemarry seed"), 1}, - {i("nasturtium seed"), 1}, - {i("woad seed"), 1}, - {i("limpwurt seed"), 1}, - {i("guam seed"), 1}, - {i("marentill seed"), 1}, - {i("tarromin seed"), 1}, - {i("harralander seed"), 1}, - {i("ranarr seed"), 1}, - {i("toadflax seed"), 1}, - {i("irit seed"), 1}, - {i("avantoe seed"), 1}, - {i("kwuarm seed"), 1}, - {i("snapdragon seed"), 1}, - {i("cadantine seed"), 1}, - {i("lantadyme seed"), 1}, - {i("dwarf weed seed"), 1}, - {i("torstol seed"), 1}, - {i("bittercap mushroom spore"), 1}, - {i("belladonna seed"), 1}, - {i("cactus seed"), 1}, + {5318, 1, 2}, + {5319, 1, 2}, + {5324, 1, 2}, + {5322, 1, 1}, + {5320, 1, 1}, + {5323, 1}, + {5321, 1}, + {5305, 1, 3}, + {5307, 1, 2}, + {5308, 1, 1}, + {5306, 1, 2}, + {5309, 1, 1}, + {5310, 1}, + {5311, 1}, + {5101, 1}, + {5102, 1}, + {5103, 1}, + {5104, 1}, + {5105, 1}, + {5106, 1}, + {5096, 1}, + {5097, 1}, + {5098, 1}, + {5099, 1}, + {5100, 1}, + {5291, 1}, + {5292, 1}, + {5293, 1}, + {5294, 1}, + {5295, 1}, + {5296, 1}, + {5297, 1}, + {5298, 1}, + {5299, 1}, + {5300, 1}, + {5301, 1}, + {5302, 1}, + {5303, 1}, + {5304, 1}, + {5282, 1}, + {5281, 1}, + {5280, 1}, }), GUARD(new int[] { 9, 32 }, 40, 46.8, 2, 5, new int[][] { {995, 30}, @@ -191,21 +189,6 @@ public class Pickpocket extends SkillHandler { return Misc.random(random); } - public static int i(String ItemName) { - return getItemId(ItemName); - } - - public static int getItemId(String itemName) { - for (ItemList i : GameEngine.itemHandler.itemList) { - if (i != null) { - if (i.itemName.equalsIgnoreCase(itemName)) { - return i.itemId; - } - } - } - return -1; - } - public static boolean isNPC(Player c, int npc) { for (final npcData n : npcData.values()) { if (npc == n.getNpc(npc)) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Stalls.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Stalls.java index 0a8d2a80..ffff95a4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Stalls.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/thieving/Stalls.java @@ -1,5 +1,7 @@ package com.rs2.game.content.skills.thieving; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.GameEngine; import com.rs2.event.CycleEvent; @@ -7,8 +9,6 @@ import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.randomevents.RandomEventHandler; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; -import com.rs2.game.items.ItemList; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -21,12 +21,30 @@ public class Stalls { BAKER_STALL(2561, 5, 16, 3, new int[] { 2309, 1 }, new int[] { 1891, 1 }, new int[] { 1895, 1 }), TEA_STALL(635, 5, 16, 0, new int[] {712, 1 }), SILK_STALL(2560, 20, 24, 2, new int[] { 950, 1 }), - WINE_STALL(14011, 22, 27, 0, new int[] { 1935, 1 }, new int[] {i("jug of water"), 1 }, new int[] { i("jug of wine"), 1 }, - new int[] { i("grapes"), 1 }), SEED_STALL(7053, 27, 10, 0, new int[] { i("potato seed"), 1 }, new int[] {i("onion seed"), 1 }, - new int[] { i("cabbage seed"), 1 }, new int[] {i("tomato seed"), 1 }, new int[] { i("sweetcorn seed"), 1 }, new int[] { i("strawberry seed"), 1 }, - new int[] {i("watermelon seed"), 1 }, new int[] {i("barley seed"), 1 }, new int[] { i("jute seed"), 1 }, new int[] { i("marigold seed"), 1 }, - new int[] {i("rosemary seed"), 1 }, new int[] {i("hammerstone seed"), 1 }, new int[] {i("asgarnain seed"), 1 }, new int[] {i("yanillian seed"), 1 }, - new int[] {i("krandorian seed"), 1 }, new int[] {i("wildblood seed"), 1 }), + WINE_STALL(14011, 22, 27, 0, + new int[] { 1935, 1 }, + new int[] { 1937, 1 }, + new int[] { 1993, 1 }, + new int[] { 1987, 1 }), + + SEED_STALL(7053, 27, 10, 0, + new int[] { 5318, 1 }, + new int[] { 5319, 1 }, + new int[] { 5324, 1 }, + new int[] { 5322, 1 }, + new int[] { 5320, 1 }, + new int[] { 5323, 1 }, + new int[] { 5321, 1 }, + new int[] { 5305, 1 }, + new int[] { 5306, 1 }, + new int[] { 5096, 1 }, + new int[] { 5097, 1 }, + new int[] { 5307, 1 }, + new int[] { 5308, 1 }, + new int[] { 5309, 1 }, + new int[] { 5310, 1 }, + new int[] { 5311, 1 }), + FUR_STALL(2563, 35, 36, 0, new int[] { 6814, 1 }, new int[] { 958, 1 }), FUR_STALL2(4278, 35, 36, 0, new int[] { 6814, 1 }, new int[] { 958, 1 }), FISH_STALL(4705, 42, 42, 0, new int[] { 359, 1 }), @@ -35,8 +53,14 @@ public class Stalls { SPICE_STALL(2564, 65, 81.3, 0, new int[] { 2007, 1 }, new int[] { 946, 1 }, new int[] { 1550, 1 }), GEM_STALL(2562, 75, 160, 3, new int[] { 1617, 1 }, new int[] { 1619, 1 }, new int[] { 1621, 1 }, new int[] { 1623, 1 }), - MAGIC_STALL(4877, 65, 100, 0, new int[] {i("air rune"), 1}, new int[] {i("water rune"), 1}, new int[] {i("fire rune"), 1}, new int[] {i("law rune"), 1}), - SCIMITAR_STALL(4878, 65, 100, 0, new int[] {i("iron scimitar"), 1}, new int[] {i("steel scimitar"), 1}); + MAGIC_STALL(4877, 65, 100, 0, + new int[] { 556, 1 }, + new int[] { 555, 1 }, + new int[] { 554, 1 }, + new int[] { 563, 1 }), + SCIMITAR_STALL(4878, 65, 100, 0, + new int[] { 1323, 1 }, + new int[] { 1325, 1 }); private int objectId, levelReq, face; private int[][] stalls; @@ -78,21 +102,6 @@ public class Stalls { return Misc.random(random); } - public static int i(String ItemName) { - return getItemId(ItemName); - } - - public static int getItemId(String itemName) { - for (ItemList i : GameEngine.itemHandler.itemList) { - if (i != null) { - if (i.itemName.equalsIgnoreCase(itemName)) { - return i.itemId; - } - } - } - return -1; - } - public static boolean isObject(int object) { for (final stallData s : stallData.values()) { if(object == s.getObject()) { @@ -147,7 +156,7 @@ public class Stalls { p.getPlayerAssistant().addSkillXP((int) s.getXp(), GameConstants.THIEVING); int[] random = s.getStalls()[Misc.random(s.getStalls().length-1)]; s.respawnTime = System.currentTimeMillis() + (respawnTime * GameConstants.CYCLE_TIME); - p.getPacketSender().sendMessage("You steal a " + ItemAssistant.getItemName(random[0]) + " from the stall."); + p.getPacketSender().sendMessage("You steal a " + ItemDefinition.lookup(random[0]).getName() + " from the stall."); p.getItemAssistant().addItem(random[0], random[1]); p.setHasThievedStall(true); CycleEventHandler.getSingleton().addEvent(p, new CycleEvent() { diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/BirdNest.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/BirdNest.java index c0de58a2..9990ac79 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/BirdNest.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/BirdNest.java @@ -1,7 +1,7 @@ package com.rs2.game.content.skills.woodcutting; import com.rs2.GameEngine; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.util.Misc; @@ -48,7 +48,7 @@ public class BirdNest { for (int i = 0; i < TREE_CHANCE.length; i++) { if (randomTree >= TREE_CHANCE[i][1] && randomTree <= TREE_CHANCE[i][2]) { player.getItemAssistant().addItem(TREE_CHANCE[i][0], 1); - player.getPacketSender().sendMessage("You find a " + ItemAssistant.getItemName(TREE_CHANCE[i][0]) + "."); + player.getPacketSender().sendMessage("You find a " + DeprecatedItems.getItemName(TREE_CHANCE[i][0]) + "."); } } break; @@ -57,7 +57,7 @@ public class BirdNest { for (int i = 0; i < RING_CHANCE.length; i++) { if (randomRing >= RING_CHANCE[i][1] && randomRing <= RING_CHANCE[i][2]) { player.getItemAssistant().addItem(RING_CHANCE[i][0], 1); - player.getPacketSender().sendMessage("You find a " + ItemAssistant.getItemName(RING_CHANCE[i][0]) + "."); + player.getPacketSender().sendMessage("You find a " + DeprecatedItems.getItemName(RING_CHANCE[i][0]) + "."); } } break; @@ -66,7 +66,7 @@ public class BirdNest { for (int i = 0; i < WYSON_CHANCE.length; i++) { if (randomWyson >= WYSON_CHANCE[i][2] && randomWyson <= WYSON_CHANCE[i][3]) { player.getItemAssistant().addItem(WYSON_CHANCE[i][0], WYSON_CHANCE[i][1]); - player.getPacketSender().sendMessage("You find a " + ItemAssistant.getItemName(WYSON_CHANCE[i][0]) + "."); + player.getPacketSender().sendMessage("You find a " + DeprecatedItems.getItemName(WYSON_CHANCE[i][0]) + "."); } } break; diff --git a/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/Woodcutting.java b/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/Woodcutting.java index 78008f23..df472c07 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/Woodcutting.java +++ b/2006Scape Server/src/main/java/com/rs2/game/content/skills/woodcutting/Woodcutting.java @@ -8,7 +8,7 @@ import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.randomevents.RandomEventHandler; import com.rs2.game.content.randomevents.TreeSpirit; import com.rs2.game.content.skills.SkillHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.objects.Object; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; @@ -314,7 +314,7 @@ public class Woodcutting { if (p.isWoodcutting) { p.getItemAssistant().addItem(tree.getLogRecieved(), 1); p.getPlayerAssistant().addSkillXP(XP, 8); - p.getPacketSender().sendMessage("You manage to get some " + ItemAssistant.getItemName(tree.getLogRecieved()).toLowerCase() + " from the tree."); + p.getPacketSender().sendMessage("You manage to get some " + DeprecatedItems.getItemName(tree.getLogRecieved()).toLowerCase() + " from the tree."); } if (p.tutorialProgress == 3) { p.getDialogueHandler().sendDialogues(3014, 0); diff --git a/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/ClimbOther.java b/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/ClimbOther.java index 97cb0542..a86a0527 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/ClimbOther.java +++ b/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/ClimbOther.java @@ -1,9 +1,10 @@ package com.rs2.game.globalworldobjects; +import org.apollo.cache.def.ObjectDefinition; + import com.rs2.game.objects.Object; import com.rs2.game.objects.ObjectDefaults; import com.rs2.game.players.Player; -import com.rs2.world.clip.ObjectDefinition; import com.rs2.world.clip.Region; public class ClimbOther { @@ -40,7 +41,7 @@ public class ClimbOther { } public static void useOther(Player player, int objectType) { - final String objectName = ObjectDefinition.getObjectDef(objectType).name; + final String objectName = ObjectDefinition.lookup(objectType).getName(); if (System.currentTimeMillis() - player.climbDelay < 1800) { return; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/GateHandler.java b/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/GateHandler.java index 388b378f..b9cd56a6 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/GateHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/game/globalworldobjects/GateHandler.java @@ -1,11 +1,12 @@ package com.rs2.game.globalworldobjects; +import org.apollo.cache.def.ObjectDefinition; + import com.rs2.GameEngine; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.objects.Objects; import com.rs2.game.players.Player; import com.rs2.world.ObjectManager; -import com.rs2.world.clip.ObjectDefinition; import com.rs2.world.clip.Region; /** @@ -19,7 +20,7 @@ public class GateHandler { CLOSED = 0, PARTIAL_OPEN = 1, OPEN = 2; public boolean isGate(int objectId) { - String objectName = ObjectDefinition.getObjectDef(objectId).name; + String objectName = ObjectDefinition.lookup(objectId).getName(); try { return objectName.equalsIgnoreCase("gate") || objectName.equalsIgnoreCase("Gate"); } catch (Exception e) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/DeprecatedItems.java b/2006Scape Server/src/main/java/com/rs2/game/items/DeprecatedItems.java new file mode 100644 index 00000000..ecee7816 --- /dev/null +++ b/2006Scape Server/src/main/java/com/rs2/game/items/DeprecatedItems.java @@ -0,0 +1,46 @@ +package com.rs2.game.items; + +/** + * Methods which are set to be phased out but exist to maintain compatibility with the existing source code. + * + * @author Advocatus + * + */ +public class DeprecatedItems { + + /** + * Gets the item id for a specific name. This is inefficient and is used for potion mixing. That code needs to be reworked. + * Tagging as {@link java.lang.Deprecated} until the rest of the code can be untangled. It is worth noting that it will only return + * the first matching item id which can cause unintended behavior and should be avoided. + * + * @param name The item name + * @return The item id or -1. + */ + @java.lang.Deprecated + public static int getItemId(String name) { + for (int i = 0; i < org.apollo.cache.def.ItemDefinition.count(); i++) { + org.apollo.cache.def.ItemDefinition def = org.apollo.cache.def.ItemDefinition.lookup(i); + if (def != null && def.getName() != null) { + if (def.getName().equalsIgnoreCase(name)) { + return def.getId(); + } + } + } + return -1; + } + + + /** + * Temporary method which wraps around the ItemDefinition.lookup(id).getName(); This is utilized due to source specific behaviors. + * This should be phased out with discretion. + * + * @param id The id. + * @return The items name or "Unarmed" + */ + @java.lang.Deprecated + public static String getItemName(int id) { + if(org.apollo.cache.def.ItemDefinition.lookup(id) == null || org.apollo.cache.def.ItemDefinition.lookup(id).getName() == null) + return "Unarmed"; + return org.apollo.cache.def.ItemDefinition.lookup(id).getName(); + } +} diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/GameItem.java b/2006Scape Server/src/main/java/com/rs2/game/items/GameItem.java index 632755e3..6fb9d928 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/GameItem.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/GameItem.java @@ -1,12 +1,14 @@ package com.rs2.game.items; +import org.apollo.cache.def.ItemDefinition; + public class GameItem { public int id, amount; public boolean stackable = false; public GameItem(int id, int amount) { - if (ItemData.itemStackable[id]) { + if (ItemDefinition.lookup(id).isStackable()) { stackable = true; } this.id = id; diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/Inventory.java b/2006Scape Server/src/main/java/com/rs2/game/items/Inventory.java index 86290950..d9334720 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/Inventory.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/Inventory.java @@ -1,5 +1,7 @@ package com.rs2.game.items; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.GameEngine; import com.rs2.game.players.Player; @@ -88,7 +90,7 @@ public class Inventory { } public boolean add(int id, int amount) { - if (player.getItemAssistant().isStackable(id)) { + if (ItemDefinition.lookup(id).isStackable()) { int allAmount = getStackedGroundAmount(id, amount, getCount(id)); if (allAmount > 0) { GameEngine.itemHandler.createGroundItem(player, id, player.getX(), player @@ -126,18 +128,6 @@ public class Inventory { } } - public boolean ownsItem(String itemName) { - for (int i = 0; i < GameConstants.ITEM_LIMIT; i++) { - if (GameEngine.itemHandler.itemList[i] != null) { - if (GameEngine.itemHandler.itemList[i].itemName - .equalsIgnoreCase(itemName)) { - return true; - } - } - } - return false; - } - public boolean playerHasItem(int item) { return player.getItemAssistant().playerHasItem(item); } diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/Item.java b/2006Scape Server/src/main/java/com/rs2/game/items/Item.java index 0724ef38..ac9bccc4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/Item.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/Item.java @@ -1,7 +1,5 @@ package com.rs2.game.items; -import com.rs2.GameEngine; - /** * Represents a single item. * @@ -98,8 +96,4 @@ public class Item { public boolean equals(Item item) { return item.getId() == id && count == item.getCount(); } - - public ItemList getDefinition() { - return GameEngine.itemHandler.itemList[id]; - } } \ No newline at end of file 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 d382071f..03a9d153 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 @@ -1,5 +1,7 @@ package com.rs2.game.items; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.GameEngine; import com.rs2.game.content.minigames.castlewars.CastleWars; @@ -42,7 +44,7 @@ public class ItemAssistant { deleteItem(itemId, 1); clickTimer = System.currentTimeMillis(); player.getPacketSender().sendMessage( - "You find " + amount + " " + getItemName(item) + "."); + "You find " + amount + " " + DeprecatedItems.getItemName(item) + "."); } else { if (System.currentTimeMillis() - clickTimer > 1800) { addItem(995, 100); @@ -60,7 +62,7 @@ public class ItemAssistant { public void destroyInterface(int itemId) { itemId = player.droppedItem; - String itemName = getItemName(player.droppedItem); + String itemName = DeprecatedItems.getItemName(player.droppedItem); String[][] info = { { "Are you sure you want to destroy this item?", "14174" }, { "Yes.", "14175" }, { "No.", "14176" }, { "", "14177" }, @@ -74,7 +76,7 @@ public class ItemAssistant { public void destroyItem(int itemId) { itemId = player.droppedItem; - String itemName = getItemName(itemId); + String itemName = DeprecatedItems.getItemName(itemId); deleteItem(itemId,getItemSlot(itemId), player.playerItemsN[getItemSlot(itemId)]); player.getPacketSender().sendMessage("Your " + itemName + " vanishes as you destroy it."); player.getPacketSender().closeAllWindows(); @@ -88,12 +90,12 @@ public class ItemAssistant { } public void addOrDropItem(int item, int amount) { - if (isStackable(item) && hasFreeSlots(1)) { + if (ItemDefinition.lookup(item).isStackable() && hasFreeSlots(1)) { addItem(item, amount); - } else if (!hasFreeSlots(amount) && !isStackable(item)) { + } else if (!hasFreeSlots(amount) && !ItemDefinition.lookup(item).isStackable()) { GameEngine.itemHandler.createGroundItem(player, item, player.getX(), player.getY(), amount, player.playerId); player.getPacketSender().sendMessage("You have no inventory space, so the item(s) appear beneath you."); - } else if (isStackable(item) && !hasFreeSlots(1) && !playerHasItem(item)) { + } else if (ItemDefinition.lookup(item).isStackable() && !hasFreeSlots(1) && !playerHasItem(item)) { GameEngine.itemHandler.createGroundItem(player, item, player.getX(), player.getY(), amount, player.playerId); player.getPacketSender().sendMessage("You have no inventory space, so the item(s) appear beneath you."); } else { @@ -261,12 +263,12 @@ public class ItemAssistant { public int getTotalCount(int itemID) { int count = 0; for (int j = 0; j < player.playerItems.length; j++) { - if (ItemData.itemIsNote[itemID + 1]) { + if (ItemDefinition.lookup(itemID + 1).isNote()) { if (itemID + 2 == player.playerItems[j]) { count += player.playerItemsN[j]; } } - if (!ItemData.itemIsNote[itemID + 1]) { + if (!ItemDefinition.lookup(itemID + 1).isNote()) { if (itemID + 1 == player.playerItems[j]) { count += player.playerItemsN[j]; } @@ -486,10 +488,10 @@ public class ItemAssistant { return false; } if ((freeSlots() >= 1 || playerHasItem(item, 1)) - && ItemData.itemStackable[item] || freeSlots() > 0 - && !ItemData.itemStackable[item]) { + && ItemDefinition.lookup(item).isStackable() || freeSlots() > 0 + && !ItemDefinition.lookup(item).isStackable()) { for (int i = 0; i < player.playerItems.length; i++) { - if (player.playerItems[i] == item + 1 && ItemData.itemStackable[item] + if (player.playerItems[i] == item + 1 && ItemDefinition.lookup(item).isStackable() && player.playerItems[i] > 0) { player.playerItems[i] = item + 1; if (player.playerItemsN[i] + amount < GameConstants.MAXITEM_AMOUNT @@ -559,17 +561,9 @@ public class ItemAssistant { public void getBonus() { for (int element : player.playerEquipment) { - if (element > -1) { - for (int j = 0; j < GameConstants.ITEM_LIMIT; j++) { - if (GameEngine.itemHandler.itemList[j] != null) { - if (GameEngine.itemHandler.itemList[j].itemId == element) { - for (int k = 0; k < player.playerBonus.length; k++) { - player.playerBonus[k] += GameEngine.itemHandler.itemList[j].Bonuses[k]; - } - break; - } - } - } + int[] bonuses = ItemDefinitions.getBonus(element); + for (int k = 0; k < player.playerBonus.length; k++) { + player.playerBonus[k] += bonuses[k]; } } } @@ -1201,7 +1195,7 @@ public class ItemAssistant { player.getPacketSender().sendFrame70(specAmount >= 2 ? 500 : 0, 0, --barId); player.getPacketSender().sendFrame70(specAmount >= 1 ? 500 : 0, 0, --barId); updateSpecialBar(); - sendWeapon(weapon, getItemName(weapon)); + sendWeapon(weapon, DeprecatedItems.getItemName(weapon)); } /** @@ -1298,7 +1292,7 @@ public class ItemAssistant { int targetSlot = ItemConstants.HAT; boolean canWearItem = true; if (player.playerItems[slot] == wearID + 1) { - getRequirements(getItemName(wearID).toLowerCase(), wearID); + getRequirements(DeprecatedItems.getItemName(wearID).toLowerCase(), wearID); targetSlot = ItemData.targetSlots[wearID]; if (player.duelRule[11] && targetSlot == 0) { @@ -1321,7 +1315,7 @@ public class ItemAssistant { player.getPacketSender().sendMessage("Wearing bodies has been disabled in this duel!"); return false; } - if (player.duelRule[16] && targetSlot == 5 || player.duelRule[16] && is2handed(getItemName(wearID).toLowerCase(), wearID)) { + if (player.duelRule[16] && targetSlot == 5 || player.duelRule[16] && is2handed(DeprecatedItems.getItemName(wearID).toLowerCase(), wearID)) { player.getPacketSender().sendMessage("Wearing shield has been disabled in this duel!"); return false; } @@ -1448,7 +1442,7 @@ public class ItemAssistant { int toEquipN = player.playerItemsN[slot]; int toRemove = player.playerEquipment[targetSlot]; int toRemoveN = player.playerEquipmentN[targetSlot]; - if (toEquip == toRemove + 1 && ItemData.itemStackable[toRemove]) { + if (toEquip == toRemove + 1 && ItemDefinition.lookup(toRemove).isStackable()) { deleteItem(toRemove, getItemSlot(toRemove), toEquipN); player.playerEquipmentN[targetSlot] += toEquipN; } else if (targetSlot != ItemConstants.SHIELD && targetSlot != ItemConstants.WEAPON) { @@ -1457,7 +1451,7 @@ public class ItemAssistant { player.playerEquipment[targetSlot] = toEquip - 1; player.playerEquipmentN[targetSlot] = toEquipN; } else if (targetSlot == ItemConstants.SHIELD) { - boolean wearing2h = is2handed(getItemName(player.playerEquipment[ItemConstants.WEAPON]).toLowerCase(), player.playerEquipment[ItemConstants.WEAPON]); + boolean wearing2h = is2handed(DeprecatedItems.getItemName(player.playerEquipment[ItemConstants.WEAPON]).toLowerCase(), player.playerEquipment[ItemConstants.WEAPON]); if (wearing2h) { // remove the weapon, add to inventory toRemove = player.playerEquipment[player.playerWeapon]; @@ -1477,7 +1471,7 @@ public class ItemAssistant { toRemove = -1; toRemoveN = 0; } - boolean is2h = is2handed(getItemName(wearID).toLowerCase(), wearID); + boolean is2h = is2handed(DeprecatedItems.getItemName(wearID).toLowerCase(), wearID); boolean wearingShield = player.playerEquipment[ItemConstants.SHIELD] > 0; boolean wearingWeapon = player.playerEquipment[ItemConstants.WEAPON] > 0; if (is2h) { @@ -1535,7 +1529,7 @@ public class ItemAssistant { player.getOutStream().endFrameVarSizeWord(); player.flushOutStream(); } - sendWeapon(player.playerEquipment[player.playerWeapon], getItemName(player.playerEquipment[player.playerWeapon])); + sendWeapon(player.playerEquipment[player.playerWeapon], DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon])); resetBonus(); getBonus(); writeBonus(); @@ -1571,7 +1565,7 @@ public class ItemAssistant { player.getItemAssistant() .sendWeapon( player.playerEquipment[player.playerWeapon], - ItemAssistant + DeprecatedItems .getItemName(player.playerEquipment[player.playerWeapon])); resetBonus(); getBonus(); @@ -1607,7 +1601,7 @@ public class ItemAssistant { player.playerEquipment[slot] = -1; player.playerEquipmentN[slot] = 0; sendWeapon(player.playerEquipment[ItemConstants.WEAPON], - getItemName(player.playerEquipment[ItemConstants.WEAPON])); + DeprecatedItems.getItemName(player.playerEquipment[ItemConstants.WEAPON])); resetBonus(); getBonus(); writeBonus(); @@ -1648,7 +1642,7 @@ public class ItemAssistant { player.playerEquipment[slot] = -1; player.playerEquipmentN[slot] = 0; sendWeapon(player.playerEquipment[player.playerWeapon], - getItemName(player.playerEquipment[player.playerWeapon])); + DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon])); resetBonus(); getBonus(); writeBonus(); @@ -1815,11 +1809,11 @@ public class ItemAssistant { if (player.playerItemsN[fromSlot] <= 0) { return false; } - if (!ItemData.itemIsNote[player.playerItems[fromSlot] - 1]) { + if (!ItemDefinition.lookup(player.playerItems[fromSlot] - 1).isNote()) { if (player.playerItems[fromSlot] <= 0) { return false; } - if (ItemData.itemStackable[player.playerItems[fromSlot] - 1] || player.playerItemsN[fromSlot] > 1) { + if (ItemDefinition.lookup(player.playerItems[fromSlot] - 1).isStackable() || player.playerItemsN[fromSlot] > 1) { int toBankSlot = 0; boolean alreadyInBank = false; for (int i = 0; i < ItemConstants.BANK_SIZE; i++) { @@ -1942,11 +1936,11 @@ public class ItemAssistant { return false; } } - } else if (ItemData.itemIsNote[player.playerItems[fromSlot] - 1] && !ItemData.itemIsNote[player.playerItems[fromSlot] - 2]) { + } else if (ItemDefinition.lookup(player.playerItems[fromSlot] - 1).isNote() && !ItemDefinition.lookup(player.playerItems[fromSlot] - 2).isNote()) { if (player.playerItems[fromSlot] <= 0) { return false; } - if (ItemData.itemStackable[player.playerItems[fromSlot] - 1] || player.playerItemsN[fromSlot] > 1) { + if (ItemDefinition.lookup(player.playerItems[fromSlot] - 1).isStackable() || player.playerItemsN[fromSlot] > 1) { int toBankSlot = 0; boolean alreadyInBank = false; for (int i = 0; i < ItemConstants.BANK_SIZE; i++) { @@ -2112,7 +2106,7 @@ public class ItemAssistant { } if (!cantWithdrawCuzMaxStack) { if (!player.takeAsNote) { - if (ItemData.itemStackable[player.bankItems[fromSlot] - 1]) { + if (ItemDefinition.lookup(player.bankItems[fromSlot] - 1).isStackable()) { if (player.bankItemsN[fromSlot] > amount) { if (addItem(player.bankItems[fromSlot] - 1, amount)) { player.bankItemsN[fromSlot] -= amount; @@ -2143,7 +2137,7 @@ public class ItemAssistant { resetBank(); resetItems(5064); } - } else if (player.takeAsNote && ItemData.itemIsNote[player.bankItems[fromSlot]]) { + } else if (player.takeAsNote && ItemDefinition.lookup(player.bankItems[fromSlot]).isNote()) { if (player.bankItemsN[fromSlot] > amount) { if (addItem(player.bankItems[fromSlot], amount)) { player.bankItemsN[fromSlot] -= amount; @@ -2160,7 +2154,7 @@ public class ItemAssistant { } } else { player.getPacketSender().sendMessage("This item can't be withdrawn as a note."); - if (ItemData.itemStackable[player.bankItems[fromSlot] - 1]) { + if (ItemDefinition.lookup(player.bankItems[fromSlot] - 1).isStackable()) { if (player.bankItemsN[fromSlot] > amount) { if (addItem(player.bankItems[fromSlot] - 1, amount)) { player.bankItemsN[fromSlot] -= amount; @@ -2199,10 +2193,6 @@ public class ItemAssistant { } } - public boolean isStackable(int itemID) { - return ItemData.itemStackable[itemID]; - } - /** * Update Equip tab **/ @@ -2500,7 +2490,7 @@ public class ItemAssistant { for (int i = 0; i < player.playerItems.length; i ++) { int _id = player.playerItems[i]; int _amt = player.playerItemsN[i]; - if (_id <= 0 || (_id == itemID && isStackable(_id) && _amt + amount <= Integer.MAX_VALUE)) { + if (_id <= 0 || (_id == itemID && ItemDefinition.lookup(_id).isStackable() && _amt + amount <= Integer.MAX_VALUE)) { freeS++; } } @@ -2516,29 +2506,6 @@ public class ItemAssistant { return -1; } - public static String getItemName(int ItemID) { - for (int i = 0; i < GameConstants.ITEM_LIMIT; i++) { - if (GameEngine.itemHandler.itemList[i] != null) { - if (GameEngine.itemHandler.itemList[i].itemId == ItemID) { - return GameEngine.itemHandler.itemList[i].itemName; - } - } - } - return "Unarmed"; - } - - public int getItemId(String itemName) { - for (int i = 0; i < GameConstants.ITEM_LIMIT; i++) { - if (GameEngine.itemHandler.itemList[i] != null) { - if (GameEngine.itemHandler.itemList[i].itemName - .equalsIgnoreCase(itemName)) { - return GameEngine.itemHandler.itemList[i].itemId; - } - } - } - return -1; - } - public int getItemSlot(int ItemID) { for (int i = 0; i < player.playerItems.length; i++) { if (player.playerItems[i] - 1 == ItemID) { @@ -2597,27 +2564,4 @@ public class ItemAssistant { return false; } - public int getUnnotedItem(int ItemID) { - int newId = ItemID - 1; - String NotedName = ""; - for (int i = 0; i < GameConstants.ITEM_LIMIT; i++) { - if (GameEngine.itemHandler.itemList[i] != null) { - if (GameEngine.itemHandler.itemList[i].itemId == ItemID) { - NotedName = GameEngine.itemHandler.itemList[i].itemName; - } - } - } - for (int i = 0; i < GameConstants.ITEM_LIMIT; i++) { - if (GameEngine.itemHandler.itemList[i] != null) { - if (GameEngine.itemHandler.itemList[i].itemName == NotedName) { - if (GameEngine.itemHandler.itemList[i].itemDescription.startsWith("Swap this note at any bank for a") == false) { - newId = GameEngine.itemHandler.itemList[i].itemId; - break; - } - } - } - } - return newId; - } - } diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/ItemData.java b/2006Scape Server/src/main/java/com/rs2/game/items/ItemData.java index 6440e188..1d016d4e 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/ItemData.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/ItemData.java @@ -4,8 +4,9 @@ import java.io.File; import java.io.FileInputStream; import java.io.IOException; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; -import com.rs2.GameEngine; public class ItemData { @@ -148,7 +149,7 @@ public class ItemData { "sallet", "Facemask", "Bearhead"}; public static boolean isFullBody(int itemId) { - String weapon = getItemName(itemId); + String weapon = ItemDefinition.lookup(itemId).getName(); if (weapon == null) { return false; } @@ -161,7 +162,7 @@ public class ItemData { } public static boolean isFullHelm(int itemId) { - String weapon = getItemName(itemId); + String weapon = ItemDefinition.lookup(itemId).getName(); if (weapon == null) { return false; } @@ -174,7 +175,7 @@ public class ItemData { } public static boolean isFullMask(int itemId) { - String weapon = getItemName(itemId); + String weapon = ItemDefinition.lookup(itemId).getName(); if (weapon == null) { return false; } @@ -186,54 +187,11 @@ public class ItemData { return false; } - public static String getItemName(int id) { - for (ItemList element : GameEngine.itemHandler.itemList) { - if (element != null) { - if (element.itemId == id) { - return element.itemName; - } - } - } - return null; - } - - public static boolean[] itemStackable = new boolean[GameConstants.ITEM_LIMIT]; - public static boolean[] itemIsNote = new boolean[GameConstants.ITEM_LIMIT]; public static int[] targetSlots = new int[GameConstants.ITEM_LIMIT]; static { int counter = 0; int c; - try { - FileInputStream dataIn = new FileInputStream(new File("./data/data/stackable.dat")); - while ((c = dataIn.read()) != -1) { - if (c == 0) { - itemStackable[counter] = false; - itemStackable[291] = true; - } else { - itemStackable[counter] = true; - } - counter++; - } - dataIn.close(); - } catch (IOException e) { - System.out.println("Critical error while loading stackabledata! Trace:"); - e.printStackTrace(); - } - - counter = 0; - try { - FileInputStream dataIn = new FileInputStream(new File("./data/data/notes.dat")); - while ((c = dataIn.read()) != -1) { - itemIsNote[counter] = c == 0; - counter++; - } - dataIn.close(); - } catch (IOException e) { - System.out.println("Critical error while loading notedata! Trace:"); - e.printStackTrace(); - } - counter = 0; try { FileInputStream dataIn = new FileInputStream(new File("./data/data/equipment.dat")); diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinition.java b/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinition.java deleted file mode 100644 index 977c2ac8..00000000 --- a/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinition.java +++ /dev/null @@ -1,351 +0,0 @@ -package com.rs2.game.items; - -import java.io.*; -import java.util.ArrayList; -import java.util.Arrays; - -import org.apache.commons.lang3.ArrayUtils; -import org.json.JSONObject; - -public class ItemDefinition { - - public static ItemDefinition getDefs()[] { - return definitions; - } - - public ItemDefinition() { - name = null; - itemDescription = null; - shopValue = 0; - lowAlch = 0; - highAlch = 0; - isStackable = false; - isNoteable = false; - weight = 0; - bonuses = null; - stand = -1; - walk = -1; - run = -1; - turn90left = -1; - turn90right = -1; - turn180 = -1; - attack = -1; - block = -1; - id = -1; - } - - public ItemDefinition(String iname, String idescription, int ishopvalue, int ilowalch, int ihighalch, boolean iisstackable, boolean iisnoteable, - int iweight, double[] ibonuses, int istand, int iwalk, int irun, int iturn90left, int iturn90right, int iturn180, - int iattack, int iblock, int iid) { - this.name = iname; - this.itemDescription = idescription; - this.shopValue = ishopvalue; - this.lowAlch = ilowalch; - this.highAlch = ihighalch; - this.isStackable = iisstackable; - this.isNoteable = iisnoteable; - this.weight = iweight; - this.bonuses = ibonuses; - this.stand = istand; - this.walk = iwalk; - this.run = irun; - this.turn90left = iturn90left; - this.turn90right = iturn90right; - this.turn180 = iturn180; - this.attack = iattack; - this.block = iblock; - this.id = iid; - } - - private int id; - - public int getId() { - return id; - } - - - /** - * Reads the definitions from the file. - */ - public static void read() { - ArrayList definitionsAL = new ArrayList<>(); - try (BufferedReader br = new BufferedReader(new FileReader("./data/data/itemdef.json"))) { - String line; - while ((line = br.readLine()) != null) { - definitionsAL.add(fromString(line)); - } - } catch (Exception e) { - e.printStackTrace(); - } - definitions = Arrays.copyOf(definitionsAL.toArray(), definitionsAL.size(), ItemDefinition[].class); - } - - /** - * The item definition cache. - */ - public static ItemDefinition[] definitions; - - /** - * The total items read from the definitions. - */ - public static int total; - - /** - * The item name. - */ - public String name; - - /** - * Returns the name of the item. - * @return - */ - public static String getName(int id) { - return definitions[id].name; - } - - /** - * The item description. - */ - public String itemDescription; - - /** - * Returns the description of an item. - */ - public static String getDescription(int id) { - return definitions[id].itemDescription; - } - - /** - * The item price. - */ - public int shopValue; - - /** - * Returns the price of an item. - */ - public static int getPrice(int id) { - return definitions[id].shopValue; - } - - /** - * The low alch value. - */ - public int lowAlch; - - /** - * Returns the low alch value of an item. - */ - public static int getLow(int id) { - return definitions[id].lowAlch; - } - - /** - * The high alch value. - */ - public int highAlch; - - /** - * Returns the high alch value of an item. - */ - public static int getHigh(int id) { - return definitions[id].highAlch; - } - - /** - * Can the item be stacked? - */ - public boolean isStackable; - - /** - * Returns whether or not the item can be stacked. - */ - public static boolean canStack(int id) { - return definitions[id].isStackable; - } - - /** - * Can the item be noted? - */ - public boolean isNoteable; - - /** - * Returns whether or not the item can be noted. - */ - public static boolean canNote(int id) { - return definitions[id].isNoteable; - } - - /** - * The weight of an item. - */ - public double weight; - - /** - * Returns the weight of an item. - */ - public static double getWeight(int id) { - if (id >= 0 && id < definitions.length) - return definitions[id].weight; - - System.out.println("WARNING: id " + id + " doesn't have a definition! 2.147kg is used as weight."); - return 2.147; - } - - /** - * The bonuses of an item. - */ - public double[] bonuses; - - /** - * Returns the array of bonuses for an item. - */ - public double[] getBonuses(int id) { - return definitions[id].bonuses; - } - - /** - * The stand animation of an item. - */ - public int stand; - - /** - * Returns the stand animation of an item. - */ - public static int getStand(int id) { - return definitions[id].stand; - } - - /** - * The walk animation of an item. - */ - public int walk; - - /** - * Returns the walk animation of an item. - */ - public static int getWalk(int id) { - return definitions[id].walk; - } - - /** - * The run animation of an item. - */ - public int run; - - /** - * Returns the run animation of an item. - */ - public static int getRun(int id) { - return definitions[id].run; - } - - /** - * The 90-degree left turn animation of an item. - */ - public int turn90left; - - /** - * Returns the 90-degree left turn animation of an item. - */ - public static int get90left(int id) { - return definitions[id].turn90left; - } - - /** - * The 90-degree right turn animation of an item. - */ - public int turn90right; - - /** - * Returns the 90-degree right turn animation of an item. - */ - public static int get90right(int id) { - return definitions[id].turn90right; - } - - /** - * The 180-degree turn animation of an item. - */ - public int turn180; - - /** - * Returns the 180-degree turn animation of an item. - */ - public static int get180(int id) { - return definitions[id].turn180; - } - - /** - * The attack animation of an item. - */ - public int attack; - - /** - * Returns the attack animation of an item - */ - public static int getAttack(int id) { - return definitions[id].attack; - } - - /** - * The block animation of an item. - */ - public int block; - - /** - * Returns the block animation of an item - */ - public static int getBlock(int id) { - return definitions[id].block; - } - - public static ItemDefinition fromString(String idString) { - JSONObject jobj = new JSONObject(idString); - - Object[] bonusObjArr = jobj.getJSONArray("bonuses").toList().toArray(); - double[] pbonuses = ArrayUtils.toPrimitive(Arrays.copyOf(bonusObjArr, bonusObjArr.length, Double[].class)); - - return new ItemDefinition(jobj.getString("name"), - jobj.getString("itemDescription"), - jobj.getInt("shopValue"), - jobj.getInt("lowAlch"), - jobj.getInt("highAlch"), - jobj.getBoolean("isStackable"), - jobj.getBoolean("isNoteable"), - jobj.getInt("weight"), - pbonuses, - jobj.getInt("stand"), - jobj.getInt("walk"), - jobj.getInt("run"), - jobj.getInt("turn90left"), - jobj.getInt("turn90right"), - jobj.getInt("turn180"), - jobj.getInt("attack"), - jobj.getInt("block"), - jobj.getInt("id")); - } - - @Override - public String toString() { - return "{" + - "name:\"" + name + '\"' + - ", itemDescription:\"" + itemDescription + '\"' + - ", shopValue:" + shopValue + - ", lowAlch:" + lowAlch + - ", highAlch:" + highAlch + - ", isStackable:" + isStackable + - ", isNoteable:" + isNoteable + - ", weight:" + weight + - ", bonuses:" + Arrays.toString(bonuses) + - ", stand:" + stand + - ", walk:" + walk + - ", run:" + run + - ", turn90left:" + turn90left + - ", turn90right:" + turn90right + - ", turn180:" + turn180 + - ", attack:" + attack + - ", block:" + block + - ", id:" + id + - '}'; - } -} \ No newline at end of file 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 new file mode 100644 index 00000000..f7022ce7 --- /dev/null +++ b/2006Scape Server/src/main/java/com/rs2/game/items/ItemDefinitions.java @@ -0,0 +1,112 @@ +package com.rs2.game.items; + +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.lang.reflect.Type; +import java.util.HashMap; +import java.util.Map; + +import com.google.gson.Gson; +import com.google.gson.reflect.TypeToken; +import com.rs2.util.Misc; + +/** + * Loads the bonuses and weights from a json file. + * + * @author Advocatus + * + */ +public class ItemDefinitions { + + private static Map defintions = new HashMap<>(); + + private static final int[] EMPTY_BONUSES = new int[] { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; + + /** + * Gets the array of bonuses associated with this item id. + * + * @param id The item id. + * @return The bonuses or an empty array. + */ + public static int[] getBonus(int id) { + Definition def = defintions.get(id); + return def != null && def.bonuses != null ? def.bonuses : EMPTY_BONUSES; + } + + /** + * Gets the weight of the item. + * + * @param id The item id. + * @return The weight or 0.0 by default. + */ + public static double getWeight(int id) { + Definition def = defintions.get(id); + return def != null ? def.weight : 0.0; + } + + public static void load() { + Gson gson = new Gson(); + + try { + Type collectionType = new TypeToken() { + }.getType(); + ItemData[] data = gson.fromJson(new FileReader("./data/cfg/ItemDefinitions.json"), collectionType); + + for (ItemData item : data) { + defintions.put(item.id, new Definition(item)); + } + } catch (FileNotFoundException fileex) { + Misc.println("items.json: file not found."); + } + } + + private static class Definition { + private double weight; + private int[] bonuses; + + private Definition(ItemData item) { + this.weight = item.weight; + this.bonuses = item.bonuses != null ? item.bonuses.getBonuses() : null; + } + } + + private static class ItemData { + private int id; + private double weight = 0.0; + private Bonuses bonuses; + } + + private static class Bonuses { + int attackStab; + int attackSlash; + int attackCrush; + int attackMagic; + int attackRange; + int defenceStab; + int defenceSlash; + int defenceCrush; + int defenceMagic; + int defenceRange; + int strengthBonus; + int prayerBonus; + + public int[] getBonuses() { + int[] bonuses = new int[12]; + + bonuses[0] = this.attackStab; + bonuses[1] = this.attackSlash; + bonuses[2] = this.attackCrush; + bonuses[3] = this.attackMagic; + bonuses[4] = this.attackRange; + bonuses[5] = this.defenceStab; + bonuses[6] = this.defenceSlash; + bonuses[7] = this.defenceCrush; + bonuses[8] = this.defenceMagic; + bonuses[9] = this.defenceRange; + bonuses[10] = this.strengthBonus; + bonuses[11] = this.prayerBonus; + + return bonuses; + } + } +} diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/ItemList.java b/2006Scape Server/src/main/java/com/rs2/game/items/ItemList.java deleted file mode 100644 index 5cb8d8ce..00000000 --- a/2006Scape Server/src/main/java/com/rs2/game/items/ItemList.java +++ /dev/null @@ -1,16 +0,0 @@ -package com.rs2.game.items; - -public class ItemList { - - public int itemId; - public String itemName; - public String itemDescription; - public double ShopValue; - public double LowAlch; - public double HighAlch; - public int[] Bonuses = new int[100]; - - public ItemList(int _itemId) { - itemId = _itemId; - } -} 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 ea2b9c0a..c16ef62d 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 @@ -131,8 +131,8 @@ public class UseItem { WeaponPoison.execute(player, itemUsed, useWith); player.getGlassBlowing().ItemOnItem(itemUsed, useWith); //CapeDye.execute(c, itemUsed, useWith); - if (ItemAssistant.getItemName(itemUsed).contains("(") - && ItemAssistant.getItemName(useWith).contains("(")) { + if (DeprecatedItems.getItemName(itemUsed).contains("(") + && DeprecatedItems.getItemName(useWith).contains("(")) { player.getPotMixing().mixPotion2(itemUsed, useWith); } BattleStaffs.makeBattleStaff(player, itemUsed, useWith); diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/Weight.java b/2006Scape Server/src/main/java/com/rs2/game/items/Weight.java index 8f41480f..e9564f13 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/Weight.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/Weight.java @@ -5,7 +5,7 @@ import com.rs2.game.players.Player; /** * @author somedude, credits to Galkon for item weights */ -public class Weight extends ItemDefinition { +public class Weight { /** * Calculates the weight when doing actions @@ -16,27 +16,28 @@ public class Weight extends ItemDefinition { * - deleteitem, additem, equip, unequip. */ public static void calcWeight(Player c, int item, String action) { + double weight = ItemDefinitions.getWeight(item); if (action.equalsIgnoreCase("deleteitem")) { - if (getWeight(item) > 99.20) { - c.weight -= getWeight(item) / 100; + if (weight > 99.20) { + c.weight -= weight / 100; if (c.weight < 0) { c.weight = 0.0; } c.getPacketSender().writeWeight((int) c.weight); return; } - c.weight -= getWeight(item) / 10; + c.weight -= weight / 10; if (c.weight < 0) { c.weight = 0.0; } c.getPacketSender().writeWeight((int) c.weight); } else if (action.equalsIgnoreCase("additem")) { - if (getWeight(item) > 99.20) { - c.weight += getWeight(item) / 100; + if (weight > 99.20) { + c.weight += weight / 100; c.getPacketSender().writeWeight((int) c.weight); return; } - c.weight += getWeight(item) / 10; + c.weight += weight / 10; c.getPacketSender().writeWeight((int) c.weight); } } diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/impl/Dye.java b/2006Scape Server/src/main/java/com/rs2/game/items/impl/Dye.java index 5d7b69de..3ac52a9a 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/impl/Dye.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/impl/Dye.java @@ -1,12 +1,13 @@ package com.rs2.game.items.impl; import com.rs2.GameConstants; -import com.rs2.game.items.ItemAssistant; -import com.rs2.game.items.ItemData; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import static com.rs2.game.content.StaticItemList.*; +import org.apollo.cache.def.ItemDefinition; + /** * Dye.java * @@ -51,13 +52,13 @@ public enum Dye { }; public static boolean blockDye(Player player, Dye dye, int itemUsed, int useWith) { - if (itemUsed == dye.getItemUsed() && ItemAssistant.getItemName(useWith).equalsIgnoreCase("Cape") && ItemData.itemIsNote[useWith]) { + if (itemUsed == dye.getItemUsed() && DeprecatedItems.getItemName(useWith).equalsIgnoreCase("Cape") && ItemDefinition.lookup(useWith).isNote()) { player.getPacketSender().sendMessage("You can't dye a noted cape."); return true; - } else if (itemUsed == dye.getItemUsed() && ItemAssistant.getItemName(useWith).equalsIgnoreCase("Cape") && useWith == dye.getReward() && !ItemData.itemIsNote[useWith]) { + } else if (itemUsed == dye.getItemUsed() && DeprecatedItems.getItemName(useWith).equalsIgnoreCase("Cape") && useWith == dye.getReward() && !ItemDefinition.lookup(useWith).isNote()) { player.getPacketSender().sendMessage("That cape is already that color."); return true; - } else if (itemUsed == dye.getItemUsed() && !ItemAssistant.getItemName(useWith).equalsIgnoreCase("Cape")) { + } else if (itemUsed == dye.getItemUsed() && !DeprecatedItems.getItemName(useWith).equalsIgnoreCase("Cape")) { return true; } return false; @@ -68,7 +69,7 @@ public enum Dye { if (blockDye(player, cape, itemUsed, useWith)) { return; } - if (itemUsed == cape.getItemUsed() && ItemAssistant.getItemName(useWith).equalsIgnoreCase("Cape") && !ItemData.itemIsNote[useWith] && useWith != cape.getReward()) { + if (itemUsed == cape.getItemUsed() && DeprecatedItems.getItemName(useWith).equalsIgnoreCase("Cape") && !ItemDefinition.lookup(useWith).isNote() && useWith != cape.getReward()) { player.getItemAssistant().deleteItem(itemUsed, 1); player.getItemAssistant().deleteItem(useWith, 1); player.getItemAssistant().addItem(cape.getReward(), 1); diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/impl/HandleEmpty.java b/2006Scape Server/src/main/java/com/rs2/game/items/impl/HandleEmpty.java index be4a227e..27077c12 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/impl/HandleEmpty.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/impl/HandleEmpty.java @@ -1,7 +1,7 @@ package com.rs2.game.items.impl; import com.rs2.game.content.music.sound.SoundList; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -15,7 +15,7 @@ public class HandleEmpty { } public static int filledToEmpty(Player c, int id) { - String itemName = ItemAssistant.getItemName(id); + String itemName = DeprecatedItems.getItemName(id); if (!itemName.contains("Ring") && !itemName.contains("necklace")) { if (itemName.contains("(3)") || itemName.contains("(4)") || itemName.contains("(2)") || itemName.contains("(1)") || itemName.contains("Weapon poison")) { if (id != 1712 && id != 1710 && id != 1708 && id != 1706) { @@ -51,7 +51,7 @@ public class HandleEmpty { } public static void handleEmptyItem(Player c, int itemId, int giveItem) { - final String name = ItemAssistant.getItemName(itemId); + final String name = DeprecatedItems.getItemName(itemId); c.getPacketSender().sendMessage("You empty your " + name + "."); c.getItemAssistant().deleteItem(itemId, 1); c.getItemAssistant().addItem(giveItem, 1); diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/impl/PotionMixing.java b/2006Scape Server/src/main/java/com/rs2/game/items/impl/PotionMixing.java index e5cac21e..0b3c0888 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/impl/PotionMixing.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/impl/PotionMixing.java @@ -1,6 +1,6 @@ package com.rs2.game.items.impl; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -16,8 +16,8 @@ public class PotionMixing { } public void mixPotion2(int id, int id2) { - String id11 = ItemAssistant.getItemName(id); - String id22 = ItemAssistant.getItemName(id2); + String id11 = DeprecatedItems.getItemName(id); + String id22 = DeprecatedItems.getItemName(id2); if (id11.substring(0, id11.indexOf("(")).equalsIgnoreCase( id22.substring(0, id22.indexOf("(")))) { try { @@ -38,9 +38,9 @@ public class PotionMixing { c.getItemAssistant().deleteItem(id2, c.getItemAssistant().getItemSlot(id2), 1); c.getItemAssistant().addItem( - c.getItemAssistant().getItemId(item1), 1); + DeprecatedItems.getItemId(item1), 1); c.getItemAssistant().addItem( - c.getItemAssistant().getItemId(item2), 1); + DeprecatedItems.getItemId(item2), 1); } else { amount1 = totalAmount; String item1 = id11.substring(0, id11.indexOf("(") + 1) @@ -50,7 +50,7 @@ public class PotionMixing { c.getItemAssistant().deleteItem(id2, c.getItemAssistant().getItemSlot(id2), 1); c.getItemAssistant().addItem( - c.getItemAssistant().getItemId(item1), 1); + DeprecatedItems.getItemId(item1), 1); c.getItemAssistant().addItem(229, 1); } } catch (Exception e) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/items/impl/WeaponPoison.java b/2006Scape Server/src/main/java/com/rs2/game/items/impl/WeaponPoison.java index aa1c50bc..7c9d1a15 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/items/impl/WeaponPoison.java +++ b/2006Scape Server/src/main/java/com/rs2/game/items/impl/WeaponPoison.java @@ -1,7 +1,8 @@ package com.rs2.game.items.impl; import java.util.HashMap; -import com.rs2.game.items.ItemAssistant; + +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; /** @@ -135,7 +136,7 @@ public class WeaponPoison { if (weapon != null) { for (int element[] : weapon.getNewItemId()) { if (itemUse == element[0]) { - player.getPacketSender().sendMessage("You make a " + ItemAssistant.getItemName(element[1]) + "."); + player.getPacketSender().sendMessage("You make a " + DeprecatedItems.getItemName(element[1]) + "."); player.getItemAssistant().deleteItem(element[0], player.getItemAssistant().getItemSlot(element[0]), 1); player.getItemAssistant().deleteItem(weapon.getItemId(), player.getItemAssistant().getItemSlot(weapon.getItemId()), 1); player.getItemAssistant().addItem(VIAL, 1); diff --git a/2006Scape Server/src/main/java/com/rs2/game/npcs/Npc.java b/2006Scape Server/src/main/java/com/rs2/game/npcs/Npc.java index d7e351bf..44773410 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/npcs/Npc.java +++ b/2006Scape Server/src/main/java/com/rs2/game/npcs/Npc.java @@ -3,7 +3,7 @@ package com.rs2.game.npcs; import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; import com.rs2.util.Misc; @@ -66,7 +66,7 @@ public class Npc { public void shearSheep(Player player, int itemNeeded, int itemGiven, int animation, final int currentId, final int newId, int transformTime) { if (!player.getItemAssistant().playerHasItem(itemNeeded)) { - player.getPacketSender().sendMessage("You need " + ItemAssistant.getItemName(itemNeeded).toLowerCase() + " to do that."); + player.getPacketSender().sendMessage("You need " + DeprecatedItems.getItemName(itemNeeded).toLowerCase() + " to do that."); return; } if (transformId == newId) { @@ -81,7 +81,7 @@ public class Npc { } requestTransform(newId); player.getItemAssistant().addItem(itemGiven, 1); - player.getPacketSender().sendMessage("You get some " + ItemAssistant.getItemName(itemGiven).toLowerCase() + "."); + player.getPacketSender().sendMessage("You get some " + DeprecatedItems.getItemName(itemGiven).toLowerCase() + "."); CycleEventHandler.getSingleton().addEvent(player, new CycleEvent() { @Override 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 7449d333..51a2da11 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 @@ -1,8 +1,6 @@ package com.rs2.game.npcs.drops; import com.google.gson.Gson; -import com.rs2.GameEngine; -import com.rs2.game.items.ItemList; import com.rs2.util.Misc; import com.rs2.util.NpcDrop; @@ -49,40 +47,11 @@ public class NPCDropsHandler { } return new ItemDrop[]{ - new ItemDrop(i("bones"), 1, 0), + new ItemDrop(526, 1, 0), new ItemDrop(995, new int[]{ 1, 10 }, 3), new ItemDrop(2677, 1, 512) }; } - /** - * short version of getItemId - * - * @param itemName name of the item - * - * @return itemId - */ - public static int i(String itemName) { - return getItemId(itemName); - } - - /** - * Item id main method - * - * @param itemName name of the item - * - * @return itemId - */ - public static int getItemId(String itemName) { - for (ItemList i : GameEngine.itemHandler.itemList) { - if (i != null) { - if (i.itemName.equalsIgnoreCase(itemName)) { - return i.itemId; - } - } - } - return -1; - } - /** * Misc.random in shorter form * diff --git a/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectDefaults.java b/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectDefaults.java index 449fcf63..7aef32c3 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectDefaults.java +++ b/2006Scape Server/src/main/java/com/rs2/game/objects/ObjectDefaults.java @@ -1,7 +1,8 @@ package com.rs2.game.objects; +import org.apollo.cache.def.ObjectDefinition; + import com.rs2.game.players.Player; -import com.rs2.world.clip.ObjectDefinition; /** * ObjectDefaults @@ -17,7 +18,7 @@ public class ObjectDefaults { WEST = 3; public static int getObjectType(Player player, int objectType) { - String objectName = ObjectDefinition.getObjectDef(objectType).name; + String objectName = ObjectDefinition.lookup(objectType).getName(); if (objectName.contains("Wardrobe") || objectName.contains("chest") || objectName.contains("Cupboard") || objectName.contains("Coffin")) { return 10; } else if (objectName.contains("Curtain")) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/objects/Objects.java b/2006Scape Server/src/main/java/com/rs2/game/objects/Objects.java index 0a19b4b9..6029fbff 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/objects/Objects.java +++ b/2006Scape Server/src/main/java/com/rs2/game/objects/Objects.java @@ -1,6 +1,6 @@ package com.rs2.game.objects; -import com.rs2.world.clip.ObjectDefinition; +import org.apollo.cache.def.ObjectDefinition; public class Objects { @@ -39,7 +39,7 @@ public class Objects { } public int[] getObjectSize() { - ObjectDefinition def = ObjectDefinition.getObjectDef(objectId); + ObjectDefinition def = ObjectDefinition.lookup(objectId); if (def == null) { return new int[] {1, 1}; } @@ -49,11 +49,11 @@ public class Objects { int xLength; int yLength; if (objectFace != 1 && objectFace != 3) { - xLength = def.xLength(); - yLength = def.yLength(); + xLength = def.getWidth(); + yLength = def.getLength(); } else { - xLength = def.yLength(); - yLength = def.xLength(); + xLength = def.getLength(); + yLength = def.getWidth(); } return new int[] {xLength, yLength}; 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 b99a9802..a715932d 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 @@ -30,7 +30,7 @@ import com.rs2.game.content.traveling.DesertCactus; import com.rs2.game.globalworldobjects.ClimbOther; import com.rs2.game.globalworldobjects.ClimbOther.ClimbData; import com.rs2.game.globalworldobjects.PassDoor; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.impl.LightSources; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.npcs.impl.MilkCow; @@ -2884,7 +2884,7 @@ public class ObjectsActions { if (player.ectofuntusBoneCrusherState.equals("Empty")) { player.getPacketSender().sendMessage("You need to load some bones."); } else if (player.ectofuntusBoneCrusherState.equals("Loaded")) { - player.getPacketSender().sendMessage(ItemAssistant.getItemName(player.ectofuntusBoneUsed) + " loaded and ready to be grinded."); + player.getPacketSender().sendMessage(DeprecatedItems.getItemName(player.ectofuntusBoneUsed) + " loaded and ready to be grinded."); } else if (player.ectofuntusBoneCrusherState.equals("Bin")) { player.getPacketSender().sendMessage("Bonemeal is ready to be collected from the bin."); } else { diff --git a/2006Scape Server/src/main/java/com/rs2/game/objects/impl/Levers.java b/2006Scape Server/src/main/java/com/rs2/game/objects/impl/Levers.java index 89300217..7da89aca 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/objects/impl/Levers.java +++ b/2006Scape Server/src/main/java/com/rs2/game/objects/impl/Levers.java @@ -1,10 +1,11 @@ package com.rs2.game.objects.impl; +import org.apollo.cache.def.ObjectDefinition; + import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.players.Player; -import com.rs2.world.clip.ObjectDefinition; /** * Levers @@ -22,7 +23,7 @@ public class Levers { }; public static void pullLever(final Player player, int objectType) { - String objectName = ObjectDefinition.getObjectDef(objectType).name; + String objectName = ObjectDefinition.lookup(objectType).getName(); for (final int[] element : LEVERS) { if (player.objectX == element[0] && player.objectY == element[1] && objectName.equalsIgnoreCase("Lever")) { if (System.currentTimeMillis() - player.leverDelay > 3750) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/objects/impl/OtherObjects.java b/2006Scape Server/src/main/java/com/rs2/game/objects/impl/OtherObjects.java index c385a1c1..66f20678 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/objects/impl/OtherObjects.java +++ b/2006Scape Server/src/main/java/com/rs2/game/objects/impl/OtherObjects.java @@ -1,5 +1,7 @@ package com.rs2.game.objects.impl; +import org.apollo.cache.def.ObjectDefinition; + import com.rs2.GameConstants; import com.rs2.GameEngine; import com.rs2.event.CycleEvent; @@ -9,7 +11,6 @@ import com.rs2.game.content.traveling.DesertHeat; import com.rs2.game.objects.ObjectDefaults; import com.rs2.game.players.Player; import com.rs2.util.Misc; -import com.rs2.world.clip.ObjectDefinition; import com.rs2.world.clip.Region; public class OtherObjects { @@ -118,7 +119,7 @@ public class OtherObjects { } private static void handleSpecialObject(final Player player, final int objectType) { - String objectName = ObjectDefinition.getObjectDef(objectType).name; + String objectName = ObjectDefinition.lookup(objectType).getName(); if (objectType == 160 && player.getX() == 3096) { player.getPlayerAssistant().walkTo(0, 1); CycleEventHandler.getSingleton().addEvent(player, new CycleEvent() { 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 6e44e9a3..21cc7f5f 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 @@ -42,6 +42,7 @@ import com.rs2.game.globalworldobjects.DoubleGates; import com.rs2.game.globalworldobjects.GateHandler; import com.rs2.game.globalworldobjects.SingleGates; import com.rs2.game.items.*; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.impl.Greegree.MonkeyData; import com.rs2.game.items.impl.PotionMixing; import com.rs2.game.items.impl.Teles; @@ -2638,7 +2639,7 @@ public abstract class Player { public boolean wearing2h() { Client c = (Client) this; - String s = ItemAssistant.getItemName(c.playerEquipment[c.playerWeapon]); + String s = DeprecatedItems.getItemName(c.playerEquipment[c.playerWeapon]); if (s.contains("2h")) { return true; } diff --git a/2006Scape Server/src/main/java/com/rs2/game/players/PlayerAssistant.java b/2006Scape Server/src/main/java/com/rs2/game/players/PlayerAssistant.java index 5d5caf91..12859cc4 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/players/PlayerAssistant.java +++ b/2006Scape Server/src/main/java/com/rs2/game/players/PlayerAssistant.java @@ -17,8 +17,8 @@ import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.randomevents.RandomEventHandler; import com.rs2.game.content.skills.SkillData; import com.rs2.game.content.skills.SkillHandler; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.GameItem; -import com.rs2.game.items.ItemAssistant; import com.rs2.game.items.ItemConstants; import com.rs2.game.items.impl.LightSources; import com.rs2.game.items.impl.Greegree.MonkeyData; @@ -1143,7 +1143,7 @@ public class PlayerAssistant { if (player.getItemAssistant().playerHasItem(itemId, 1, itemSlot)) { player.getPacketSender().sendMessage( "You drink the " - + ItemAssistant.getItemName(itemId) + + DeprecatedItems.getItemName(itemId) .toLowerCase() + "."); player.foodDelay = System.currentTimeMillis(); // Actions @@ -1197,7 +1197,7 @@ public class PlayerAssistant { } if (canAlch) { int value = (int) Math.floor(player.getShopAssistant().getItemShopValue(itemId) * 0.4); - String itemName = ItemAssistant.getItemName(itemId).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemId).toLowerCase(); if (player.getPlayerAssistant().isPlayer()) { GameLogger.writeLog(player.playerName, "alchemy", player.playerName + " cast Low Alchemy on " + itemName + " for " + GameLogger.formatCurrency(value) + " coins"); } @@ -1266,7 +1266,7 @@ public class PlayerAssistant { } if (canAlch) { int value = (int) Math.floor(player.getShopAssistant().getItemShopValue(itemId) * 0.75); - String itemName = ItemAssistant.getItemName(itemId).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemId).toLowerCase(); if (player.getPlayerAssistant().isPlayer()) { GameLogger.writeLog(player.playerName, "alchemy", player.playerName + " cast High Alchemy on " + itemName + " for" + GameLogger.formatCurrency(value) + " coins"); } @@ -2283,7 +2283,7 @@ public class PlayerAssistant { public void unMorphPlayer() { sendSidebars(); - player.getItemAssistant().sendWeapon(player.playerEquipment[player.playerWeapon], ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon])); + player.getItemAssistant().sendWeapon(player.playerEquipment[player.playerWeapon], DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon])); if (player.playerEquipment[player.playerRing] == 6583 || player.playerEquipment[player.playerRing] == 7927) { int ring = player.playerEquipment[player.playerRing]; player.getItemAssistant().deleteEquipment(ring, player.playerRing); 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 5576beed..ef0e5a81 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 @@ -2,13 +2,16 @@ package com.rs2.game.players; import java.time.temporal.ValueRange; import java.util.concurrent.CopyOnWriteArrayList; + +import org.apollo.cache.def.ItemDefinition; + import com.rs2.event.CycleEvent; import com.rs2.event.CycleEventContainer; import com.rs2.event.CycleEventHandler; import com.rs2.game.content.minigames.castlewars.CastleWars; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.GameItem; import com.rs2.game.items.ItemData; -import com.rs2.game.items.ItemAssistant; import com.rs2.game.items.ItemConstants; import com.rs2.util.GameLogger; import com.rs2.util.Misc; @@ -148,7 +151,7 @@ public class Trading { } player.tradeConfirmed = false; o.tradeConfirmed = false; - if (!ItemData.itemStackable[itemID]) { + if (!ItemDefinition.lookup(itemID).isStackable()) { for (int a = 0; a < amount; a++) { for (GameItem item : offeredItems) { if (item.id == itemID) { @@ -272,7 +275,7 @@ public class Trading { } player.tradeConfirmed = false; o.tradeConfirmed = false; - if (!ItemData.itemStackable[itemID] && !ItemData.itemIsNote[itemID]) { + if (!ItemDefinition.lookup(itemID).isStackable() && !ItemDefinition.lookup(itemID).isNote()) { for (int a = 0; a < amount && a < 28; a++) { if (player.getItemAssistant().playerHasItem(itemID, 1)) { offeredItems.add(new GameItem(itemID, 1)); @@ -304,7 +307,7 @@ public class Trading { declineTrade(); return false; } - if (ItemData.itemStackable[itemID] || ItemData.itemIsNote[itemID]) { + if (ItemDefinition.lookup(itemID).isStackable() || ItemDefinition.lookup(itemID).isNote()) { boolean inTrade = false; for (GameItem item : offeredItems) { if (item.id == itemID) { @@ -447,10 +450,10 @@ public class Trading { } if (Count == 0) { - SendTrade = ItemAssistant.getItemName(item.id); + SendTrade = DeprecatedItems.getItemName(item.id); } else { SendTrade = SendTrade + "\\n" - + ItemAssistant.getItemName(item.id); + + DeprecatedItems.getItemName(item.id); } if (item.stackable) { @@ -479,10 +482,10 @@ public class Trading { } if (Count == 0) { - SendTrade = ItemAssistant.getItemName(item.id); + SendTrade = DeprecatedItems.getItemName(item.id); } else { SendTrade = SendTrade + "\\n" - + ItemAssistant.getItemName(item.id); + + DeprecatedItems.getItemName(item.id); } if (item.stackable) { SendTrade = SendTrade + " x " + SendAmount; @@ -502,7 +505,7 @@ public class Trading { } try { for (GameItem item : o.getTrading().offeredItems) { - String itemName = ItemAssistant.getItemName(item.id); + String itemName = DeprecatedItems.getItemName(item.id); if (item.id > 0) { player.getItemAssistant().addItem(item.id, item.amount); if (player.getPlayerAssistant().isPlayer()) { diff --git a/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java b/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java index 71bb5058..dc65fd21 100644 --- a/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java +++ b/2006Scape Server/src/main/java/com/rs2/game/shops/ShopAssistant.java @@ -1,11 +1,12 @@ package com.rs2.game.shops; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.GameConstants; import com.rs2.game.bots.BotHandler; import com.rs2.game.items.ItemData; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.ItemConstants; -import com.rs2.game.items.ItemDefinition; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; import com.rs2.util.GameLogger; @@ -101,8 +102,8 @@ public class ShopAssistant { double ShopValue = 1; double TotPrice = 0; double sellingRatio = isSelling ? 0.85 : 1; - if (ItemDefinition.getDefs()[ItemID] != null) { - ShopValue = ItemDefinition.getDefs()[ItemID].highAlch / 3.0 * 5.0 * sellingRatio; + if (ItemDefinition.lookup(ItemID) != null) { + ShopValue = ItemDefinition.lookup(ItemID).getValue() * sellingRatio; } TotPrice = ShopValue; @@ -133,19 +134,19 @@ public class ShopAssistant { ShopValue = BotHandler.getItemPrice(player.shopId, itemID); } if (player.shopId == 138 || player.shopId == 139 || player.shopId == 58) { - player.getPacketSender().sendMessage(ItemAssistant.getItemName(itemID) + ": currently costs " + SpecialValue + " tokkul."); + player.getPacketSender().sendMessage(DeprecatedItems.getItemName(itemID) + ": currently costs " + SpecialValue + " tokkul."); return; } if (player.shopId == PEST_SHOP) { - player.getPacketSender().sendMessage(ItemAssistant.getItemName(itemID)+": currently costs " + getPestItemValue(itemID) + " pest control points."); + player.getPacketSender().sendMessage(DeprecatedItems.getItemName(itemID)+": currently costs " + getPestItemValue(itemID) + " pest control points."); return; } if (player.shopId == CASTLE_SHOP) { - player.getPacketSender().sendMessage(ItemAssistant.getItemName(itemID)+": currently costs " + getCastleItemValue(itemID) + " castle wars tickets."); + player.getPacketSender().sendMessage(DeprecatedItems.getItemName(itemID)+": currently costs " + getCastleItemValue(itemID) + " castle wars tickets."); return; } if (player.shopId == RANGE_SHOP) { - player.getPacketSender().sendMessage(ItemAssistant.getItemName(itemID)+": currently costs " + getRGItemValue(itemID) + " archery tickets."); + player.getPacketSender().sendMessage(DeprecatedItems.getItemName(itemID)+": currently costs " + getRGItemValue(itemID) + " archery tickets."); return; } if (ShopValue >= 1000 && ShopValue < 1000000) { @@ -153,7 +154,7 @@ public class ShopAssistant { } else if (ShopValue >= 1000000) { ShopAdd = " (" + ShopValue / 1000000 + " million)"; } - player.getPacketSender().sendMessage(ItemAssistant.getItemName(itemID) + ": currently costs " + ShopValue + " coins" + ShopAdd); + player.getPacketSender().sendMessage(DeprecatedItems.getItemName(itemID) + ": currently costs " + ShopValue + " coins" + ShopAdd); } public int getCastleItemValue(int id) { @@ -274,7 +275,7 @@ public class ShopAssistant { **/ public void sellToShopPrice(int removeId, int removeSlot) { int unNotedItemID = getUnNoted(removeId); - String itemName = ItemAssistant.getItemName(unNotedItemID); + String itemName = DeprecatedItems.getItemName(unNotedItemID); for (int i : ItemConstants.ITEM_SELLABLE) { if (unNotedItemID == i) { player.getPacketSender().sendMessage("You can't sell " + itemName + "."); @@ -303,7 +304,7 @@ public class ShopAssistant { } if (canSellItem == false) { - player.getPacketSender().sendMessage("You can't sell " + ItemAssistant.getItemName(removeId).toLowerCase() + " to this store."); + player.getPacketSender().sendMessage("You can't sell " + DeprecatedItems.getItemName(removeId).toLowerCase() + " to this store."); } else { int ShopValue = (int) Math.floor(getItemShopValue(unNotedItemID, 1, true)); int tokkulValue = (int) Math.floor(getTokkulValue(unNotedItemID) *.85); @@ -334,7 +335,7 @@ public class ShopAssistant { public boolean sellItem(int itemID, int fromSlot, int amount) { int unNotedItemID = getUnNoted(itemID); - String itemName = ItemAssistant.getItemName(itemID).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemID).toLowerCase(); for (int i : ItemConstants.ITEM_SELLABLE) { if (i == unNotedItemID) { player.getPacketSender().sendMessage("You can't sell " + itemName + "."); @@ -410,7 +411,7 @@ public class ShopAssistant { currency = 995; } - boolean isStackable = ItemDefinition.getDefs()[itemID].isStackable; + boolean isStackable = ItemDefinition.lookup(itemID).isStackable(); if (!player.getItemAssistant().playerHasItem(currency) && isStackable && amount < inventoryAmount && player.getItemAssistant().freeSlots() <= 0) { player.getPacketSender().sendMessage("You don't have enough space in your inventory."); @@ -426,7 +427,7 @@ public class ShopAssistant { // Add currency to players inventory int totalValue = value * amount; player.getItemAssistant().addItem(currency, totalValue); - player.getPacketSender().sendMessage("You sold " + amount + " " + itemName + " for " + totalValue + " " + ItemAssistant.getItemName(currency).toLowerCase() + "."); + player.getPacketSender().sendMessage("You sold " + amount + " " + itemName + " for " + totalValue + " " + DeprecatedItems.getItemName(currency).toLowerCase() + "."); } // Add item to the shop @@ -444,8 +445,8 @@ public class ShopAssistant { if (amount <= 0) { return false; } - if (ItemData.itemIsNote[itemID]) { - itemID = player.getItemAssistant().getUnnotedItem(itemID); + if (ItemDefinition.lookup(itemID).isNote()) { + itemID = ItemDefinition.noteToItem(itemID); } for (int i = 0; i < ShopHandler.shopItems[player.shopId].length; i++) { if (ShopHandler.shopItems[player.shopId][i] - 1 == itemID) { @@ -467,8 +468,8 @@ public class ShopAssistant { } private static int getUnNoted(int itemID){ - String itemName = ItemAssistant.getItemName(itemID).toLowerCase(); - String ItemNameUnNotedItem = ItemAssistant.getItemName(itemID - 1).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemID).toLowerCase(); + String ItemNameUnNotedItem = DeprecatedItems.getItemName(itemID - 1).toLowerCase(); if (itemName.equalsIgnoreCase(ItemNameUnNotedItem)) { itemID--; //Replace the noted item by it's un-noted version. } @@ -476,8 +477,8 @@ public class ShopAssistant { } private static int getNoted(int itemID){ - String itemName = ItemAssistant.getItemName(itemID).toLowerCase(); - String ItemNameUnNotedItem = ItemAssistant.getItemName(itemID + 1).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemID).toLowerCase(); + String ItemNameUnNotedItem = DeprecatedItems.getItemName(itemID + 1).toLowerCase(); if (itemName.equalsIgnoreCase(ItemNameUnNotedItem)) { itemID++; //Replace the item by it's noted version. } @@ -491,7 +492,7 @@ public class ShopAssistant { int notedItemID = getNoted(itemID); boolean isPlayerShop = ShopHandler.shopBModifier[player.shopId] == 0; // Items are stackable if from a player owned shop and notable - boolean isStackable = ItemDefinition.getDefs()[itemID].isStackable || (isPlayerShop && getNoted(itemID) != itemID); + boolean isStackable = ItemDefinition.lookup(itemID).isStackable() || (isPlayerShop && getNoted(itemID) != itemID); int freeSlots = player.getItemAssistant().freeSlots(); int storeQty = ShopHandler.getStock(shopID, itemID); if (amount > 0) { @@ -550,7 +551,7 @@ public class ShopAssistant { currency = 995; //gp } int currencySlot = player.getItemAssistant().getItemSlot(currency); - String currencyName = ItemAssistant.getItemName(currency).toLowerCase(); + String currencyName = DeprecatedItems.getItemName(currency).toLowerCase(); // player has none of the required currency if (currencySlot == -1) { @@ -572,7 +573,7 @@ public class ShopAssistant { } } - String itemName = ItemAssistant.getItemName(itemID).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemID).toLowerCase(); if (!shopIsOwnedByThisPlayer) { player.getItemAssistant().deleteItem(currency, totalValue); player.getPacketSender().sendMessage("You bought " + amount + " " + itemName + " for " + totalValue + " " + currencyName + "." ); diff --git a/2006Scape Server/src/main/java/com/rs2/gui/PanelSettings.java b/2006Scape Server/src/main/java/com/rs2/gui/PanelSettings.java index e3aa44d8..cba80575 100644 --- a/2006Scape Server/src/main/java/com/rs2/gui/PanelSettings.java +++ b/2006Scape Server/src/main/java/com/rs2/gui/PanelSettings.java @@ -3,6 +3,7 @@ package com.rs2.gui; import com.rs2.Connection; import com.rs2.GameConstants; import com.rs2.GameEngine; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.npcs.Npc; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Client; @@ -407,7 +408,7 @@ public class PanelSettings { int amount = getInt(cmd, "Enter the amount"); if (item <= 160000 && item > 0) { c.getItemAssistant().addItem(item, amount); - p.displayMessage("You give " + c.playerName + " " + amount + " " + c.getItemAssistant().getItemName(item) + "s!", cmd, 1); + p.displayMessage("You give " + c.playerName + " " + amount + " " + DeprecatedItems.getItemName(item) + "s!", cmd, 1); } return; } 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 8dd51f28..f8b2e380 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/PacketSender.java +++ b/2006Scape Server/src/main/java/com/rs2/net/PacketSender.java @@ -8,8 +8,8 @@ import com.rs2.game.content.combat.magic.MagicTeleports; import com.rs2.game.content.quests.QuestAssistant; import com.rs2.game.content.skills.SkillHandler; import com.rs2.game.content.skills.runecrafting.Tiaras; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.Item; -import com.rs2.game.items.ItemAssistant; import com.rs2.game.items.ItemConstants; import com.rs2.game.items.Weight; import com.rs2.game.items.impl.LightSources; @@ -129,7 +129,7 @@ public class PacketSender { }*/ } player.getPlayerAssistant().firstTimeTutorial(); - player.getItemAssistant().sendWeapon(player.playerEquipment[player.playerWeapon], ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon])); + player.getItemAssistant().sendWeapon(player.playerEquipment[player.playerWeapon], DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon])); for (int i = 0; i < 25; i++) { player.getPacketSender().setSkillLevel(i, player.playerLevel[i], player.playerXP[i]); player.getPlayerAssistant().refreshSkill(i); diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/AttackPlayer.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/AttackPlayer.java index 4435d28c..d5ff583b 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/AttackPlayer.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/AttackPlayer.java @@ -5,7 +5,7 @@ import com.rs2.game.content.combat.CombatConstants; import com.rs2.game.content.combat.magic.CastOnOther; import com.rs2.game.content.combat.magic.MagicData; import com.rs2.game.content.combat.range.RangeData; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; import com.rs2.net.Packet; @@ -121,7 +121,7 @@ public class AttackPlayer implements PacketType { && usingBow && !RangeData.usingCrystalBow(player) && player.playerEquipment[player.playerWeapon] != 9185) { - player.getPacketSender().sendMessage("You can't use " + ItemAssistant.getItemName(player.playerEquipment[player.playerArrows]).toLowerCase() + "s with a " + ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase() + "."); + player.getPacketSender().sendMessage("You can't use " + DeprecatedItems.getItemName(player.playerEquipment[player.playerArrows]).toLowerCase() + "s with a " + DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon]).toLowerCase() + "."); player.stopMovement(); player.getCombatAssistant().resetPlayerAttack(); return; diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/BankAll.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/BankAll.java index 2a6ecc1e..7755c4f0 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/BankAll.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/BankAll.java @@ -1,5 +1,7 @@ package com.rs2.net.packets.impl; +import org.apollo.cache.def.ItemDefinition; + import com.rs2.game.content.random.PartyRoom; import com.rs2.game.items.GameItem; import com.rs2.game.items.ItemData; @@ -67,7 +69,7 @@ public class BankAll implements PacketType { player.getPacketSender().sendMessage("You can't store items while trading!"); return; } - if (ItemData.itemStackable[removeId]) { + if (ItemDefinition.lookup(removeId).isStackable()) { player.getItemAssistant().bankItem(player.playerItems[removeSlot], removeSlot, player.playerItemsN[removeSlot]); } else { player.getItemAssistant().bankItem(player.playerItems[removeSlot], removeSlot, player.getItemAssistant().itemAmount(player.playerItems[removeSlot])); @@ -98,14 +100,14 @@ public class BankAll implements PacketType { case 3322: if (player.duelStatus <= 0) { - if (ItemData.itemStackable[removeId]) { + if (ItemDefinition.lookup(removeId).isStackable()) { player.getTrading().tradeItem(removeId, removeSlot, player.playerItemsN[removeSlot]); } else { player.getTrading().tradeItem(removeId, removeSlot, 28); } } else { - if (ItemData.itemStackable[removeId] || ItemData.itemIsNote[removeId]) { + if (ItemDefinition.lookup(removeId).isStackable() || ItemDefinition.lookup(removeId).isNote()) { player.getDueling().stakeItem(removeId, removeSlot, player.playerItemsN[removeSlot]); } else { @@ -116,7 +118,7 @@ public class BankAll implements PacketType { case 3415: if (player.duelStatus <= 0) { - if (ItemData.itemStackable[removeId]) { + if (ItemDefinition.lookup(removeId).isStackable()) { for (GameItem item : player.getTrading().offeredItems) { if (item.id == removeId) { player.getTrading() @@ -138,7 +140,7 @@ public class BankAll implements PacketType { break; case 6669: - if (ItemData.itemStackable[removeId] || ItemData.itemIsNote[removeId]) { + if (ItemDefinition.lookup(removeId).isStackable() || ItemDefinition.lookup(removeId).isNote()) { for (GameItem item : player.getDueling().stakedItems) { if (item.id == removeId) { player.getDueling() diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickItem.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickItem.java index 8f1f8114..08685ca3 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickItem.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickItem.java @@ -12,7 +12,7 @@ import com.rs2.game.content.minigames.castlewars.CastleWars; import com.rs2.game.content.skills.herblore.Herblore; import com.rs2.game.content.skills.prayer.Prayer; import com.rs2.game.content.skills.woodcutting.BirdNest; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.impl.ExperienceLamp; import com.rs2.game.items.impl.Flowers; import com.rs2.game.items.impl.GodBooks; @@ -44,7 +44,7 @@ public class ClickItem implements PacketType { if (itemId == 6) { player.getCannon().placeCannon(); } - String itemName = ItemAssistant.getItemName(itemId).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemId).toLowerCase(); if (player.getPlayerAssistant().isPlayer()) { GameLogger.writeLog(player.playerName, "clickitem", player.playerName + " clicked item " + itemName + ""); } diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickNPC.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickNPC.java index 0a6942f4..c8a0aebc 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickNPC.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickNPC.java @@ -9,7 +9,7 @@ import com.rs2.event.impl.NpcThirdClickEvent; import com.rs2.game.content.combat.CombatConstants; import com.rs2.game.content.combat.magic.MagicData; import com.rs2.game.content.combat.range.RangeData; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.npcs.NpcHandler; import com.rs2.game.players.Player; import com.rs2.net.Packet; @@ -132,11 +132,11 @@ public class ClickNPC implements PacketType { && player.playerEquipment[player.playerWeapon] != 9185) { player.getPacketSender().sendMessage( "You can't use " - + ItemAssistant.getItemName( + + DeprecatedItems.getItemName( player.playerEquipment[player.playerArrows]) .toLowerCase() + "s with a " - + ItemAssistant.getItemName( + + DeprecatedItems.getItemName( player.playerEquipment[player.playerWeapon]) .toLowerCase() + "."); player.stopMovement(); diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickTab.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickTab.java index 5f81e597..a1edf6b8 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickTab.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickTab.java @@ -1,6 +1,6 @@ package com.rs2.net.packets.impl; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.players.Player; import com.rs2.net.Packet; import com.rs2.net.packets.PacketType; @@ -101,7 +101,7 @@ public class ClickTab implements PacketType { player.getItemAssistant() .sendWeapon( player.playerEquipment[player.playerWeapon], - ItemAssistant + DeprecatedItems .getItemName(player.playerEquipment[player.playerWeapon])); player.getPacketSender().createArrow(3111, 9518, player.getH(), 2); } else if (player.tutorialProgress == 29) { // Prayer diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingButtons.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingButtons.java index f55de7ec..f73e8506 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingButtons.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/ClickingButtons.java @@ -25,8 +25,8 @@ import com.rs2.game.content.skills.smithing.SilverCrafting; import com.rs2.game.content.skills.smithing.Smelting; import com.rs2.game.content.traveling.GnomeGlider; import com.rs2.game.dialogues.DialogueOptions; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.GameItem; -import com.rs2.game.items.ItemAssistant; import com.rs2.game.items.impl.EnchantStaff; import com.rs2.game.items.impl.ExperienceLamp; import com.rs2.game.items.impl.LightSources; @@ -1533,7 +1533,7 @@ public class ClickingButtons implements PacketType { case 24017: player.getPlayerAssistant().resetAutocast(); - player.getItemAssistant().sendWeapon(player.playerEquipment[player.playerWeapon], ItemAssistant.getItemName(player.playerEquipment[player.playerWeapon])); + player.getItemAssistant().sendWeapon(player.playerEquipment[player.playerWeapon], DeprecatedItems.getItemName(player.playerEquipment[player.playerWeapon])); break; } diff --git a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/PickupItem.java b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/PickupItem.java index 29024fe8..6b04231e 100644 --- a/2006Scape Server/src/main/java/com/rs2/net/packets/impl/PickupItem.java +++ b/2006Scape Server/src/main/java/com/rs2/net/packets/impl/PickupItem.java @@ -8,7 +8,7 @@ import com.rs2.game.content.minigames.castlewars.CastleWars; import com.rs2.game.content.music.sound.SoundList; import com.rs2.game.content.skills.SkillHandler; import com.rs2.game.content.skills.firemaking.LogData; -import com.rs2.game.items.ItemAssistant; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.impl.RareProtection; import com.rs2.game.players.Player; import com.rs2.net.Packet; @@ -52,7 +52,7 @@ public class PickupItem implements PacketType { if (player.stopPlayerPacket) { return; } - String itemName = ItemAssistant.getItemName(player.pItemId).toLowerCase(); + String itemName = DeprecatedItems.getItemName(player.pItemId).toLowerCase(); if (player.getPlayerAssistant().isPlayer()) { GameLogger.writeLog(player.playerName, "pickupitem", player.playerName + " picked up " + itemName + " itemX: " + player.pItemX + ", itemY: " + player.pItemY + ""); } diff --git a/2006Scape Server/src/main/java/com/rs2/util/ItemData.java b/2006Scape Server/src/main/java/com/rs2/util/ItemData.java deleted file mode 100644 index 91cd7a34..00000000 --- a/2006Scape Server/src/main/java/com/rs2/util/ItemData.java +++ /dev/null @@ -1,137 +0,0 @@ -package com.rs2.util; - -public class ItemData { - private final int id; - private final String name; - private final String examine; - private final Values[] values; - private final Bonuses[] bonuses; - - public ItemData(int id, String name, String examine, Values[] values, Bonuses[] bonuses) { - this.id = id; - this.name = name; - this.examine = examine; - this.values = values; - this.bonuses = bonuses; - } - - public int getId() { - return id; - } - - public String getName() { - return name; - } - - public String getExamine() { - return examine; - } - - public Values getValues() { - return values[0]; - } - - public Bonuses getBonuses() { - return bonuses[0]; - } - - public static class Values { - int shopValue; - int lowAlch; - int highAlch; - - public int getShopValue() { - return shopValue; - } - - public int getLowAlch() { - return lowAlch; - } - - public int getHighAlch() { - return highAlch; - } - } - - public static class Bonuses { - int attackStab; - int attackSlash; - int attackCrush; - int attackMagic; - int attackRange; - int defenceStab; - int defenceSlash; - int defenceCrush; - int defenceMagic; - int defenceRange; - int strengthBonus; - int prayerBonus; - - public int getAttackStab() { - return attackStab; - } - - public int getAttackSlash() { - return attackSlash; - } - - public int getAttackCrush() { - return attackCrush; - } - - public int getAttackMagic() { - return attackMagic; - } - - public int getAttackRange() { - return attackRange; - } - - public int getDefenceStab() { - return defenceStab; - } - - public int getDefenceSlash() { - return defenceSlash; - } - - public int getDefenceCrush() { - return defenceCrush; - } - - public int getDefenceMagic() { - return defenceMagic; - } - - public int getDefenceRange() { - return defenceRange; - } - - public int getStrengthBonus() { - return strengthBonus; - } - - public int getPrayerBonus() { - return prayerBonus; - } - - public int[] getBonuses() { - int[] bonuses = new int[12]; - - bonuses[0] = this.getAttackStab(); - bonuses[1] = this.getAttackSlash(); - bonuses[2] = this.getAttackCrush(); - bonuses[3] = this.getAttackMagic(); - bonuses[4] = this.getAttackRange(); - bonuses[5] = this.getDefenceStab(); - bonuses[6] = this.getDefenceSlash(); - bonuses[7] = this.getDefenceCrush(); - bonuses[8] = this.getDefenceMagic(); - bonuses[9] = this.getDefenceRange(); - bonuses[10] = this.getStrengthBonus(); - bonuses[11] = this.getPrayerBonus(); - - return bonuses; - } - } -} 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 b0259b94..54f39162 100644 --- a/2006Scape Server/src/main/java/com/rs2/world/GlobalDropsHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/world/GlobalDropsHandler.java @@ -11,6 +11,8 @@ import com.rs2.game.players.PlayerHandler; import com.rs2.util.GlobalDropData; import com.rs2.util.Misc; import com.rs2.util.ShopData; + +import org.apollo.cache.def.ItemDefinition; import org.json.JSONArray; import org.json.JSONObject; @@ -172,7 +174,7 @@ public class GlobalDropsHandler { return; } if (player.getItemAssistant().freeSlots() < 1) { - if (!(player.getItemAssistant().playerHasItem(player.pItemId) && player.getItemAssistant().isStackable(player.pItemId))) { + if (!(player.getItemAssistant().playerHasItem(player.pItemId) && ItemDefinition.lookup(player.pItemId).isStackable())) { player.getPacketSender().sendMessage("Not enough space in your inventory."); return; } diff --git a/2006Scape Server/src/main/java/com/rs2/world/ItemHandler.java b/2006Scape Server/src/main/java/com/rs2/world/ItemHandler.java index c110fa1f..3f665fea 100644 --- a/2006Scape Server/src/main/java/com/rs2/world/ItemHandler.java +++ b/2006Scape Server/src/main/java/com/rs2/world/ItemHandler.java @@ -1,25 +1,14 @@ package com.rs2.world; -import com.google.gson.Gson; -import com.google.gson.reflect.TypeToken; -import com.rs2.GameConstants; +import com.rs2.game.items.DeprecatedItems; import com.rs2.game.items.GroundItem; -import com.rs2.game.items.ItemAssistant; -import com.rs2.game.items.ItemList; +import com.rs2.game.items.ItemDefinitions; import com.rs2.game.players.Client; import com.rs2.game.players.Player; import com.rs2.game.players.PlayerHandler; import com.rs2.util.GameLogger; -import com.rs2.util.ItemData; -import com.rs2.util.Misc; -import org.json.JSONArray; -import org.json.JSONObject; - -import java.io.*; -import java.lang.reflect.Type; import java.util.ArrayList; import java.util.List; -import java.util.Scanner; /** * Handles ground items @@ -31,11 +20,6 @@ public class ItemHandler { public static final int HIDE_TICKS = 100; public ItemHandler() { - for (int i = 0; i < GameConstants.ITEM_LIMIT; i++) { - itemList[i] = null; - } - //loadItemList("item.cfg"); - loadItemListJson(); } /** @@ -189,11 +173,11 @@ public class ItemHandler { } } } - if (!com.rs2.game.items.ItemData.itemStackable[itemId] && itemAmount > 0) { + if (!org.apollo.cache.def.ItemDefinition.lookup(itemId).isStackable() && itemAmount > 0) { for (int j = 0; j < itemAmount; j++) { GroundItem item = new GroundItem(itemId, itemX, itemY, c.getH(), 1, c.playerId, HIDE_TICKS, PlayerHandler.players[playerId].playerName); addItem(item); - String itemName = ItemAssistant.getItemName(itemId).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemId).toLowerCase(); if (c.isDead == false && itemId != 526) { if (c.getPlayerAssistant().isPlayer()) { GameLogger.writeLog(c.playerName, "dropitem", c.playerName + " dropped " + itemAmount + " " + itemName + " absX: " + c.absX + " absY: " + c.absY + ""); @@ -203,7 +187,7 @@ public class ItemHandler { } else { GroundItem item = new GroundItem(itemId, itemX, itemY, c.getH(), itemAmount, c.playerId, HIDE_TICKS, PlayerHandler.players[playerId].playerName); addItem(item); - String itemName = ItemAssistant.getItemName(itemId).toLowerCase(); + String itemName = DeprecatedItems.getItemName(itemId).toLowerCase(); if (c.isDead == false && itemId != 526) { if (c.getPlayerAssistant().isPlayer()) { GameLogger.writeLog(c.playerName, "dropitem", c.playerName + " dropped " + itemAmount + " " + itemName + " absX: " + c.absX + " absY: " + c.absY + ""); @@ -318,182 +302,4 @@ public class ItemHandler { } removeItem(i); } - - /** - * Item List - **/ - - public ItemList itemList[] = new ItemList[GameConstants.ITEM_LIMIT]; - - public void newItemList(int ItemId, String ItemName, String ItemDescription, double ShopValue, double LowAlch, double HighAlch, int Bonuses[]) { - // first, search for a free slot - int slot = -1; - for (int i = 0; i < 11740; i++) { - if (itemList[i] == null) { - slot = i; - break; - } - } - - if (slot == -1) { - return; // no free slot found - } - ItemList newItemList = new ItemList(ItemId); - newItemList.itemName = ItemName; - newItemList.itemDescription = ItemDescription; - newItemList.ShopValue = ShopValue; - newItemList.LowAlch = LowAlch; - newItemList.HighAlch = HighAlch; - newItemList.Bonuses = Bonuses; - itemList[slot] = newItemList; - } - - public void loadItemPrices(String filename) { - try { - @SuppressWarnings("resource") - Scanner s = new Scanner(new File("./data/cfg/" + filename)); - while (s.hasNextLine()) { - String[] line = s.nextLine().split(" "); - ItemList temp = getItemList(Integer.parseInt(line[0])); - if (temp != null) { - temp.ShopValue = Integer.parseInt(line[1]); - } - } - } catch (IOException e) { - e.printStackTrace(); - } - } - - public ItemList getItemList(int i) { - for (com.rs2.game.items.ItemList element : itemList) { - if (element != null) { - if (element.itemId == i) { - return element; - } - } - } - return null; - } - - public void loadItemListJson() { - Gson gson = new Gson(); - - try { - Type collectionType = new TypeToken() { - }.getType(); - ItemData[] data = gson.fromJson(new FileReader("./data/cfg/items.json"), collectionType); - - for (ItemData item : data) { - newItemList(item.getId(), - item.getName(), - item.getExamine(), - item.getValues().getShopValue(), - item.getValues().getLowAlch(), - item.getValues().getHighAlch(), - item.getBonuses().getBonuses()); - } - } catch (FileNotFoundException fileex) { - Misc.println("items.json: file not found."); - } - } - - public boolean readCfgWriteJson(String FileName) { - String line = ""; - String token = ""; - String token2 = ""; - String token2_2 = ""; - String[] token3 = new String[10]; - boolean EndOfFile = false; - BufferedReader characterfile = null; - JSONArray array = new JSONArray(); - try { - characterfile = new BufferedReader(new FileReader("./data/cfg/" - + FileName)); - } catch (FileNotFoundException fileex) { - Misc.println(FileName + ": file not found."); - return false; - } - try { - line = characterfile.readLine(); - } catch (IOException ioexception) { - Misc.println(FileName + ": error loading file."); - // return false; - } - while (EndOfFile == false && line != null) { - line = line.trim(); - int spot = line.indexOf("="); - if (spot > -1) { - token = line.substring(0, spot); - token = token.trim(); - token2 = line.substring(spot + 1); - token2 = token2.trim(); - token2_2 = token2.replaceAll("\t+", "\t"); - token3 = token2_2.split("\t"); - - if (token.equals("item")) { - int[] Bonuses = new int[12]; - for (int i = 0; i < 12; i++) { - if (token3[6 + i] != null) { - Bonuses[i] = Integer.parseInt(token3[6 + i]); - } else { - break; - } - } - JSONObject object = new JSONObject(); - - object.put("id", token3[0]); - object.put("name", token3[1].replaceAll("_", " ")); - object.put("examine", token3[2].replaceAll("_", " ")); - - JSONArray array1 = new JSONArray(); - JSONObject object1 = new JSONObject(); - object1.put("shopValue", token3[4]); - object1.put("lowAlch", token3[5]); - object1.put("highAlch", token3[6]); - array1.put(0, object1); - object.put("values", array1); - - JSONArray array2 = new JSONArray(); - JSONObject object2 = new JSONObject(); - object2.put("attackStab", Bonuses[0]); - object2.put("attackSlash", Bonuses[1]); - object2.put("attackCrush", Bonuses[2]); - object2.put("attackMagic", Bonuses[3]); - object2.put("attackRange", Bonuses[4]); - object2.put("defenceStab", Bonuses[5]); - object2.put("defenceSlash", Bonuses[6]); - object2.put("defenceCrush", Bonuses[7]); - object2.put("defenceMagic", Bonuses[8]); - object2.put("defenceRange", Bonuses[9]); - object2.put("strengthBonus", Bonuses[10]); - object2.put("prayerBonus", Bonuses[11]); - array2.put(0, object2); - object.put("bonuses", array2); - - array.put(object); - } - } else { - if (line.equals("[ENDOFITEMLIST]")) { - try { - FileWriter fileWriter = new FileWriter("item-dump.json"); - fileWriter.write(array.toString()); - fileWriter.close(); - characterfile.close(); - } catch (IOException e) { - } - //return true; - } - } - try { - line = characterfile.readLine(); - } catch (IOException ioexception1) { - EndOfFile = true; - } - } - try { - characterfile.close(); - } catch (IOException ioexception) { - } - return false; - } } diff --git a/2006Scape Server/src/main/java/com/rs2/world/clip/ObjectDefinition.java b/2006Scape Server/src/main/java/com/rs2/world/clip/ObjectDefinition.java deleted file mode 100644 index 5393c76b..00000000 --- a/2006Scape Server/src/main/java/com/rs2/world/clip/ObjectDefinition.java +++ /dev/null @@ -1,226 +0,0 @@ -package com.rs2.world.clip; - -import java.io.IOException; -import java.nio.ByteBuffer; - -import org.apollo.cache.IndexedFileSystem; -import org.apollo.cache.archive.Archive; - -public final class ObjectDefinition { - - private static ObjectDefinition[] definitions; - - public static ObjectDefinition getObjectDef(int i) { - return definitions[i]; - } - - public static void loadConfig(IndexedFileSystem fs) throws IOException { - Archive config = Archive.decode(fs.getFile(0, 2)); - ByteBuffer data = config.getEntry("loc.dat").getBuffer(); - ByteBuffer idx = config.getEntry("loc.idx").getBuffer(); - int count = idx.getShort(), index = 2; - int[] indices = new int[count]; - for (int i = 0; i < count; i++) { - indices[i] = index; - index += idx.getShort(); - } - definitions = new ObjectDefinition[count]; - for (int i = 0; i < count; i++) { - data.position(indices[i]); - definitions[i] = readValues(i, data); - } - System.out.println("[ObjectDef] DONE LOADING OBJECT CONFIGURATION"); - } - - private static ObjectDefinition readValues(int id, ByteBuffer data) { - ObjectDefinition def = new ObjectDefinition(); - def.type = id; - int[] modelId = null; - int[] modelType = null; - - int flag = -1; - boolean actions = false; - do { - int type = data.get() & 0xFF; - if (type == 0) { - break; - } - if (type == 1) { - int len = data.get() & 0xFF; - if (len > 0) { - if (modelId == null) { - modelType = new int[len]; - modelId = new int[len]; - for (int k1 = 0; k1 < len; k1++) { - modelId[k1] = data.getShort() & 0xFFFF; - modelType[k1] = data.get() & 0xFF; - } - } else { - for (int i = 0; i < len; i++) { - data.getShort(); - data.get(); - } - } - } - } else if (type == 2) { - def.name = readString(data); - } else if (type == 3) { - readString(data); - } else if (type == 5) { - int len = data.get() & 0xFF; - if (len > 0) { - if (modelId == null) { - modelType = null; - modelId = new int[len]; - for (int l1 = 0; l1 < len; l1++) { - modelId[l1] = data.getShort() & 0xFFFF; - } - } else { - for (int i = 0; i < len; i++) { - data.getShort(); - } - } - } - } else if (type == 14) { - def.width = data.get() & 0xFF; - } else if (type == 15) { - def.length = data.get() & 0xFF; - } else if (type == 17) { - def.solid = false; - } else if (type == 18) { - def.impenetrable = false; - } else if (type == 19) { - flag = data.get() & 0xFF; - def.hasActions = flag == 1; - } else if (type == 21) { - // aBoolean762 = true; - } else if (type == 22) { - } else if (type == 23) { - // aBoolean764 = true; - } else if (type == 24) { - data.getShort(); - } else if (type == 27) { - continue; - } else if (type == 28) { - data.get(); - } else if (type == 29) { - data.get(); - } else if (type == 39) { - data.get(); - } else if (type >= 30 && type < 39) { - actions = true; - readString(data); - def.hasActions = true; - } else if (type == 40) { - int amount = data.get() & 0xFF; - for (int i = 0; i < amount; i++) { - data.getShort(); - data.getShort(); - } - } else if (type == 60) { - data.getShort(); - } else if (type == 62) { - } else if (type == 64) { - def.clipped = false; - } else if (type == 65) { - data.getShort(); - } else if (type == 66) { - data.getShort(); - } else if (type == 67) { - data.getShort(); - } else if (type == 68) { - data.getShort(); - } else if (type == 69) { - data.get(); - } else if (type == 70) { - data.getShort(); - } else if (type == 71) { - data.getShort(); - } else if (type == 72) { - data.getShort(); - } else if (type == 73) { - // #TODO obstructive = true; - } else if (type == 74) { - } else if (type == 75) { - data.get(); - } else if (type == 77) { - data.getShort(); - data.getShort(); - int count = data.get() & 0xFF; - for (int i = 0; i <= count; i++) { - data.getShort(); - } - } else { - System.out.println("Unknown config: " + type); - System.exit(0); - } - } while (true); - if (flag == -1) { - def.hasActions = modelId != null && (modelType == null || modelType[0] == 10); - if (actions) { - def.hasActions = true; - } - } - return def; - } - - /** - * Reads a string from the specified {@link ByteBuffer}. - * - * @param buffer The buffer. - * @return The string. - */ - public static String readString(ByteBuffer buffer) { - StringBuilder bldr = new StringBuilder(); - char character; - while ((character = (char) buffer.get()) != 10) { - bldr.append(character); - } - return bldr.toString(); - } - - private ObjectDefinition() { - type = -1; - } - - /* - * TODO is this needed? Only called by type 22 objects (ground decorations/map signs). - */ - public boolean hasActions() { - return hasActions; - } - - public boolean hasName() { - return name != null && name.length() > 1; - } - - public boolean solid() { - return clipped; - } - - public int xLength() { - return width; - } - - public int yLength() { - return length; - } - - public boolean aBoolean767() { - return solid; - } - - public boolean isUnshootable() { - return impenetrable; - } - - public String name = null; - private int width = 1; - @SuppressWarnings("unused") - private int type; - private boolean impenetrable = true; - private int length = 1; - private boolean solid = true; - private boolean hasActions = false; - private boolean clipped = true; -} diff --git a/2006Scape Server/src/main/java/com/rs2/world/clip/Region.java b/2006Scape Server/src/main/java/com/rs2/world/clip/Region.java index 9bfe7e41..4c1d7662 100644 --- a/2006Scape Server/src/main/java/com/rs2/world/clip/Region.java +++ b/2006Scape Server/src/main/java/com/rs2/world/clip/Region.java @@ -2,6 +2,8 @@ package com.rs2.world.clip; import java.util.ArrayList; +import org.apollo.cache.def.ObjectDefinition; + import com.rs2.game.objects.Objects; public class Region { @@ -601,40 +603,40 @@ public class Region { * @param startUp */ public static void addObject(int objectId, int x, int y, int height, int type, int direction, boolean startUp) { - if (ObjectDefinition.getObjectDef(objectId) == null) { + if (ObjectDefinition.lookup(objectId) == null) { } int xLength; int yLength; if (direction != 1 && direction != 3) { - xLength = ObjectDefinition.getObjectDef(objectId).xLength(); - yLength = ObjectDefinition.getObjectDef(objectId).yLength(); + xLength = ObjectDefinition.lookup(objectId).getWidth(); + yLength = ObjectDefinition.lookup(objectId).getLength(); } else { - xLength = ObjectDefinition.getObjectDef(objectId).yLength(); - yLength = ObjectDefinition.getObjectDef(objectId).xLength(); + xLength = ObjectDefinition.lookup(objectId).getLength(); + yLength = ObjectDefinition.lookup(objectId).getWidth(); } if (type == 22) { - if (ObjectDefinition.getObjectDef(objectId).hasActions() - && ObjectDefinition.getObjectDef(objectId).aBoolean767()) { + if (ObjectDefinition.lookup(objectId).isInteractive() + && ObjectDefinition.lookup(objectId).isSolid()) { addClipping(x, y, height, 0x200000); - if (ObjectDefinition.getObjectDef(objectId).isUnshootable()) { + if (ObjectDefinition.lookup(objectId).isImpenetrable()) { addProjectileClipping(x, y, height, 0x200000); } } } else if (type >= 9) { - if (ObjectDefinition.getObjectDef(objectId).aBoolean767()) { + if (ObjectDefinition.lookup(objectId).isSolid()) { addClippingForSolidObject(x, y, height, xLength, yLength, - ObjectDefinition.getObjectDef(objectId).solid()); - if (ObjectDefinition.getObjectDef(objectId).isUnshootable()) { + ObjectDefinition.lookup(objectId).isClipped()); + if (ObjectDefinition.lookup(objectId).isImpenetrable()) { addProjectileClippingForSolidObject(x, y, height, xLength, yLength, - ObjectDefinition.getObjectDef(objectId).solid()); + ObjectDefinition.lookup(objectId).isClipped()); } } } else if (type >= 0 && type <= 3) { - if (ObjectDefinition.getObjectDef(objectId).aBoolean767()) { + if (ObjectDefinition.lookup(objectId).isSolid()) { addClippingForVariableObject(x, y, height, type, direction, - ObjectDefinition.getObjectDef(objectId).solid()); - if (ObjectDefinition.getObjectDef(objectId).isUnshootable()) { - addProjectileClippingForVariableObject(x, y, height, type, direction, ObjectDefinition.getObjectDef(objectId).solid()); + ObjectDefinition.lookup(objectId).isClipped()); + if (ObjectDefinition.lookup(objectId).isImpenetrable()) { + addProjectileClippingForVariableObject(x, y, height, type, direction, ObjectDefinition.lookup(objectId).isClipped()); } } } diff --git a/2006Scape Server/src/main/java/com/rs2/world/clip/RegionFactory.java b/2006Scape Server/src/main/java/com/rs2/world/clip/RegionFactory.java index aaf43bcc..13cba8d9 100644 --- a/2006Scape Server/src/main/java/com/rs2/world/clip/RegionFactory.java +++ b/2006Scape Server/src/main/java/com/rs2/world/clip/RegionFactory.java @@ -1,12 +1,11 @@ package com.rs2.world.clip; +import java.io.IOException; import java.nio.ByteBuffer; -import java.nio.file.Paths; import org.apollo.cache.IndexedFileSystem; import org.apollo.cache.archive.Archive; import org.apollo.cache.archive.ArchiveEntry; -import org.apollo.jagcached.Constants; import org.apollo.util.CompressionUtil; public class RegionFactory { @@ -17,60 +16,53 @@ public class RegionFactory { return regions; } - public static void load() { + public static void load(IndexedFileSystem fs) throws IOException { //GameEngine.getLogger(Region.class).info("Loading region configurations..."); - try { - IndexedFileSystem fs = new IndexedFileSystem(Paths.get(Constants.FILE_SYSTEM_DIR), true); - ObjectDefinition.loadConfig(fs); + Archive archive = Archive.decode(fs.getFile(0, 5)); + ArchiveEntry entry = archive.getEntry("map_index"); + ByteBuffer buffer = entry.getBuffer(); - Archive archive = Archive.decode(fs.getFile(0, 5)); - ArchiveEntry entry = archive.getEntry("map_index"); - ByteBuffer buffer = entry.getBuffer(); - - int size = buffer.capacity() / 7; - regions = new Region[size]; - int[] regionIds = new int[size]; - int[] mapGroundFileIds = new int[size]; - int[] mapObjectsFileIds = new int[size]; - boolean[] isMembers = new boolean[size]; - /** - * Seems to be that regions consist of - * regionIds (16 bits) - * groundFileIds (16 bits) - * objectsFileIds (16 bits) - * isMembers (8 bits) - */ - for (int i = 0; i < size; i++) { - regionIds[i] = buffer.getShort() & 0xFFFF; - mapGroundFileIds[i] = buffer.getShort() & 0xFFFF; - mapObjectsFileIds[i] = buffer.getShort() & 0xFFFF; - isMembers[i] = buffer.get() == 0; - } - for (int i = 0; i < size; i++) { - regions[i] = new Region(regionIds[i], isMembers[i]); - } - //GameEngine.getLogger(Region.class).info(size + " Regions created."); - //GameEngine.getLogger(Region.class).info("Populating regions..."); - for (int i = 0; i < size; i++) { - //GameEngine.getLogger(Region.class).info("Region: " + i + " RegionId: " + regionIds[i] + " ObjectsId: " + mapObjectsFileIds[i] - // + " ClippingsId: " + mapGroundFileIds[i]); - byte[] file1 = CompressionUtil.degzip(fs.getFile(4, mapObjectsFileIds[i])); - byte[] file2 = CompressionUtil.degzip(fs.getFile(4, mapGroundFileIds[i])); - if (file1 == null || file2 == null) { - continue; - } - try { - loadMaps(regionIds[i], new ByteStream(file1), - new ByteStream(file2)); - } catch (Exception e) { - System.out.println("Error loading map region: " - + regionIds[i]); - } - } - //GameEngine.getLogger(Region.class).info("Region configuration done."); - } catch (Exception e) { - e.printStackTrace(); + int size = buffer.capacity() / 7; + regions = new Region[size]; + int[] regionIds = new int[size]; + int[] mapGroundFileIds = new int[size]; + int[] mapObjectsFileIds = new int[size]; + boolean[] isMembers = new boolean[size]; + /** + * Seems to be that regions consist of + * regionIds (16 bits) + * groundFileIds (16 bits) + * objectsFileIds (16 bits) + * isMembers (8 bits) + */ + for (int i = 0; i < size; i++) { + regionIds[i] = buffer.getShort() & 0xFFFF; + mapGroundFileIds[i] = buffer.getShort() & 0xFFFF; + mapObjectsFileIds[i] = buffer.getShort() & 0xFFFF; + isMembers[i] = buffer.get() == 0; } + for (int i = 0; i < size; i++) { + regions[i] = new Region(regionIds[i], isMembers[i]); + } + //GameEngine.getLogger(Region.class).info(size + " Regions created."); + //GameEngine.getLogger(Region.class).info("Populating regions..."); + for (int i = 0; i < size; i++) { + //GameEngine.getLogger(Region.class).info("Region: " + i + " RegionId: " + regionIds[i] + " ObjectsId: " + mapObjectsFileIds[i] + // + " ClippingsId: " + mapGroundFileIds[i]); + byte[] file1 = CompressionUtil.degzip(fs.getFile(4, mapObjectsFileIds[i])); + byte[] file2 = CompressionUtil.degzip(fs.getFile(4, mapGroundFileIds[i])); + if (file1 == null || file2 == null) { + continue; + } + try { + loadMaps(regionIds[i], new ByteStream(file1), + new ByteStream(file2)); + } catch (Exception e) { + System.out.println("Error loading map region: " + + regionIds[i]); + } + } + //GameEngine.getLogger(Region.class).info("Region configuration done."); } /** diff --git a/2006Scape Server/src/main/java/org/apollo/cache/decoder/ObjectDefinitionDecoder.java b/2006Scape Server/src/main/java/org/apollo/cache/decoder/ObjectDefinitionDecoder.java index 3ffc797a..341948c8 100644 --- a/2006Scape Server/src/main/java/org/apollo/cache/decoder/ObjectDefinitionDecoder.java +++ b/2006Scape Server/src/main/java/org/apollo/cache/decoder/ObjectDefinitionDecoder.java @@ -12,8 +12,9 @@ import org.apollo.util.BufferUtil; /** * Decodes object data from the {@code loc.dat} file into {@link ObjectDefinition}s. - * + * * @author Major + * @author Advocatus */ public final class ObjectDefinitionDecoder implements Runnable { @@ -65,17 +66,35 @@ public final class ObjectDefinitionDecoder implements Runnable { * @return The object definition. */ private ObjectDefinition decode(int id, ByteBuffer data) { + boolean actions = false; + int[] modelId = null; + int[] modelType = null; ObjectDefinition definition = new ObjectDefinition(id); while (true) { int opcode = data.get() & 0xFF; if (opcode == 0) { + definition.setInteractive(modelId != null && (modelType == null || modelType[0] == 10)); + if (actions) { + definition.setInteractive(true); + } return definition; } else if (opcode == 1) { int amount = data.get() & 0xFF; - for (int i = 0; i < amount; i++) { - data.getShort(); - data.get(); + if (amount > 0) { + if (modelId == null) { + modelType = new int[amount]; + modelId = new int[amount]; + for (int i = 0; i < amount; i++) { + modelId[i] = data.getShort() & 0xFFFF; + modelType[i] = data.get() & 0xFF; + } + } else { + for (int i = 0; i < amount; i++) { + data.getShort(); + data.get(); + } + } } } else if (opcode == 2) { definition.setName(BufferUtil.readString(data)); @@ -83,8 +102,18 @@ public final class ObjectDefinitionDecoder implements Runnable { definition.setDescription(BufferUtil.readString(data)); } else if (opcode == 5) { int amount = data.get() & 0xFF; - for (int i = 0; i < amount; i++) { - data.getShort(); + if (amount > 0) { + if (modelId == null) { + modelType = null; + modelId = new int[amount]; + for (int i = 0; i < amount; i++) { + modelId[i] = data.getShort() & 0xFFFF; + } + } else { + for (int i = 0; i < amount; i++) { + data.getShort(); + } + } } } else if (opcode == 14) { definition.setWidth(data.get() & 0xFF); @@ -101,13 +130,15 @@ public final class ObjectDefinitionDecoder implements Runnable { } else if (opcode == 28 || opcode == 29) { data.get(); } else if (opcode >= 30 && opcode < 39) { - String[] actions = definition.getMenuActions(); - if (actions == null) { - actions = new String[10]; + actions = true; + String[] strings = definition.getMenuActions(); + if (strings == null) { + strings = new String[10]; } String action = BufferUtil.readString(data); - actions[opcode - 30] = action; - definition.setMenuActions(actions); + strings[opcode - 30] = action; + definition.setMenuActions(strings); + definition.setInteractive(true); } else if (opcode == 39) { data.get(); } else if (opcode == 40) { @@ -116,6 +147,8 @@ public final class ObjectDefinitionDecoder implements Runnable { data.getShort(); data.getShort(); } + } else if (opcode == 64) { + definition.setClipped(false); } else if (opcode == 60 || opcode >= 65 && opcode <= 68) { data.getShort(); } else if (opcode == 69) { diff --git a/2006Scape Server/src/main/java/org/apollo/cache/def/ObjectDefinition.java b/2006Scape Server/src/main/java/org/apollo/cache/def/ObjectDefinition.java index 8f054307..8737f1ed 100644 --- a/2006Scape Server/src/main/java/org/apollo/cache/def/ObjectDefinition.java +++ b/2006Scape Server/src/main/java/org/apollo/cache/def/ObjectDefinition.java @@ -6,6 +6,7 @@ import com.google.common.base.Preconditions; * Represents a type of GameObject. * * @author Major + * @author Advocatus */ public final class ObjectDefinition { @@ -60,6 +61,11 @@ public final class ObjectDefinition { return definitions[id]; } + /** + * Represents whether or not this object is clipped. By default, they are. + */ + private boolean clipped = true; + /** * The object's description. */ @@ -173,6 +179,15 @@ public final class ObjectDefinition { return width; } + /** + * Indicates whether or not this object is clipped. + * + * @return {@code true} if this object is clipped. + */ + public boolean isClipped() { + return clipped; + } + /** * Indicates the impenetrability of this object. * @@ -209,6 +224,15 @@ public final class ObjectDefinition { return solid; } + /** + * Sets whether or not this this object is clipped. + * + * @param clipped Whether it is clipped. + */ + public void setClipped(boolean clipped) { + this.clipped = clipped; + } + /** * Sets the description of this object. *